https://github.com/marcus-luck/zohoreader
Reads data from zoho projects api
https://github.com/marcus-luck/zohoreader
zoho zoho-api zoho-projects zoho-timesheet
Last synced: 2 months ago
JSON representation
Reads data from zoho projects api
- Host: GitHub
- URL: https://github.com/marcus-luck/zohoreader
- Owner: marcus-luck
- License: mit
- Created: 2018-05-07T16:36:25.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-10T17:07:53.000Z (almost 8 years ago)
- Last Synced: 2025-12-08T22:13:32.338Z (2 months ago)
- Topics: zoho, zoho-api, zoho-projects, zoho-timesheet
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zohoreader
This project is intended to create an easy way to get all timelogs from zoho projects API.
### Information
The package returns a list of all timelogs. Can easily be converted to a Pandas DataFrame.
### Using
Import the package
```
from zohoreader import ZohoReader
```
Use api key from wunderground.
```
zr = ZohoReader('authtoken', 'portal_id')
```
Get list of all all projects
```
project_list = zr.get_projects_list()
```
Get all Users
```
users_list = wr.get_users_list(self)
```
Get timelogs from project
```
output = zr.get_all_project_timelogs('project_id', 'project_name', 'created_date')
```
Get all timelogs from all projects
```
timelogs = zr.get_all_timelogs(projects_list)
```
### License
This project is licensed under the MIT License