Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bzdvdn/zohocrm-api
- Owner: bzdvdn
- Created: 2019-08-12T19:11:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-25T07:09:40.000Z (over 5 years ago)
- Last Synced: 2024-12-21T22:20:04.515Z (14 days ago)
- Topics: python3, wrapper, zohocrm
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 clientleads = 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