wok annotate python-mechanize/description.txt @ rev 25805
created recipe for xfce4-weather-plugin
author | Hans-G?nter Theisgen |
---|---|
date | Wed Nov 13 15:24:31 2024 +0100 (3 weeks ago) |
parents | |
children |
rev | line source |
---|---|
Hans-G?nter@25203 | 1 Stateful programmatic web browsing, after Andy Lester's Perl module WWW::Mechanize. |
Hans-G?nter@25203 | 2 |
Hans-G?nter@25203 | 3 Mechanize.Browser implements the urllib2.OpenerDirector interface. |
Hans-G?nter@25203 | 4 Browser objects have state, including navigation history, HTML form state, cookies, |
Hans-G?nter@25203 | 5 etc. |
Hans-G?nter@25203 | 6 The set of features and URL schemes handled by Browser objects is configurable. |
Hans-G?nter@25203 | 7 The library also provides an API that is mostly compatible with urllib2: |
Hans-G?nter@25203 | 8 your urllib2 program will likely still work if you replace "urllib2" with "mechanize" |
Hans-G?nter@25203 | 9 everywhere. |
Hans-G?nter@25203 | 10 |
Hans-G?nter@25203 | 11 Features include: ftp:, http: and file: URL schemes, browser history, hyperlink and |
Hans-G?nter@25203 | 12 HTML form support, HTTP cookies, HTTP-EQUIV and Refresh, Referer [sic] header, |
Hans-G?nter@25203 | 13 robots.txt, redirections, proxies, and Basic and Digest HTTP authentication. |
Hans-G?nter@25203 | 14 |
Hans-G?nter@25203 | 15 Much of the code originally derived from Perl code by Gisle Aas (libwww-perl), |
Hans-G?nter@25203 | 16 Johnny Lee (MSIE Cookie support) and last but not least Andy Lester (WWW::Mechanize). |
Hans-G?nter@25203 | 17 Urllib2 was written by Jeremy Hylton. |