Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 387 Bytes

File metadata and controls

22 lines (13 loc) · 387 Bytes

Python Library for Zoho CRM API

Install

pip install zohocrm

or from source:

git clone git@github.com:Blitzen/zohocrm.git

Overview

from zohocrm import API

api = API(auth_token="Your Auth Token")
api.get_records()
# {'Leads': {'row': {'no': '1', 'FL': [{'val': 'LEADID', ...

Testings

pip install -r test_requirements.txt
python tests.py