I'm trying to read a number from a website into a variable. The source code where the number is looks like this:
<tr bgcolor="#ccffff"><td>N_300_0</td><td>5918.720</td></tr>
The website will always say N_300_0 but the number will change.
So far I have:
link = urllib2.urlopen("http://www.example.com").read()
matches = re.findall('N_300_0', link);
number = ....
How do I get the number into the variable?