Metadata-Version: 1.1
Name: aiofb
Version: 0.1.4
Summary: Asyncio Python client for Facebook API
Home-page: https://github.com/tehamalab/aiofb
Author: Tehamalab
Author-email: developers@tehamalab.com
License: BSD license
Description: =====
        aiofb
        =====
        
        .. image:: https://img.shields.io/pypi/v/aiofb.svg
                :target: https://pypi.python.org/pypi/aiofb
        
        .. image:: https://img.shields.io/travis/tehamalab/aiofb.svg
                :target: https://travis-ci.org/tehamalab/aiofb
        
        .. image:: https://readthedocs.org/projects/aiofb/badge/?version=latest
                :target: https://aiofb.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        A thin asynchronous Python wrapper for Facebook graph API.
        
        This library requires Python 3.5+
        
        Installation
        -------------
        Using pip
        
        .. code-block:: console
        
            $ pip install aiofb
        
        
        Basic usage
        ------------
        Example
        
        .. code-block:: python
        
            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}'))
        
        
        =======
        History
        =======
        
        0.1.0 (2018-04-06)
        ------------------
        
        * Packege created.
        
        
        0.1.1 (2018-05-17)
        ------------------
        
        * Clean up
        * First release on PyPI
        
        
        0.1.2 (2018-10-02)
        ------------------
        * Return raw python data decoded from json response instead of ``aiohttp.ClientResponse`` object.
        
        0.1.3 (2019-01-11)
        ------------------
        * Change default Messenger user profile fields to name,first_name,last_name and profile_pic
          to reflect new Messenger API policy.
        
        0.1.3 (2019-02-10)
        ------------------
        * Add method for taking Messebger thread control (``messenger.take_thread_control(data, session=None))``)
        
Keywords: aiofb
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
