Reputation: 191169
I need to retrieve some info from web. For example, I can visit weather.com to search my zip code to get HTML file that contains the temperature or something. I need to make a python script to do this automatically.
I think there are two ways to do this.
And these are my questions.
If you can give me some examples, that would be much better.
Upvotes: 0
Views: 93
Reputation: 175705
The wget part is definitely unnecessary, urllib and httplib both let you download a web page; their doc pages have examples
Upvotes: 2