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-sdk-python
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.5',
)
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 name: %(name)s' % {'name': response.json_body.get('id')})
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 nose2
➜ facebook-python-sdk $ nosetests
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-0.1.3.tar.gz
(10.4 kB
view details)
File details
Details for the file facebook-py-sdk-0.1.3.tar.gz
.
File metadata
- Download URL: facebook-py-sdk-0.1.3.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb1bfdc9afc6a634dd389a929a8375e9c5ca369f704c6f77098ae36ff89a7a6c |
|
MD5 | ee216b701cf5903c233aa8dfef6415f6 |
|
BLAKE2b-256 | 74f824c6b25042828c9887e973d5fb51eeb30da51a87188acfda8b99ea072d1a |