Hi all,
I'm trying to use Python's urllib to get a Facebook profile page. I get the following error:
IOError: [Errno socket error] [Errno 10035] A non-blocking socket operation could not be completed immediately
Here's my code:
import urllib
member_profile_text = urllib.urlopen('http://www.facebook.com/profile.php?id=1073109649').read()
I need to get this working soon, so any help would be extremely appreciated.
Thanks so much!
Benjamin