well, I have run into a strange issue. the gist of my code goes as follows:
1. go to specific page.
2. get some links and tittles
3. go to the first links page, i.e( page = urlopen(links).read() )
4. not attempt to find a tag in that page, i.e ( index=page.find('<div class="blah_di_blah">') )
if I throw a print after 3, the source prints. So why is 4 failing to return any index aside from -1.
ps. I looked to the tag in the source and all that jazz, no typos, definite match, ect...
The only thing I could possible think of is that page is somehow not a string? But I do not know how that could be? Any help would be appreciated.