Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bzdvdn/zohocrm-api

ZOHOCRM v2 api wrapper
https://github.com/bzdvdn/zohocrm-api

python3 wrapper zohocrm

Last synced: 6 days ago
JSON representation

ZOHOCRM v2 api wrapper

Awesome Lists containing this project

README

        

# ZOHOCRM v2 REST API wrapper

# Installation

Install using `pip`...

pip install zohocrm-api

Or

git clone https://github.com/bzdvdn/zohocrm-api.git

python3 setup.py

# Usage

```python
from zohocrm import ZOHOClient
client = ZOHOClient("", "", "", "") # init client

leads = client.leads.list() # get all leads
lead_statuses = client.leads.list(data={"fields": "Lead_Statuses"})

#update access_token
new_token = client.update_access_token() # save to db
```

# TODO
* full documentation
* examples
* async version
* tests