pax_global_header 0000666 0000000 0000000 00000000064 13577632275 0014533 g ustar 00root root 0000000 0000000 52 comment=3acb1836f3fd8edc5a758a417dd46b53832ae3b5 mechanize-0.4.5/ 0000775 0000000 0000000 00000000000 13577632275 0013504 5 ustar 00root root 0000000 0000000 mechanize-0.4.5/.gitignore 0000664 0000000 0000000 00000000064 13577632275 0015474 0 ustar 00root root 0000000 0000000 /build/ /dist/ /docs/_* *.egg-info/ *.py[co] .venv* mechanize-0.4.5/COPYRIGHT 0000664 0000000 0000000 00000000203 13577632275 0014772 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.5/ChangeLog 0000664 0000000 0000000 00000070377 13577632275 0015274 0 ustar 00root root 0000000 0000000 This isn't really in proper GNU ChangeLog format, it just happens to look that way. 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