Skip to main content

simple facebook parsing

Project description

travis-img 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zuckup-0.1.0.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

zuckup-0.1.0.macosx-10.9-intel.exe (70.8 kB view details)

Uploaded Source

File details

Details for the file zuckup-0.1.0.tar.gz.

File metadata

  • Download URL: zuckup-0.1.0.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for zuckup-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e98cb4c83227de090fe42d0e5caaac6a4c3f8fede8c12da8c5447e8f7857a67e
MD5 ade81de63fe1d1ab927161b0c311ee82
BLAKE2b-256 c2b07cc35fd96c0c93e9080bddeaa13088c55e2cfd28433775195121d4caa591

See more details on using hashes here.

File details

Details for the file zuckup-0.1.0.macosx-10.9-intel.exe.

File metadata

File hashes

Hashes for zuckup-0.1.0.macosx-10.9-intel.exe
Algorithm Hash digest
SHA256 cddbe56fef38873aac557c50eedfc8c8bf42dd9c8abd27fa9add499d87c7b16c
MD5 d40ed97d667a4c2986cade13efed4c5b
BLAKE2b-256 5b31ac8eb61ddc949d7c6330673ee3cde9b83ea555ec71d8ea956161fadea139

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page