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+, 3.4+

  • requests

Установка

$ pip install python_justclick

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

Описание

Python JustClick API

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

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

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_justclick-0.1.3.tar.gz (5.0 kB view details)

Uploaded Source

File details

Details for the file python_justclick-0.1.3.tar.gz.

File metadata

File hashes

Hashes for python_justclick-0.1.3.tar.gz
Algorithm Hash digest
SHA256 975c85d62fd8865149f73a08df1892b1915aff4a1d80daae493dd97cfe20e9ef
MD5 a4234ae9c64b034d42d8dd4f251bed04
BLAKE2b-256 5c68805c6ddd34daa030444db7f1b545b8a18469675e239aab4d71a5d080f546

See more details on using hashes here.

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