Facebook Python SDK
Project description
Facebook SDK Python
Facebook SDK Python is a python based implementation of Facebook PHP SDK
Installation
To install Facebook SDK Python, simply:
$ pip install facebook-py-sdk
Usage
Retrieve User Profile
from facebook_sdk.exceptions import FacebookResponseException
from facebook_sdk.facebook import Facebook
facebook = Facebook(
app_id='{app_id}',
app_secret='{app_secret}',
default_graph_version='v2.12',
)
facebook.set_default_access_token(access_token='{access_token}')
try:
response = facebook.get(endpoint='/me?fields=id,name')
except FacebookResponseException as e:
print(e.message)
else:
print('User id: %(name)s' % {'name': response.json_body.get('id')})
print('User name: %(name)s' % {'name': response.json_body.get('name')})
Batch Upload Files
from facebook_sdk.exceptions import FacebookResponseException
from facebook_sdk.facebook import Facebook
facebook = Facebook(
app_id='{app_id}',
app_secret='{app_secret}',
)
facebook.set_default_access_token(access_token='{access_token}')
batch = {
'photo-one': facebook.request(
endpoint='/me/photos',
params={
'message': 'Foo photo.',
'source': facebook.file_to_upload('path/to/foo.jpg'),
},
),
'photo-two': facebook.request(
endpoint='/me/photos',
params={
'message': 'Bar photo.',
'source': facebook.file_to_upload('path/to/bar.jpg'),
},
),
'photo-three': facebook.request(
endpoint='/me/photos',
params={
'message': 'Other photo.',
'source': facebook.file_to_upload('path/to/other.jpg'),
},
)
}
try:
responses = facebook.send_batch_request(requests=batch)
except FacebookResponseException as e:
print(e.message)
Dependencies
Dependencies that to use the application:
Contributing
Please use github model by forking the repository and making Pull Requests.
Running tests
➜ facebook-python-sdk $ pip install -e .[testing]
➜ facebook-python-sdk $ pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
facebook-py-sdk-1.2.1.tar.gz
(11.5 kB
view details)
File details
Details for the file facebook-py-sdk-1.2.1.tar.gz
.
File metadata
- Download URL: facebook-py-sdk-1.2.1.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 079ae6c5d3806b8644d861abd5dd2a40f2e43ee920b3a1bd2b488e2ef8caa707 |
|
MD5 | 7ed40303bfbfa7be9547652d05b0c1b9 |
|
BLAKE2b-256 | 8c9111917003a1802883f608bd4ea3a62247888ef0ca8a2124d1395a42bdbfaa |