Skip to main content

Python Bitrix24 API

Project description

https://github.com/moshkov/python_bitrix24

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

Зависимости

  • Python 2.7+, 3.4+

  • requests

Установка

$ pip install python_bitrix24

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

Описание

Python Bitrix24 API

Позволяет работать с API Bitrix24. В текущей версии реализовано только добавление лида.

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

from python_bitrix24.bitrix24 import Bitrix24Connection

bitrix24Connection = Bitrix24Connection('YOU_BITRIX24_API_LOGIN', 'YOU_BITRIX24_API_PASSWORD', 'YOU_BITRIX24_API_MAIN_USER_NAME')

b24_result = bitrix24Connection.add_lead('My dear Lead, {
    'NAME': 'Vasya Pupkin',
    'EMAIL_OTHER': 'lead@email.local',
    'UF_CRM_123456789': 'additional information',
    'UF_CRM_123456788': 'additional information 2',
})

if b24_result.get('error', '') == '201' == 0:
    print 'success'

...

Для Django (если в настройках заданы BITRIX24_API_LOGIN, BITRIX24_API_PASSWORD и BITRIX24_API_MAIN_USER_NAME):

from python_bitrix24.python_bitrix24_django import bitrix24Connection

b24_result = bitrix24Connection.add_lead('My dear Lead, {
    'NAME': 'Vasya Pupkin',
    'EMAIL_OTHER': 'lead@email.local',
    'UF_CRM_123456789': 'additional information',
    'UF_CRM_123456788': 'additional information 2',
})

if b24_result.get('error', '') == '201' == 0:
    print 'success'

...

...

TODO

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

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

  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_bitrix24-0.1.2.tar.gz (4.7 kB view details)

Uploaded Source

File details

Details for the file python_bitrix24-0.1.2.tar.gz.

File metadata

File hashes

Hashes for python_bitrix24-0.1.2.tar.gz
Algorithm Hash digest
SHA256 8d06c7924ee99c0c987883cc6fd0375233f46f742670ee49be9b43a2efa0111c
MD5 a113c948031271e8817cef7f3516a9a8
BLAKE2b-256 d3d55962749b9e509893a796314b6f50409b40c5cbe791f62b16ba6d2233c273

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