基本信息
源码名称:python mechanize 0.2.5
源码大小:0.42M
文件格式:.zip
开发语言:Python
更新时间:2023-05-30
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
python mechanize 0.2.5
python mechanize可以方便的模拟URL的访问,测试时的必要工具。
文件清单
└── mechanize-0.2.5
├── COPYING.txt
├── docs
│ ├── development.txt
│ ├── doc.txt
│ ├── documentation.txt
│ ├── download.txt
│ ├── faq.txt
│ ├── forms.txt
│ ├── hints.txt
│ ├── html
│ │ ├── ChangeLog.txt
│ │ ├── development.html
│ │ ├── doc.html
│ │ ├── documentation.html
│ │ ├── download.html
│ │ ├── faq.html
│ │ ├── forms.html
│ │ ├── hints.html
│ │ ├── index.html
│ │ └── support.html
│ ├── index.txt
│ ├── styles
│ │ ├── ie6.js
│ │ ├── maxwidth.css
│ │ └── style.css
│ └── support.txt
├── examples
│ ├── forms
│ │ ├── data.dat
│ │ ├── data.txt
│ │ ├── echo.cgi
│ │ ├── example.html
│ │ ├── example.py
│ │ └── simple.py
│ ├── hack21.py
│ └── pypi.py
├── ez_setup.py
├── INSTALL.txt
├── MANIFEST.in
├── mechanize
│ ├── _auth.py
│ ├── _beautifulsoup.py
│ ├── _clientcookie.py
│ ├── _debug.py
│ ├── _firefox3cookiejar.py
│ ├── _form.py
│ ├── _gzip.py
│ ├── _headersutil.py
│ ├── _html.py
│ ├── _http.py
│ ├── __init__.py
│ ├── _lwpcookiejar.py
│ ├── _markupbase.py
│ ├── _mechanize.py
│ ├── _mozillacookiejar.py
│ ├── _msiecookiejar.py
│ ├── _opener.py
│ ├── _pullparser.py
│ ├── _request.py
│ ├── _response.py
│ ├── _rfc3986.py
│ ├── _sgmllib_copy.py
│ ├── _sockettimeout.py
│ ├── _testcase.py
│ ├── _urllib2_fork.py
│ ├── _urllib2.py
│ ├── _useragent.py
│ ├── _util.py
│ └── _version.py
├── mechanize.egg-info
│ ├── dependency_links.txt
│ ├── PKG-INFO
│ ├── SOURCES.txt
│ ├── top_level.txt
│ └── zip-safe
├── PKG-INFO
├── README.txt
├── release.py
├── setup.cfg
├── setup.py
├── test
│ ├── functional_tests_golden
│ │ ├── FormsExamplesTests.test_example
│ │ │ └── output
│ │ └── FormsExamplesTests.test_simple
│ │ └── output
│ ├── __init__.py
│ ├── test_api.py
│ ├── test_browser.doctest
│ ├── test_browser.py
│ ├── test_cookie.py
│ ├── test_cookies.py
│ ├── test_date.py
│ ├── test_form_data
│ │ ├── Auth.html
│ │ ├── FullSearch.html
│ │ ├── GeneralSearch.html
│ │ ├── MarkedRecords.html
│ │ ├── MarkedResults.html
│ │ ├── Results.html
│ │ └── SearchType.html
│ ├── test_form_mutation.py
│ ├── test_form.py
│ ├── test_forms.doctest
│ ├── test_functional.py
│ ├── test_headers.py
│ ├── test_history.doctest
│ ├── test_html.doctest
│ ├── test_html.py
│ ├── test_import.py
│ ├── test_opener.doctest
│ ├── test_opener.py
│ ├── test_password_manager.special_doctest
│ ├── test_performance.py
│ ├── test_pickle.py
│ ├── test_pullparser.py
│ ├── test_request.doctest
│ ├── test_response.doctest
│ ├── test_response.py
│ ├── test_rfc3986.doctest
│ ├── test_robotfileparser.doctest
│ ├── test_unittest.py
│ ├── test_urllib2_localnet.py
│ ├── test_urllib2.py
│ └── test_useragent.py
├── test.py
└── test-tools
├── cookietest.cgi
├── doctest.py
├── functools_copy.py
├── linecache_copy.py
├── testprogram.py
├── twisted-ftpserver.py
├── twisted-localserver.py
└── unittest
├── case.py
├── __init__.py
├── loader.py
├── __main__.py
├── main.py
├── result.py
├── runner.py
├── suite.py
└── util.py
15 directories, 130 files
python mechanize 0.2.5
python mechanize可以方便的模拟URL的访问,测试时的必要工具。
文件清单
└── mechanize-0.2.5
├── COPYING.txt
├── docs
│ ├── development.txt
│ ├── doc.txt
│ ├── documentation.txt
│ ├── download.txt
│ ├── faq.txt
│ ├── forms.txt
│ ├── hints.txt
│ ├── html
│ │ ├── ChangeLog.txt
│ │ ├── development.html
│ │ ├── doc.html
│ │ ├── documentation.html
│ │ ├── download.html
│ │ ├── faq.html
│ │ ├── forms.html
│ │ ├── hints.html
│ │ ├── index.html
│ │ └── support.html
│ ├── index.txt
│ ├── styles
│ │ ├── ie6.js
│ │ ├── maxwidth.css
│ │ └── style.css
│ └── support.txt
├── examples
│ ├── forms
│ │ ├── data.dat
│ │ ├── data.txt
│ │ ├── echo.cgi
│ │ ├── example.html
│ │ ├── example.py
│ │ └── simple.py
│ ├── hack21.py
│ └── pypi.py
├── ez_setup.py
├── INSTALL.txt
├── MANIFEST.in
├── mechanize
│ ├── _auth.py
│ ├── _beautifulsoup.py
│ ├── _clientcookie.py
│ ├── _debug.py
│ ├── _firefox3cookiejar.py
│ ├── _form.py
│ ├── _gzip.py
│ ├── _headersutil.py
│ ├── _html.py
│ ├── _http.py
│ ├── __init__.py
│ ├── _lwpcookiejar.py
│ ├── _markupbase.py
│ ├── _mechanize.py
│ ├── _mozillacookiejar.py
│ ├── _msiecookiejar.py
│ ├── _opener.py
│ ├── _pullparser.py
│ ├── _request.py
│ ├── _response.py
│ ├── _rfc3986.py
│ ├── _sgmllib_copy.py
│ ├── _sockettimeout.py
│ ├── _testcase.py
│ ├── _urllib2_fork.py
│ ├── _urllib2.py
│ ├── _useragent.py
│ ├── _util.py
│ └── _version.py
├── mechanize.egg-info
│ ├── dependency_links.txt
│ ├── PKG-INFO
│ ├── SOURCES.txt
│ ├── top_level.txt
│ └── zip-safe
├── PKG-INFO
├── README.txt
├── release.py
├── setup.cfg
├── setup.py
├── test
│ ├── functional_tests_golden
│ │ ├── FormsExamplesTests.test_example
│ │ │ └── output
│ │ └── FormsExamplesTests.test_simple
│ │ └── output
│ ├── __init__.py
│ ├── test_api.py
│ ├── test_browser.doctest
│ ├── test_browser.py
│ ├── test_cookie.py
│ ├── test_cookies.py
│ ├── test_date.py
│ ├── test_form_data
│ │ ├── Auth.html
│ │ ├── FullSearch.html
│ │ ├── GeneralSearch.html
│ │ ├── MarkedRecords.html
│ │ ├── MarkedResults.html
│ │ ├── Results.html
│ │ └── SearchType.html
│ ├── test_form_mutation.py
│ ├── test_form.py
│ ├── test_forms.doctest
│ ├── test_functional.py
│ ├── test_headers.py
│ ├── test_history.doctest
│ ├── test_html.doctest
│ ├── test_html.py
│ ├── test_import.py
│ ├── test_opener.doctest
│ ├── test_opener.py
│ ├── test_password_manager.special_doctest
│ ├── test_performance.py
│ ├── test_pickle.py
│ ├── test_pullparser.py
│ ├── test_request.doctest
│ ├── test_response.doctest
│ ├── test_response.py
│ ├── test_rfc3986.doctest
│ ├── test_robotfileparser.doctest
│ ├── test_unittest.py
│ ├── test_urllib2_localnet.py
│ ├── test_urllib2.py
│ └── test_useragent.py
├── test.py
└── test-tools
├── cookietest.cgi
├── doctest.py
├── functools_copy.py
├── linecache_copy.py
├── testprogram.py
├── twisted-ftpserver.py
├── twisted-localserver.py
└── unittest
├── case.py
├── __init__.py
├── loader.py
├── __main__.py
├── main.py
├── result.py
├── runner.py
├── suite.py
└── util.py
15 directories, 130 files