Could someone point me to some?
+3
A:
SeleniumRC with selenium.py
is an alternative (and one of the few workable options if the pages you need to scrape have an important, "structural" role for Javascript operations, esp. AJAX-y ones, since Mechanize doesn't execute the Javascript on the pages it's scraping).
Alex Martelli
2010-04-18 15:27:38
+2
A:
For scraping and form handling you can use lxml.html (it doesn't automate fetching and cookies though).
scrapy is a library specifically for scraping.
Ian Bicking
2010-04-18 16:24:45
A:
I've used twill for a lot of my testing needs. It works as a stand-alone language for "web browsing" or as a library from Python. It actually uses Mechanize under the hood, so I'm not sure if it will meet your needs -- are you encountering problems intrinsic to Mechanize, or would you benefit from a high level layer?
ars
2010-04-19 05:38:57
A:
Gunslinger_
2010-10-03 13:11:48