Python Package focused on download crypto prices from binance.
View Test
·
Report Bug
·
Request Feature
This is a small package to download the prices of cryptos using Binance API.
This project was builded with the next technologies.
Follow the next steps:
- Setup the project:
python setup.py sdist
- Build the package:
python setup.py build
- Install the package
python setup.py install
- Install the package using pip.
pip install crypto_price
Just need to use pip with git command:
pip install git+https://github.com/estebanvz/crypto_price.git
Get the keys from API Binance:
You can use the package using the api_key and api_secret from binance API.
from decouple import config
from crypto_price import CryptoDataExtractor
API_KEY = config("API_KEY")
API_SECRET = config("API_SECRET")
extractor = CryptoDataExtractor()
extractor.from_binance(api_key=API_KEY,api_secret=API_SECRET)
Distributed under the MIT License. See LICENSE
for more information.
Esteban Vilca - @ds_estebanvz - [email protected]
Project Link: https://github.com/estebanvz/crypto_price