Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Aug 20, 2025. It is now read-only.
/python-ctapiPublic archive

Python Interface for CoinTracking.info API

License

NotificationsYou must be signed in to change notification settings

tehtbl/python-ctapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python interface forCoinTracking.info API.

I am not associated to cointracking.info -- use at your own risk!

Requirements:

  • requests

Install

python setup.py install

pip install python-ctapi

How to Use

This is an example about how you can use the library

#!/usr/bin/env python2from ctapi import CTAPIapi_key = <YourAPIKey>api_secret = <YourAPISecret># api = CTAPI(api_key, api_secret, debug=True)api = CTAPI(api_key, api_secret)trades = api.getTrades()if trades['success']:    for t in trades['result']:        print trades['result'][t]else:    print "got no orders"print api.getBalance()print api.getHistoricalSummary()print api.getHistoricalCurrency()print api.getGroupedBalance()print api.getGains()

Running Tests

be aware of the API requests limit of 20 req/h

venv/bin/python -m unittest -v ctapi.test.ctapi_tests

Contribute

Do you have an idea or found a bug in python-ctapi? Please file an issue and make a PR! :)

Support Me

If you like the API and wanna support its developer, use the following referral link when registering at cointracking:https://cointracking.info?ref=T161519

About

Python Interface for CoinTracking.info API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors6

Languages


[8]ページ先頭

©2009-2025 Movatter.jp