Closed ffaggiani closed 8 years ago
Try doing something like this. Br.links() is returning a tuple if used in a loop.
for i in br.links(): print i
You'll have tuples instead of a list. You can parse it and make it a list from it.
OK, done. Now i can see the links.
Thanks!
Hi, my problem is that the function br.links() is returning : "generator object call at 0x12f1500" but if print br.response().read() i can see html code well formed with links inside.
I have tried to build a list from br.links() but its not working...
Any help?
Thanks.
Fab