https://github.com/faisaltheparttimecoder/api-to-excel
Read Pivotal Tracker & Zendesk Help Center API and write to excel
https://github.com/faisaltheparttimecoder/api-to-excel
Last synced: 11 months ago
JSON representation
Read Pivotal Tracker & Zendesk Help Center API and write to excel
- Host: GitHub
- URL: https://github.com/faisaltheparttimecoder/api-to-excel
- Owner: faisaltheparttimecoder
- License: mit
- Created: 2018-02-05T17:16:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T20:03:23.000Z (over 3 years ago)
- Last Synced: 2025-06-08T17:08:36.390Z (12 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Introduction [](https://www.python.org/downloads/release/python-355/) [](https://github.com/faisaltheparttimecoder/DataScroller/blob/master/LICENSE)
Basic python script that uses the search API of pivotal tracker and zendesk help center to pull data and store them to excel.
# How to use it
+ Install Python 3.5
+ Install all the requirements using ```pip install -r requirements.txt```
+ To pull data from tracker use the command like below
```
python data_scroller.py tracker -p -q -t
```
+ To pull data from zendesk use the command like below
```
python data_scroller.py zendesk -u -p -q -e
```
# Example
### Tracker
+ To pull all data with label 2.0
```
python data_scroller.py tracker -p -q label:2.0 -t
```
+ To pull data for all stories created since 11/16/2017
```
python data_scroller.py tracker -p -q created_since:11/16/2017 -t
```
### Zendesk
+ To pull all data with keyword 2.0
```
python data_scroller.py zendesk -u -p -q 2.0 -e
```
+ To pull all data with keyword 2.0 which is updated after 2014-01-01 and before 2014-02-01
```
python data_scroller.py zendesk -u -p -q "2.0&updated_after=2014-01-01&updated_before=2014-02-01" -e
```
# More information
+ For more information on Zendesk search keywords, refer to the [link](https://developer.zendesk.com/rest_api/docs/help_center/search)
+ For more information on Tracker search keywords, refer to the [link](https://www.pivotaltracker.com/help/articles/advanced_search/)