├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── bittrex ├── __init__.py ├── bittrex.py └── test │ ├── __init__.py │ └── bittrex_tests.py ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericsomdahl/python-bittrex/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericsomdahl/python-bittrex/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericsomdahl/python-bittrex/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericsomdahl/python-bittrex/HEAD/README.md -------------------------------------------------------------------------------- /bittrex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericsomdahl/python-bittrex/HEAD/bittrex/__init__.py -------------------------------------------------------------------------------- /bittrex/bittrex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericsomdahl/python-bittrex/HEAD/bittrex/bittrex.py -------------------------------------------------------------------------------- /bittrex/test/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'eric' 2 | -------------------------------------------------------------------------------- /bittrex/test/bittrex_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericsomdahl/python-bittrex/HEAD/bittrex/test/bittrex_tests.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | 4 | [metadata] 5 | description-file = README.md 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericsomdahl/python-bittrex/HEAD/setup.py --------------------------------------------------------------------------------