Metadata-Version: 1.1
Name: django-yandex-direct
Version: 1.0
Summary: Simple wrapper for the Yandex.Direct API
Home-page: https://github.com/LPgenerator/django-yandex-direct
Author: GoTLiuM InSPiRiT
Author-email: gotlium@gmail.com
License: UNKNOWN
Description: Django-Yandex-Direct
        ====================
        
        Installation and usage
        ----------------------
        1. Using pip:
        
        .. code-block:: bash
        
            $  sudo pip install django-yandex-direct
        
        2. Add to settings your credentials:
        
        .. code-block:: python
        
            YANDEX_DIRECT_LOGIN = ''
            YANDEX_DIRECT_APP_ID = ''
            YANDEX_DIRECT_TOKEN = ''
            YANDEX_DIRECT_SANDBOX = True
        
        3. Enjoy
        
        .. code-block:: python
        
            from yandex_direct import api
            from pprint import pprint
        
            # Pythonic style
            pprint(api.get_regions().get('data'))
        
            # Native API style
            pprint(api.PingAPI().get('data'))
        
Keywords: django yandex direct
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
