Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm attempting to write a script for myself that will log in to a specific website and use the website's search function. The script will then write the list of search results to standard output, where I will then select one of the results and do various actions on the page. I'm very lost as where to start with this. I've already attempted cURL and python's various web libraries, but I haven't been able to come up with anything that works.

share|improve this question
2  
This is highly dependent on the web site, and whether that web site wants to prevent this behavior. Most major sites either actively discourage this or provide APIs to do it relatively easily and securely. – mjhm Sep 12 '11 at 3:26

1 Answer

up vote 3 down vote accepted

Assuming that website doesn't provide a search API, you need to do automated scraping, in which case curl etc. are way too low-level and error-prone. Here are are some widely-used recommendations:

For automation, link-following, formfilling etc., I strongly recommend twill API, which is an automation layer which sits on top of mechanize. twill has a bunch of useful extension modules. As just one example, for filling in authentication forms, twill.formfill multi_sub is great.

For manual scraping, BeautifulSoup, but twill probably already does what you need (scrapes all the links, forms etc.).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.