├── .gitignore ├── LICENSE ├── README.md ├── cryptoapi ├── __init__.py ├── base │ ├── __init__.py │ ├── errors.py │ └── exchange.py ├── bitfinex.py ├── bitvavo.py ├── coinbasepro.py └── kraken.py ├── requirements.txt ├── setup.py └── test ├── __init__.py ├── helpers.py ├── test_bitfinex.py ├── test_bitvavo.py ├── test_coinbasepro.py ├── test_exchange.py └── test_kraken.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/README.md -------------------------------------------------------------------------------- /cryptoapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/cryptoapi/__init__.py -------------------------------------------------------------------------------- /cryptoapi/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/cryptoapi/base/__init__.py -------------------------------------------------------------------------------- /cryptoapi/base/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/cryptoapi/base/errors.py -------------------------------------------------------------------------------- /cryptoapi/base/exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/cryptoapi/base/exchange.py -------------------------------------------------------------------------------- /cryptoapi/bitfinex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/cryptoapi/bitfinex.py -------------------------------------------------------------------------------- /cryptoapi/bitvavo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/cryptoapi/bitvavo.py -------------------------------------------------------------------------------- /cryptoapi/coinbasepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/cryptoapi/coinbasepro.py -------------------------------------------------------------------------------- /cryptoapi/kraken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/cryptoapi/kraken.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/test/helpers.py -------------------------------------------------------------------------------- /test/test_bitfinex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/test/test_bitfinex.py -------------------------------------------------------------------------------- /test/test_bitvavo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/test/test_bitvavo.py -------------------------------------------------------------------------------- /test/test_coinbasepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/test/test_coinbasepro.py -------------------------------------------------------------------------------- /test/test_exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/test/test_exchange.py -------------------------------------------------------------------------------- /test/test_kraken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshklop/cryptoapi/HEAD/test/test_kraken.py --------------------------------------------------------------------------------