I would like to read some of the information from this website: http://www.federalreserve.gov/monetarypolicy/beigebook/beigebook201301.htm
I have the following code, and it properly reads the HTML source
def Connect2Web():
aResp = urllib2.urlopen("http://www.federalreserve.gov/monetarypolicy/" +
"beigebook/beigebook201301.htm")
web_pg = aResp.read()
print web_pg
I am lost on how to parse this information, however, because most HTML parsers require a file or the original website, whereas I already have the information I need in a String.