I am trying to read some data from a python module from a web.
I manage to read, however having some difficulty in parsing this data and getting the required information.
My code is below. Any help is appreciated.
#!/usr/bin/python2.7 -tt
import urllib
import urllib2
def Connect2Web():
aResp = urllib2.urlopen("https://uniservices1.uobgroup.com/secure/online_rates/gold_and_silver_prices.jsp");
web_pg = aResp.read();
print web_pg
#Define a main() function that prints a litte greeting
def main():
Connect2Web()
# This is the standard boilerplate that calls the maun function.
if __name__ == '__main__':
main()
When I print this web page I get the whole web page printed.
I want to extract some information from it, (e.g. "SILVER PASSBOOK ACCOUNT" and get the rate from it), I am having some difficulties in parsing this html document.
It’s possible to use regexps to get required data:
Don’t forget to
re.compilethe pattern if you are doing your matches in loop.