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')

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

Paginate

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.0.5.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

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

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for zuckup-0.0.5.tar.gz
Algorithm Hash digest
SHA256 44c01ffeaa0feaa1da537a1c96d15d4826ea5797a1565cd5e23421cabeef3bfb
MD5 b65fb31913d332c61a455faf7cae2992
BLAKE2b-256 2b81c065339aec4c9802427fbe52d8c042398d1ebfc684a1a9dc7c23e0cb0f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zuckup-0.0.5.macosx-10.9-intel.exe
Algorithm Hash digest
SHA256 32a70bbe445a5def0853c58f8b0457dcb2a53e1fffd6ede4385f8547d6fc512d
MD5 ed732e29430df957807f8f8f056e84e4
BLAKE2b-256 df7c3f3b0489aa193e219d2af211d2bd8c70025c6e649d874f260df23a015e96

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