simple facebook parsing
Project description
zuckup ====== simple facebook parsing
Install
pip install zuckup
Test
Requires nose
nosetests
Usage
zuckup comes with three utilities: insights, page, and page_stats
Insights
NOTE: To get facebook insights data you must first have an access token that has necessary credentials to view this data.
import zuckup
for post_stats in zuckup.insights(page_id='authenticated_page'):
print post_stats
Page Posts
import zuckup
for post in zuckup.page(page_id='nytimes')
print post
Page Stats
import zuckup
page_stats = zuckup.page_stats(page_id='nytimes')
print page_stats
Authentication
zuckup will automatically connect to the facebook api via facepy if you have FB_APP_ID and FB_APP_SECRET set as environmental variables.
Alternatively, you can connect beforehand and pass in this connection via the kwarg conn:
import zuckup
conn = zuckup.connect(app_id='12345', app_secret='678910')
page_stats = zuckup.page_stats(page_id='nytimes', conn=conn)
print page_stats
Finally, if you want to connect with just an access token, say one acquired from a user authenticating to your app, pass in access_token to any of the methods:
import zuckup
page_stats = zuckup.page_stats(page_id='nytimes', access_token='a-users-access-token')
print page_stats
Pagination
paginate through results using paginate with insights and page:
for post in zuckup.page(page_id='nytimes', paginate=True) print post
Concurrency
optional concurrency for insights and page via gevent:
import zuckup for post in zuckup.page(page_id='nytimes', concurrent=True) print post
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
Built Distribution
File details
Details for the file zuckup-0.0.6.tar.gz
.
File metadata
- Download URL: zuckup-0.0.6.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05ef0917efdbddb1f5903303dda857d9a19c1ac72ae8f30106a2707a6110c257 |
|
MD5 | 68e071e1338bf7a3129ffbf909abdb56 |
|
BLAKE2b-256 | d91a56afc92d7d780fa674a4bc1b64ced5df2b9e78b8b2d14ee97ef22072ea01 |
File details
Details for the file zuckup-0.0.6.macosx-10.9-intel.exe
.
File metadata
- Download URL: zuckup-0.0.6.macosx-10.9-intel.exe
- Upload date:
- Size: 70.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c10e6f6c485209f1ef1bdbbfc8195f9804b261cbd09738faa8f837cd472d1557 |
|
MD5 | 44ec82152b229225a33416b9951a8257 |
|
BLAKE2b-256 | eea376504d5253068af91d92598b12c4ab55defc233d5ce70a3800536c05e923 |