I am very new to Python (and web scraping). Let me ask you a question.
Many website actually do not report its specific URLs in Firefox or other browsers. For example, Social Security Admin shows popular baby names with ranks (since 1880), but the url does not change when I change the year from 1880 to 1881. It is constantly,
http://www.ssa.gov/cgi-bin/popularnames.cgi
Because I don't know the specific URL, I could not download the webpage using urllib.
In this page source, it includes:
<input type="text" name="year" id="yob" size="4" value="1880">
So presumably, if I can control this "year" value (like, "1881" or "1991"), I can deal with this problem. Am I right? I still don't know how to do it.
Can anybody tell me the solution for this please?
If you know some websites that may help my study, please let me know.
THANKS!