Skip to main content

Python JustClick API

Project description

https://github.com/moshkov/python_justclick

https://img.shields.io/pypi/v/python_justclick.svg https://img.shields.io/pypi/dm/python_justclick.svg https://img.shields.io/pypi/l/python_justclick.svg

Зависимости

  • Python 2.7+

  • requests

Установка

$ pip install python_justclick

Если используется Django, то в настройках проекта можно указать JUSTCLICK_USERNAME и JUSTCLICK_API_KEY.

Описание

Python JustClick API

Позволяет работать с API JustClick. В текущей версии реализовано только добавление подписчика в группы (AddLeadToGroup).

Использование

from python_justclick.justclick import JustClickConnection

justClickConnection = JustClickConnection('YOU_JUSTCLICK_USERNAME', 'YOU_JUSTCLICK_API_KEY')

result = justClickConnection.add_lead_to_group(['group1', 'group2'], 'lead@email.local', {
    "doneurl2": "https://your-site.local/success",
    "lead_name": "Vasya Pupkin",
})

if result['error_code'] == 0:
    print 'success'

...

Для Django (если в настройках заданы JUSTCLICK_USERNAME и JUSTCLICK_API_KEY):

from python_justclick.python_justclick_django import justClickConnection

result = justClickConnection.add_lead_to_group(['group1', 'group2'], 'lead@email.local', {
    "doneurl2": "https://your-site.local/success",
    "lead_name": "Vasya Pupkin",
})

if result['error_code'] == 0:
    return HttpResponseRedirect(reverse('thanks'))

...

TODO

  1. Проверка отвера API на корректность

  2. Остальной функционал API JustClick

  3. Тесты

  4. Документация

Project details


Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page