Skip to content

python-mechanize/mechanize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9f7e3bb · Apr 26, 2024
May 21, 2020
Mar 23, 2018
Apr 26, 2024
Jan 9, 2019
Apr 26, 2024
May 11, 2019
Mar 14, 2017
Apr 26, 2024
Mar 8, 2017
Apr 17, 2019
Sep 17, 2020
Aug 31, 2021
Nov 7, 2023
Nov 7, 2023
Jan 10, 2019
Jan 10, 2019
Apr 25, 2022
Oct 20, 2021

Repository files navigation

mechanize - Automate interaction with HTTP web servers

Latest version released on PyPi Build status of the master branch

Stateful programmatic web browsing in Python

  • The browser class mechanize.Browser implements the interface of urllib2.OpenerDirector, so any URL can be opened not just http.
  • Easy HTML form filling.
  • Convenient link parsing and following.
  • Browser history (.back() and .reload() methods).
  • The Referer HTTP header is added properly (optional).
  • Automatic observance of robots.txt.
  • Automatic handling of HTTP-Equiv and Refresh.

To install for normal usage:

pip3 install mechanize

To install for development:

git clone https://github.com/python-mechanize/mechanize.git
cd mechanize
pip3 install -e .

To install manually, simply add the mechanize sub-directory somewhere on your PYTHONPATH.

See https://mechanize.readthedocs.io/en/latest/

python-mechanize was the creation of John J. Lee. Maintenance was taken over by Kovid Goyal in 2017.

Much of the code was originally derived from the work of the following people:

  • Gisle Aas -- [libwww-perl]
  • Jeremy Hylton (and many others) -- [urllib2]
  • Andy Lester -- [WWW::Mechanize]
  • Johnny Lee (coincidentally-named) -- MSIE CookieJar Perl code from which mechanize's support for that is derived.

Also:

  • Gary Poster and Benji York at Zope Corporation -- contributed significant changes to the HTML forms code
  • Ronald Tschalar -- provided help with Netscape cookies

Thanks also to the many people who have contributed bug reports and patches.