https://github.com/andrewrgarcia/cointables
https://github.com/andrewrgarcia/cointables
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andrewrgarcia/cointables
- Owner: andrewrgarcia
- License: mit
- Created: 2023-04-16T05:34:56.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-22T19:31:41.000Z (about 2 years ago)
- Last Synced: 2025-01-16T15:26:55.894Z (4 months ago)
- Language: Python
- Homepage: https://cointables.readthedocs.io
- Size: 534 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cointables
Cointables is a Python package that provides a simple and convenient framework to extract historical Open-High-Low-Close (OHLC) data for various cryptocurrencies from Binance. Cointables supports different sampling methods and GET approaches, allowing users to customize their data extraction process. This is a fork from [bitcharts](https://github.com/andrewrgarcia/bitcharts)
## Installation
Cointables can be installed using pip:
```
pip install cointables
```It is recommended you run voxelmap using a `virtualenv` virtual environment. To do so, follow the below simple protocol to create the virtual environment, run it, and install the package there:
```
virtualenv venv
source venv/bin/activate
pip install cointables
```To exit the virtual environment, simply type deactivate. To access it at any other time again, enter with the above source `venv...` command.