-
-
Save caironm/b6581cabf929f8e880732c36eb9beb5d to your computer and use it in GitHub Desktop.
Python 3.x Facebook Profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib.request | |
import json | |
from pprint import pprint | |
url = 'https://graph.facebook.com/fmasanori' | |
resp = urllib.request.urlopen(url).read() | |
data = json.loads(resp.decode('utf-8')) | |
pprint (data) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment