A thin asynchronous Python wrapper for Facebook graph API.
This library requires Python 3.5+
Using pip
$ pip install aiofb
Example
import asyncio
import aiofb
# initialize Graph API
fb = aiofb.GraphAPI(access_token='YOUR_ACCESS_TOKEN')
# Get an event loop
loop = asyncio.get_event_loop()
# Get results
data = loop.run_until_complete(fb.get('/{some-endpoint}'))