django-yandex-direct

Simple wrapper for the Yandex.Direct API


Keywords
django, yandex, direct
License
Other
Install
pip install django-yandex-direct==1.0

Documentation

Django-Yandex-Direct

Installation and usage

  1. Using pip:
$  sudo pip install django-yandex-direct
  1. Add to settings your credentials:
YANDEX_DIRECT_LOGIN = ''
YANDEX_DIRECT_APP_ID = ''
YANDEX_DIRECT_TOKEN = ''
YANDEX_DIRECT_SANDBOX = True
  1. Enjoy
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'))