Metadata-Version: 2.1
Name: cointables
Version: 0.1.2
Summary: 
Author: andrewrgarcia
Author-email: garcia.gtr@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: datetime (>=5.1,<6.0)
Requires-Dist: numpy (>=1.24.2,<2.0.0)
Requires-Dist: pandas (>=2.0.0,<3.0.0)
Description-Content-Type: text/markdown

# 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.

