I am working on a project that requires retrieving information from a webpage. Since the webpage uses javascript redirects, my friend recommended I use mechanize in Python. (Can anyone confirm that mechanize can handle javascript redirects or suggest a better HTML parser?) Anyway, I installed easy_install through the Python script and then ran "easy_install mechanize" in the command prompt successfully. However, when I do:
import mechanize
I get the following error:
Unresolved import: mechanize
I read that it might be because I need to add my scripts folder to the environment path, which I think I have. As a beginner to HTML parsing I find the mechanize installation instructions and troubleshooting page really complicated so any help would be appreciated!