What is better than Mechanize in Python?

I want to submit a form, follow the link, select some checkboxes and radio buttons and click buttons through my Python program. I worked with Perl Mechanize. I checked google and I found it available for Python too

http://wwwsearch.sourceforge.net/mechanize/ 

Sorry, this link is dead! So, where can I get some Python mechanics tutorials and where to download them? If not for mechanization, what else could you suggest?

+4
source share
3 answers

Try this link:

http://pypi.python.org/pypi/mechanize

If not mechanized, then webdriver, which controls the webkit or webunit backend from Python, is an option. Or just use the webkit bindings from Python directly.

+7
source

In addition, if the mechanism does not work, try using splinter .

+4
source

Kate has already pointed you to the correct mechanization link. In addition, you can try selenium bindings ( tutorial ) is also available for python.

+1
source

All Articles