I'm trying to log into investors.com with a python script to run some of their fundamental screens or scrape some data from the site.
However, if all I do is this:
browser = mechanize.Browser()
data = browser.open( "http://www.investors.com")
The call never returns on my system. Sparing me any comments on the quality of the web site, can someone recommend methods for interacting with web sites in an automated fashion in some high level language?
However, if all I do is this:
browser = mechanize.Browser()
data = browser.open( "http://www.investors.com")
The call never returns on my system. Sparing me any comments on the quality of the web site, can someone recommend methods for interacting with web sites in an automated fashion in some high level language?
