├── .gitignore ├── LICENSE ├── README.rst ├── cryptowatch ├── __init__.py ├── api_client.py └── exceptions.py ├── docs ├── Makefile ├── conf.py ├── cryptowatch.rst ├── exceptions.rst ├── general.rst ├── index.rst └── overview.rst ├── requirements.txt ├── requirements_test.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py └── test_api_client.py └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/README.rst -------------------------------------------------------------------------------- /cryptowatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/cryptowatch/__init__.py -------------------------------------------------------------------------------- /cryptowatch/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/cryptowatch/api_client.py -------------------------------------------------------------------------------- /cryptowatch/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/cryptowatch/exceptions.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/cryptowatch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/docs/cryptowatch.rst -------------------------------------------------------------------------------- /docs/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/docs/exceptions.rst -------------------------------------------------------------------------------- /docs/general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/docs/general.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uoshvis/python-cryptowatch/HEAD/tests/test_api_client.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.0.1 --------------------------------------------------------------------------------