pax_global_header 0000666 0000000 0000000 00000000064 14121532370 0014510 g ustar 00root root 0000000 0000000 52 comment=c7536e42df70ce820006835d70ea65f80d90b6f7 mechanize-0.4.7/ 0000775 0000000 0000000 00000000000 14121532370 0013463 5 ustar 00root root 0000000 0000000 mechanize-0.4.7/.gitignore 0000664 0000000 0000000 00000000064 14121532370 0015453 0 ustar 00root root 0000000 0000000 /build/ /dist/ /docs/_* *.egg-info/ *.py[co] .venv* mechanize-0.4.7/COPYRIGHT 0000664 0000000 0000000 00000000203 14121532370 0014751 0 ustar 00root root 0000000 0000000 Files: * Copyright: Copyright (C) 2008-2017 Kovid Goyal, John J Lee, Gisle Aas, Johnny Lee, Andy Lester License: BSD-3-clause-like mechanize-0.4.7/ChangeLog 0000664 0000000 0000000 00000071055 14121532370 0015245 0 ustar 00root root 0000000 0000000 This isn't really in proper GNU ChangeLog format, it just happens to look that way. 2021-09-19 Kovid Goyal * 0.4.7 release * Fix the ~ character being percent escaped when sending URLs to servers. See RFC 3986. 2021-09-01 Kovid Goyal * 0.4.6 release * Python 3.10 compatibility * Fix a bug in the regex used to parse www-authenticate headers that could lead to Denial-of-Service 2019-12-22 Kovid Goyal * 0.4.5 release * Add a set_html() method to the browser object 2019-11-07 Kovid Goyal * 0.4.4 release * URLs passed into mechanize now automatically have URL unsafe characters percent encoded. This is necessary because newer versions of python disallow processing of URLs with unsafe characters. Note that this means values return by get_full_url(), get_selector() etc will be percent encoded. 2019-08-18 Kovid Goyal * 0.4.3 release * When filling forms with unicode strings automatically encode them into the correct encoding fr the HTML page being viewed * Guess content type when uploading files if not specified * py3 compat - Have the version of simple cookies be 0 rather than None 2019-04-12 Kovid Goyal * 0.4.2 release * A couple of python 3 specific fixes for proxy authorization and * adding controls to forms 2019-03-16 Kovid Goyal * 0.4.1 release * A couple of python 3 specific fixes for servers with missing robots.txt files and also errors when using basic/digest auth 2019-01-16 Kovid Goyal * 0.4.0 release * Python 3 compatibility * Add a finalize_request_headers callback to Browser to allow users full control of what headers are sent with every request * Preserve header ordering when making HTTP requests 2018-09-11 Kovid Goyal * 0.3.7 release * Fix processing of http-equiv meta tags incorrectly lower casing the content * Fix error when a textbox contained within a form contains unicode characters 2017-10-13 Kovid Goyal * 0.3.6 release. * Use html5-parser for parsing HTML, when available instead of html5lib for a big performance boost. * Fix error when trying to submit forms with non-ascii values on systems where the default encoding is ascii. * Fix errors on python environments with broken threading 2017-06-24 Kovid Goyal * 0.3.5 release. * Fix error when trying to open pages that contain HTML entities that decode to unicode characters in their
sections 2017-05-05 Kovid Goyal * 0.3.3 release. * Add get() and __getitem__ methods to the response object for conveninent access to response headers 2017-04-29 Kovid Goyal * 0.3.2 release. * Allow overriding of Host headers via addheaders * Fix using unicode strings in addheaders and trying to send data with a request failing 2017-03-17 Kovid Goyal * 0.3.1 release. * Allow easily selecting forms based on HTML attributes of the