Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 580 Bytes

README.rst

File metadata and controls

32 lines (21 loc) · 580 Bytes

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'))