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

Technically, I know how to download pages, and use parsers to parse them. However, I'd like to know if there is an API or a simple XML format that I can use to parse their results.

share|improve this question
Have you tried googling? – user181548 Oct 11 '09 at 7:37

1 Answer

up vote 2 down vote accepted

Seems that Google AJAX Search API will do the trick. There is quite nice playground available so you could try few options online without too much effort.

And it seems that RESTful api is what you are looking for. You simply give a link and get back data in JSON format. It should be quite easy to find library that will turn this answer into some structured object in your favourite language [psychic power mode on] so have a look on built in stuff of Python. [psychic power mode off]

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.