link.py(python3.x)


-
link.py,里面有两个函数:getExternalLinks(url),负责抓取网站的外链;getInternalLinks(url),负责抓取网站的内链
29KB
HTMLTestRunner.py资源包
2018-04-19导入HTMLTestRunner到Python,生成测试报告的工具类 """ A TestRunner for use with the Python unit testing framework. It generates a HTML report to show the result at a glance. The simplest way to use this is to invoke its main method. E.g. import unittest import HTMLTestRunner ... define your tests ... if __name__ == 39;__main__39;: HTMLTestRunner.main() For more customization options, instantiates a HTMLTestRunner object. HTMLTestRunner is a counterpart to unittest39;s TextTestRunner. E.g. # output to a file fp = file(39;my_report.html39;, 39;wb39;) runner = HTMLTestRunner.HTMLTestRunner( stream=fp, title=39;My unit test39;, description=39;This demonstrates the report output by HTMLTestRunner.39; ) # Use an external stylesheet. # See the Template_mixin class for more customizable options runner.STYLESHEET_TMPL = 39;<link rel="stylesheet" href="my_stylesheet.css" type="text/css">39; # run the test runner.run(my_test_suite) ------------------------------------------------------------------------ Copyright (c) 2004-2007, Wai Yip Tung All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name Wai Yip Tung nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARR
78B
nltk_data_link.py
2019-09-18nltk_data百度云下载链接,可以下载后解压放到相应的文件夹即可使用。
6.40MB
Python程序设计(第二版).chm
2009-08-08Programming Python, 2nd Edition 目录如下,需要下载的朋友不要错过哦~ Programming Python, 2nd Edition By Mark Lutz Publisher : O39;Reilly Pub Date : March 2001 ISBN : 0-596-00085-5 Pages : 1256 Copyright Foreword Preface "And Now for Something Completely Different . . . Again" Signs of the Python Times Why This Edition? Major Changes in This Edition Using the Examples and Demos Conventions Used in This Book Where to Look for Updates Contacting O39;Reilly Acknowledgments Chapter 1. Introducing Python Section 1.1. "And Now for Something Completely Different" Section 1.2. The Life of Python Section 1.3. The Compulsory Features List Section 1.4. What39;s Python Good For? Section 1.5. What39;s Python Not Good For? Part I: System Interfaces Chapter 2. System Tools Section 2.1. "The os.path to Knowledge" Section 2.2. Why Python Here? Section 2.3. System Scripting Overview Section 2.4. The sys Module Section 2.5. The os Module Section 2.6. Script Execution Context Section 2.7. Current Working Directory Section 2.8. Command-Line Arguments Section 2.9. Shell Environment Variables Section 2.10. Standard Streams Section 2.11. File Tools Section 2.12. Directory Tools Chapter 3. Parallel System Tools Section 3.1. "Telling the Monkeys What to Do" Section 3.2. Forking Processes Section 3.3. Threads Section 3.4. Program Exits Section 3.5. Interprocess Communication Section 3.6. Pipes Section 3.7. Signals Section 3.8. Launching Programs on Windows Section 3.9. Other System Tools Chapter 4. Larger System Examples I Section 4.1. "Splits and Joins and Alien Invasions" Section 4.2. Splitting and Joining Files Section 4.3. Generating Forward-Link Web Pages Section 4.4. A Regression Test Script Section 4.5. Packing and Unpacking Files Section 4.6. User-Friendly Program Launchers Chapter 5. Larger System Examples II Section 5.1. "The Greps of Wrath" Section 5.2. Fixing DOS Line Ends Section 5.3. Fixing DOS Filenames Section 5.4. Searching Directory Trees Section 5.5. Visitor: Walking Trees Generically Section 5.6. Copying Directory Trees Section 5.7. Deleting Directory Trees Section 5.8. Comparing Directory Trees Part II: GUI Programming Chapter 6. Graphical User Interfaces Section 6.1. "Here39;s Looking at You, Kid" Section 6.2. Python GUI Development Options Section 6.3. Tkinter Overview Section 6.4. Climbing the GUI Learning Curve Section 6.5. The End of the Tutorial Section 6.6. Python/Tkinter for Tcl/Tk Converts Chapter 7. A Tkinter Tour, Part 1 Section 7.1. "Widgets and Gadgets and GUIs, Oh My!" Section 7.2. Configuring Widget Appearance Section 7.3. Toplevel Windows Section 7.4. Dialogs Section 7.5. Binding Events Section 7.6. Message and Entry Section 7.7. Checkbutton, Radiobutton, and Scale Section 7.8. Running GUI Code Three Ways Section 7.9. Images Chapter 8. A Tkinter Tour, Part 2 Section 8.1. "On Today39;s Menu: Spam, Spam, and Spam" Section 8.2. Menus Section 8.3. Listboxes and Scrollbars Section 8.4. Text Section 8.5. Canvas Section 8.6. Grids Section 8.7. Time Tools, Threads, and Animation Section 8.8. The End of the Tour Section 8.9. The PyDemos and PyGadgets Launchers Chapter 9. Larger GUI Examples Section 9.1. "Building a Better Mouse Trap" Section 9.2. Advanced GUI Coding Techniques Section 9.3. Complete Program Examples Section 9.4. PyEdit: A Text Editor Program/Object Section 9.5. PyView: An Image and Notes Slideshow Section 9.6. PyDraw: Painting and Moving Graphics Section 9.7. PyClock: An Analog/Digital Clock Widget Section 9.8. PyToe: A Tic-Tac-Toe Game Widget Section 9.9. Where to Go from Here Part III: Internet Scripting Chapter 10. Network Scripting Section 10.1. "Tune in, Log on, and Drop out" Section 10.2. Plumbing the Internet Section 10.3. Socket Programming Section 10.4. Handling Multiple Clients Section 10.5. A Simple Python File Server Chapter 11. Client-Side Scripting Section 11.1. "Socket to Me!" Section 11.2. Transferring Files over the Net Section 11.3. Processing Internet Email Section 11.4. The PyMailGui Email Client Section 11.5. Other Client-Side Tools Chapter 12. Server-Side Scripting Section 12.1. "Oh What a Tangled Web We Weave" Section 12.2. What39;s a Server-Side CGI Script? Section 12.3. Climbing the CGI Learning Curve Section 12.4. The Hello World Selector Section 12.5. Coding for Maintainability Section 12.6. More on HTML and URL Escapes Section 12.7. Sending Files to Clients and Servers Chapter 13. Larger Web Site Examples I Section 13.1. "Things to Do When Visiting Chicago" Section 13.2. The PyMailCgi Web Site Section 13.3. The Root Page Section 13.4. Sending Mail by SMTP Section 13.5. Reading POP Email Section 13.6. Utility Modules Section 13.7. CGI Script Trade-offs Chapter 14. Larger Web Site Examples II Section 14.1. "Typos Happen" Section 14.2. The PyErrata Web Site Section 14.3. The Root Page Section 14.4. Browsing PyErrata Reports Section 14.5. Submitting PyErrata Reports Section 14.6. PyErrata Database Interfaces Section 14.7. Administrative Tools Section 14.8. Designing for Reuse and Growth Chapter 15. Advanced Internet Topics Section 15.1. "Surfing on the Shoulders of Giants" Section 15.2. Zope: A Web Publishing Framework Section 15.3. HTMLgen: Web Pages from Objects Section 15.4. JPython ( Jython): Python for Java Section 15.5. Grail: A Python-Based Web Browser Section 15.6. Python Restricted Execution Mode Section 15.7. XML Processing Tools Section 15.8. Windows Web Scripting Extensions Section 15.9. Python Server Pages Section 15.10. Rolling Your Own Servers in Python Part IV: Assorted Topics Chapter 16. Databases and Persistence Section 16.1. "Give Me an Order of Persistence, but Hold the Pickles" Section 16.2. Persistence Options in Python Section 16.3. DBM Files Section 16.4. Pickled Objects Section 16.5. Shelve Files Section 16.6. SQL Database Interfaces Section 16.7. PyForm: A Persistent Object Viewer Chapter 17. Data Structures Section 17.1. "Roses Are Red, Violets Are Blue; Lists Are Mutable, and So Is Class Foo" Section 17.2. Implementing Stacks Section 17.3. Implementing Sets Section 17.4. Binary Search Trees Section 17.5. Graph Searching Section 17.6. Reversing Sequences Section 17.7. Permuting Sequences Section 17.8. Sorting Sequences Section 17.9. Data Structures Versus Python Built-ins Section 17.10. PyTree: A Generic Tree Object Viewer Chapter 18. Text and Language Section 18.1. "See Jack Hack. Hack, Jack, Hack" Section 18.2. Strategies for Parsing Text in Python Section 18.3. String Module Utilities Section 18.4. Regular Expression Matching Section 18.5. Parser Generators Section 18.6. Hand-Coded Parsers Section 18.7. PyCalc: A Calculator Program/Object Part V: Integration Chapter 19. Extending Python Section 19.1. "I Am Lost at C" Section 19.2. C Extensions Overview Section 19.3. A Simple C Extension Module Section 19.4. The SWIG Integration Code Generator Section 19.5. Wrapping C Environment Calls Section 19.6. A C Extension Module String Stack Section 19.7. A C Extension Type String Stack Section 19.8. Wrapping C++ Classes with SWIG Chapter 20. Embedding Python Section 20.1. "Add Python. Mix Well. Repeat." Section 20.2. C Embedding API Overview Section 20.3. Basic Embedding Techniques Section 20.4. Registering Callback Handler Objects Section 20.5. Using Python Classes in C Section 20.6. ppembed: A High-Level Embedding API Section 20.7. Other Integration Topics Part VI: The End Chapter 21. Conclusion: Python and the Development Cycle Section 21.1. "That39;s the End of the Book, Now Here39;s the Meaning of Life" Section 21.2. "Something39;s Wrong with the Way We Program Computers" Section 21.3. The "Gilligan Factor" Section 21.4. Doing the Right Thing Section 21.5. Enter Python Section 21.6. But What About That Bottleneck? Section 21.7. On Sinking the Titanic Section 21.8. So What39;s Python: The Sequel Section 21.9. In the Final Analysis... Section 21.10. Postscript to the Second Edition Appendix A. Recent Python Changes Section A.1. Major Changes in 2.0 Section A.2. Major Changes in 1.6 Section A.3. Major Changes Between 1.3 and 1.5.2 Appendix B. Pragmatics Section B.1. Installing Python Section B.2. Book Examples Distribution Section B.3. Environment Configuration Section B.4. Running Python Programs Section B.5. Python Internet Resources Appendix C. Python Versus C++
5KB
简单python 爬虫,获取 省市区、镇、街道 爬虫原码.py
2020-07-24简单python 爬虫,获取 省市区、镇、街道 爬虫原码 #!usr/bin/python #coding:utf-8 import requests import time from bs4 import BeautifulSoup # 国家统计局 2019年 行政区域划分网址 link = 39;http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2019/39; # 伪装 headers headers = { 39;User-Agent39;: 39;Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.3639;, 39;Accept-Encoding39;: 39;gzip, deflate39; } 39;39;39; 获取省数据 39;39;39; def getprovincetr(url = 39;index.html39;): .。。。。。。。。。。。。。。
275KB
dll2lib.rar (需要安装 python2.X )
2011-06-17来源: http://lavixu.livejournal.com/14738.html 压缩包中除上述网址的dll2lib.py外还含有 VC 6 的如下几个文件: DUMPBIN.EXE LIB.EXE LINK.EXE MSPDB60.DLL 该python脚本对一个 A.dll 文件会生成如下三个文件: A.lib A.def A.exp 因为是 python 写的,所以需要下载 python (目前为 2.7 ,不要使用 3.X 版的,因为 3.X 版认为 print "string" 是语法错误的) ------------------- 传说中的分隔线 ------------------- 你可能对下面的内容也感兴趣: 标题: How can an MSVC program call an MinGW DLL, and vice versa? 网址: http://wyw.dcweb.cn/dllfaq.htm ------------------- 下面是传说中价格为$999的 DLL to Lib (d2l) 它能把 dll 转为静态库 :) DLL to Lib 3.0 (Free to try; $999.00 to buy) http://download.cnet.com/DLL-to-Lib/3000-18487_4-10064902.html
49B
python selenium+webdriver第三版.
2018-02-03一、selenium+python 环境搭建................................................................................................6 1.1 selenium 介绍............................................................................................................... 6 1.2 准备工作......................................................................................................................6 1.3 安装步骤......................................................................................................................7 1.4 安装 chrome driver......................................................................................................8 1.5 安装 IE driver................................................................................9 二、开始第一个脚本.................................................................................................................9 2.1 为什么选 python..........................................................................................................9 2.2 第一个脚本..................................................................................................................9 2.3 脚本解析....................................................................................................................10 三、元素的定位.......................................................................................................................11 3.1 id 和 name 定位.......................................................................................................12 3.2 tag name 和 class name 定位...................................................................................12 3.3 CSS 定位..................................................................................................................13 3.4 XPath 定位...............................................................................................................14 3.5 link 定位...................................................................................................................15 3.6 Partial link text 定位................................................................................................15 四、添加等待时间...................................................................................................................15 4.1、添加休眠..................................................................................................................15 4.2、智能等待..................................................................................................................16 五、打印信息...........................................................................................................................17 5.1、打印 tile....................................................................................................................17 5.2、打印 URL.................................................................................................................17 六、浏览器的操作...................................................................................................................18 6.1、浏览器最大化..........................................................................................................18 6.2、设置浏览器宽、高..................................................................................................19 七、操作浏览器的前进、后退...............................................................................................19 八、操作测试对象...................................................................................................................20 8.1、鼠标点击与键盘输入..............................................................................................21 8.2、submit 提交表单......................................................................................................21 8.3、text 获取元素文本...................................................................................................22 8.4、get_attribute 获得属性值........................................................................................ 22 九、键盘事件...........................................................................................................................23 9.1、键盘按键用法..........................................................................................................23 9.2、键盘组合键用法......................................................................................................24 9.3、中文乱码问题..........................................................................................................25 十、鼠标事件...........................................................................................................................25 10.1、鼠标右键................................................................................................................26 博客园 — 虫师 http://fnng.cnblogs.com 4 10.2、鼠标双击................................................................................................................27 10.3、鼠标拖放................................................................................................................27 十一、定位一组元素...............................................................................................................28 11.1、第一种定位方法....................................................................................................30 11.2、第二种定位方法....................................................................................................31 11.3、去掉最后一个勾选................................................................................................31 十二、多层框架/窗口定位......................................................................................................32 12.1、多层框架定位........................................................................................................32 12.2、多层窗口定位........................................................................................................35 十三、层级定位.......................................................................................................................35 十四、上传文件操作...............................................................................................................38 14.1、操作文件上传例子................................................................................................39 14.2、139 邮箱上传.........................................................................................................40 十五、下拉框处理...................................................................................................................41 15.1、操作下拉框例子....................................................................................................41 15.2、百度搜索设置下拉框操作....................................................................................43 十六、alert、confirm、prompt 的处理..................................................................................44 十七、对话框的处理...............................................................................................................45 17.1、div 对话框的处理..................................................................................................45 17.2、一般对话框的处理................................................................................................48 十八、调用 js...........................................................................................................................49 18.1、通过 js 隐藏元素...................................................................................................49 18.2、通过 js 使输入框标红...........................................................................................51 十九、控制浏览器滚动条.......................................................................................................52 19.1、场景一....................................................................................................................53 19.2、场景二....................................................................................................................53 二十、cookie 处理...................................................................................................................54 20.1、打印 cookie 信息...................................................................................................54 20.2、对 cookie 操作.......................................................................................................55 20.3、博客园登陆分析 cookie........................................................................................56 二十一、webdriver 原理解析................................................................................................. 57 二十二、引入 unittest 框架.....................................................................................................65 二十三、unittest 单元测试框架解析......................................................................................70 二十四、批量执行测试集.......................................................................................................75 二十五、异常捕捉与错误截图...............................................................................................77 二十六、生成测试报告(HTMLTestRunner).......................................................................... 80 二十七、数据驱动测试...........................................................................................................83 27.1、读取文件参数化....................................................................................................83 27.2、用户名密码的参数化(读取文件)................................................................... 85 27.3、用户名的参数化(字典)....................................................................................86 27.4、用户名密码的参数化(函数)........................................................................... 87 二十八、测试套件...................................................................................................................89 28.1、测试套件实例........................................................................................................89 28.2、整合 HTMLTestRunner 测试报告........................................................................93 博客园 — 虫师 http://fnng.cnblogs.com 5 28.3、更易读的报告........................................................................................................95 二十九、结构改进...................................................................................................................96 29.1、all_tests.py 移出来................................................................................................96 29.2、__init__.py 文件解析............................................................................................97 29.3、调用多级目录的用例............................................................................................98 29.4、改进用例的读取....................................................................................................99 29.5、进一步分离用例列表..........................................................................................101 三十、UliPad--python 开发利器...........................................................................................103
2.54MB
LabRent平台-源码
2021-02-27LabRent平台 准备工作 安装依赖 pip install -r requirements.txt 迁移数据库 python manage.py makemigrations python manage.py migrate 安装npm依赖 cd front_end sudo npm link/ sudo npm install cd .. 运行服务 启动Django服务(启动初始) python manage.py runserver 启动vue-cli项目(启动前端) cd front_end sudo npm run serve cd .. 自动化测试 执行测试 python manage.py test core 统计测试覆盖率 coverage run manage.py test core coverage html 原料药 注册 Method: POST URL:ap
3KB
PythonDiscordBot:用discord.py用Python编写的Discord Bot-源码
2021-02-16PythonDiscordBot Mit dem Link https://discord.com/oauth2/authorize?client_id=801163928255201371&permissions=8&scope=bot Bot zum Discord-Serverhinzufügen。
16KB
pystagram:用于下载Instagram视频的Python 3模块-源码
2021-02-13幽影 用于下载Instagram视频的API。 可以处理单个视频和边缘媒体视频。 安装 git clone https://github.com/ch3njust1n/pystagram.git && cd pystagram python setup.py build sudo python setup.py install 例子 from pystagram import Instagram link = 39;www.instagram.com/p/B8B9dYtgvDk/39; name = 39;video39; gram = Instagram(link) gram.download(dst=39;save_dir39;, filename=name)
952B
python连接SQLserver
2018-05-27python连接数据库读取数据库前n行数据,添加信息到数据库
67KB
基于Selenium的WebUI自动化测试框架pyse.zip
2019-07-19pyse 基于selenium(webdriver)进行了简单的二次封装,比 selenium 所提供的方法操作更简洁。特点:支持多种定位方法(id\name\class\link_text\xpath\css)。本框架只是对 selenium( webdriver ) 原生方法进行了简单的封装,精简为大约 30 个方法,这些方法基本能够胜任于我们的web自动化测试。基于 unittest 单元测试框架,所以测试文件与测试方法遵循unittest开发。自动生成HTML测试报告生成。安装说明:Python3.5 :https://www.python.org/Selenium3.0.0 :https://pypi.python.org/pypi/selenium进入 pyse/ 目录,执行 >python setup.py install 标签:pyse 自动化测试
8KB
mmdet_ict:计算所举办的竞赛演示,基于视网膜网络,mmdetection框架-源码
2021-03-05人车模型演示 1.测试样例 默认目录为mm检测 phcl_new.py放到configs / _base_ / datasets / retinanet_r50_fpn_1x_phcl.py放到configs / retinanet / cag.py,phcl.py放到mmdet /数据集/ 修改mmdet / datasets / _ init _.py文件,添加函数路径 from . cag import CAGDataset , PHCLDataset __all__ = [ 39;CAGDataset39; , 39;PHCLDataset39; ] (_全部_里面其他内容不动) 2.数据集以及标注 link.sh在mmdetection目录下运行,该脚本将数据集以及标注软连接到相应目录。 split_dataset.py切分标注,因为没有提供测试集,然后demo自己从训练集中切分一部分出
37KB
ML-comparison-源码
2021-04-18机器学习比较-比较不同机器学习算法的项目。 比较算法: K的KNN =(1 ... 10) 支持向量机 决策树 神经网络(可能) 数据集:我将使用两个手写数字数据集。 需要从{INSERT HTTP LINK HERE}安装的USPS和{INSERT HTTP LINK HERE}的MNIST数据集。 还有一个更简单的控制数据集Iris {INSERT HTTP LINK HERE} 这个项目完全是用Python3编写的。 它应包含以下文件,其中的算法具有单独的功能: nnalgo.py knnalgo.py svm.py dectree.py nn.py 用户手册:
1.55MB
github上pyaudio编译安装版
2018-10-05在python升级到3.7版本后,原来好用的pyaudio无法使用。pip install pyaudio安装也无效。官网上暂时没有3.7的安装版whl。经测试, (https://github.com/intxcc/pyaudio_portaudio) 文件下载后,按说明进行编译portaudio.lib,在Microsoft Visual Studio (2017)安装pyaudio,使用静态链接库(在命令行使用命令 python.exe .\setup.py install --static-link),经测试安装成功。
56KB
tplink-smartplug, TP链接 WiFi SmartPlug客户端和Wireshark剖析器.zip
2019-09-17tplink-smartplug, TP链接 WiFi SmartPlug客户端和Wireshark剖析器 tp链接 WiFi SmartPlug客户端和Wireshark剖析器关于完整的故事,请参见反向工程的tp链接 HS110. tplink-smartplug.py专有tp链接智能家庭协议的python 客户端,用于控制tp链接HS
47KB
解决python3 安装完Pycurl在import pycurl时报错的问题
2020-12-24此次遇到的问题是在import pycurl 时报错 pycurl:libcurl link-time version is older than compile-time version 在网上看了很多解释和方法,但都没有很好的解决和分析这个问题,我先说下自己的过程 1、安装的事centos7 ,默认安装的是python2.7,python3是后使用src安装的,同样先下载了curl-7.61的包和pycurl-7.43的包,应该都是最新的了 2、先make && make install 了curl-7.61,至/usr/local下,然后python3 setup.py instal
154KB
beautifulsoup4-4.5.1.tar.gz
2016-09-21beautifulsoup4-4.5.1.tar.gz Beautiful Soup是一个Python的一个库,主要为一些短周期项目比如屏幕抓取而设计。有三个特性使得它非常强大: 1.Beautiful Soup提供了一些简单的方法和Python术语,用于检索和修改语法树:一个用于解析文档并提取相关信息的工具包。这样你写一个应用不需要写很多代码。 2.Beautiful Soup自动将输入文档转换为Unicode编码,并将输出文档转化为UTF-8编码。你不需要考虑编码,除非输入文档没有指出其编码并且Beautiful Soup无法自动检测到,这时你需要指出原来的编码方式。 3.Beautiful Soup位于一些流行的Python解析器比如lxml和html5lib的上层,这允许你使用不同的解析策略或者牺牲速度来换取灵活性。 Beautiful Soup解析你提哦那个的任何东西,并且替你完成树的便利。你可以告诉它“查找所有的链接” 或者“查找类externalLink的所有链接”或者“查找所有url地址匹配foo.com的链接”或者“查找使用粗体的表头,返回那些粗体的文本”。 在一些设计不良的网站上很难获取的宝贵的数据,使用Beautiful Soup便可以获得。 原先需要运行几个小时工程,使用Beautiful Soup仅需要几分钟而已。 下面说一下在Windows系统下安装Beautiful Soup4的步骤和方法 1.到http://www.crummy.com/software/BeautifulSoup/网站上上下载,最新版本是4.3.2。 2.下载完成之后需要解压缩,假设放到D:/python下。 3.运行cmd,切换到D:/python/beautifulsoup4-4.3.2/目录下(根据自己解压缩后的目录和下载的版本号修改), cd D:/python//beautifulsoup4-4.3.2 4.运行命令: setup.py build setup.py install 5.在IDE下from bs4 import BeautifulSoup,没有报错说明安装成功。需要重启IDE
222KB
Bash-Utils:其他小型utils,主要用于Bash shell-源码
2021-01-28Bash实用程序(Bash外壳的其他各种小实用程序) 新(2017年1月9日)! 所有脚本均更新为Python3。原始Python 2版本(不再维护)标记为“ v0.1”。 您可以在“发布”链接下找到该链接。 在这里,我收集了一些小的命令行工具。 作者:Laszlo Szathmary,2011- 年( ) GitHub: : 字典/含义.py 查找单词的含义。 用法: meaning pen 含义: pen一词是什么意思? dropbox / dropbox_permissions.py 以一种智能的方式在您的Dropbox文件夹中设置目录/文件权限。 目标受众:有时也使用WindowsLinux用户。 用法:将脚本放在Dropbox文件夹的根目录中并启动它。 投寄箱/get_public_link.py 显示一个(或多个)文件的公共Dropbox链接。 Dropbox在2017年进行了一些更改,因此不再起作用。 用法: get_public_link [<file> | -a] get_public_link [<file> | -a] firefo
-
下载
双馈机组风电场动态等效模型研究_米增强.caj
双馈机组风电场动态等效模型研究_米增强.caj
-
下载
AL基底的折射率和消光系数.txt
AL基底的折射率和消光系数.txt
-
下载
【解决方案】如何通过EasyGBS建立工厂仓储监控管理系统.pdf
【解决方案】如何通过EasyGBS建立工厂仓储监控管理系统.pdf
-
下载
西宁各乡镇街道shp文件 最新
西宁各乡镇街道shp文件 最新
-
下载
installing.pdf
installing.pdf
-
下载
基于python开发的全球外贸数据爬虫系统v1.5下载
基于python开发的全球外贸数据爬虫系统v1.5下载
-
下载
pcie phy white paper.pdf
pcie phy white paper.pdf
-
下载
高考志愿填报辅助系统数据库设计.zip
高考志愿填报辅助系统数据库设计.zip
-
下载
settings.ini
settings.ini
-
下载
基于python开发的中国外贸数据爬虫系统v1.3下载
基于python开发的中国外贸数据爬虫系统v1.3下载
