Idk why it is returning this: [' '] but it is and it makes no sense.
webpage=urlopen('http://www.sbrforum.com/betting-odds/ncaa-basketball/?date=20120102').read()
findTeamName= re.compile('"team-name".*>(.*)</span></div')
find_it = re.findall(findTeamName,webpage)
print find_it
[' ']
I've checked tutorials and the pages they scrape work fine when I do them. So what's up with this?
webpage=urlopen('http://www.sbrforum.com/betting-odds/ncaa-basketball/?date=20120102').read()
findTeamName= re.compile('"team-name".*>(.*)</span></div')
find_it = re.findall(findTeamName,webpage)
print find_it
[' ']
I've checked tutorials and the pages they scrape work fine when I do them. So what's up with this?