Can I gather intelligent data , HTML scraping using python? I have no knowledge of it , so I would like to get some idea.
4 Answers
You certainly can - I developed this library in Python for my web scraping work.
A good parsing library is lxml.
If you are new to Python you may want to work through this ebook first.
3 Comments
Tilak Madichetti
The Links Are Dead .
SmallChess
@TilakMadichetti No they are not.
Tilak Madichetti
oops sorry ! there was a problem with my network that time . My bad :)
Try using urllib2 and Beautiful Soup.
urllib2 is useful for requesting URLs programmatically. It's part of the standard library: http://docs.python.org/library/urllib2
Beautiful Soup is good for mining HTML/XML and can be found here: http://pypi.python.org/pypi/BeautifulSoup