Metadata-Version: 1.1
Name: yolapy
Version: 0.1.1
Summary: Python client for the Yola API
Home-page: https://github.com/yola/yolapy
Author: Yola
Author-email: engineers@yola.com
License: MIT (Expat)
Description: Yola API Python Client
        ======================
        
        Usage
        -----
        
        .. code:: python
        
            from yolapy.services import Yola
        
        
            yola = Yola(
                url='https://wl.qa.yola.net/',
                auth=('username', 'password'))
        
            yola.create_user(
                email='test@example.com',
                name='Jane',
                surname='Doe',
                partner_id='WL_YOLA',
                preferences={'name': 'value'})
        
        See http://yolapy.readthedocs.org/ for available methods with
        documentation.
        
        Development
        -----------
        
        To lint your code automatically when you make changes::
        
            $ cp tube.py.sample tube.py
            $ stir
        
        
        0.1.1 (2015-09-11)
        ------------------
        
        * Update installation requirements
        
        
        0.1.0 (2015-09-02)
        ------------------
        
        * Initial version with `Yola` wrapper for the Yola API
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
