Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is better than Mechanize in Python?

I want to submit a form, follow link, select some check boxes & Radio buttons and click on buttons through my Python Program. I have worked with Perl's Mechanize. I checked google and I found its available for Python too

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

Unfortunately, that link is dead! So, where can I get some Python Mechanize's tutorials and where can I download it from? If not mechanize, what else would you suggest?

like image 381
Bhavani Kannan Avatar asked Dec 17 '22 11:12

Bhavani Kannan


1 Answers

Try this link:

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

If not mechanize then webdriver driving webkit or webunit backend from Python is an option. Or just use the webkit bindings from Python directly.

like image 112
Keith Avatar answered Jan 03 '23 10:01

Keith