A super simple Freckle/Noko API client implementation.
Project description
A super simple Freckle/Noko API client implementation.
Installation
To get the latest stable release from PyPi
pip install python-freckle-client
To get the latest commit from GitHub
pip install -e git+git://github.com/bitmazk/python-freckle-client.git#egg=freckle_client
Usage
Just import the client, create an instance and call the fetch_json method:
from freckle_client.client import FreckleClient client = FreckleClient('account_name', 'api_token') entries = client.fetch_json( 'entries', query_params={ 'per_page': 1000, 'search[from]': '2015-01-01', 'search[to]': '2015-01-31', 'search[projects]': [1423, 24545, ], } )
Or if you want to use the V2 API:
from freckle_client.client import FreckleClientV2 client = FreckleClientV2('access_token') entries = client.fetch_json( 'entries', query_params={ 'per_page': 1000, 'search[from]': '2015-01-01', 'search[to]': '2015-01-31', 'search[projects]': [1423, 24545, ], } )
Contribute
If you want to contribute to this project, please perform the following steps
# Fork this repository # Clone your fork mkvirtualenv -p python2.7 freckle-client make develop git co -b feature_branch master # Implement your feature and tests git add . && git commit git push -u origin feature_branch # Send us a pull request for your feature branch
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Close
Hashes for python-freckle-client-0.4.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd80e75a667611a06d6aae166a29a31ef903bcf4f0394de48c8a9d7839d53316 |
|
MD5 | 201c12ddbad281640c40e656a4c68a89 |
|
BLAKE2-256 | 0487bd51cf2335f9d64c35f3eb747c854df4c5f4c266e34463e87519ed6db628 |