exchangedataset-python is a library for Python 3 to allow easy integration of the Exchangedataset service.
Exchangedataset is the historical cryptocurrency market data streaming service.
- Python 3.8 or more
- Pipenv
MIT License
This library is free to distribute and modify under the condition that you include a license notice.
You can install the package by pip3 command:
pip3 install exchangedataset-pythonThis will install the latest and available version of this library.
As shown above, its package name in PyPi is exchangedataset-python.
The module is named exdpy.
Please note that it is different from the package name.
import exdpyThis information is for the developer of this library.
Thank you for your contribution.
This project utilizes Pipenv.
It is a package managing and virtual environment utility.
To fetch all dependencies (including development dependencies), run the command below:
pipenv install --devThis will install all dependencies needed to run exchangedataset-python.
Unit test files are under tests/ directory.
All tests can be conducted by running the command below:
pipenv run pytestAPI Documentation can be generated by running the below command in sphinx directory:
pipenv run makeThe command below will package all python files under the exdpy directory and upload it to PyPi.
pipenv run setup.py upload