First of all I want to say I like BeatifulSoup very much and it was
very helpful so far.
Now I have a little problem:
import urllib2
from BeautifulSoup import BeautifulSoup
page = urllib2.urlopen('
http://www.coh-stats.com/factions/british/weapons/leeenfield.html')
soup = BeautifulSoup(page)
soup.prettify()
a=soup.findAll('td')
b = a[8].contents[0]
print b
When I run this code I get an maximum recursion depth exceeded error.
Thank you for your help.