Skip to content
/ facepy Public
forked from jgorset/facepy

Facepy is a client for Facebook's Graph API that doesn't suck.

License

Notifications You must be signed in to change notification settings

reikje/facepy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Facepy

About

Facepy is an API client for Facebook's Graph API that doesn't suck.

Usage

from facepy import GraphAPI

# Initialize the Graph API with a valid access token (optional,
# but will allow you to do all sorts of fun stuff).
graph = GraphAPI(oauth_access_token)

# Get an object from the Graph API.
graph.get('johannes.gorset')

# Get a list of objects from the Graph API.
graph.get('johannes.gorset/friends')

# Post an item to the Graph API.
graph.post(
    path = 'johannes.gorset/feed',
    message = 'Why, hello.'
)

# Delete an item from the Graph API.
graph.delete('481213268764')

# Search the Graph API for posts describing the meaning of life.
graph.search(
    term = 'the meaning of life',
    type = 'post'
)

Documentation

See Facebook's Graph API documentation.

Installation

$ pip install facepy

Dependencies

About

Facepy is a client for Facebook's Graph API that doesn't suck.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%