Metadata-Version: 2.1
Name: ValeraLib
Version: 1.2.0
Summary: The library goes brrrrrr
Keywords: The greatest package to ever exist
Author-Email: Valera <v79166789533@gmail.com>
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Homepage, https://github.com/Valera6/ValeraLib
Requires-Python: >=3.6
Requires-Dist: numpy<2.0.0,>=1.24.3
Requires-Dist: pandas<2.0.0,>=1.5.3
Requires-Dist: playsound<2.0.0,>=1.2.2
Requires-Dist: plotly<6.0.0,>=5.14.1
Requires-Dist: requests<3.0.0,>=2.31.0
Requires-Dist: telebot
Description-Content-Type: text/markdown

# Example:

```python
from ValeraLib import Binance, DataScience as ds
from ValeraLib.utils.DuckTypes import *

b = Binance()
sk:SymbolsKlines = b.CollectKlinesForSymbols('perp', time.time()-24*60*60, time.time(), '5m')
k:Klines = b.GetKlines('BTCUSDT', time.time()-24*60*60, time.time(), '5m', 'perp')

closes = sk.ToOpensDf()

fig = ds.plotly_closes(closes)
fig.write_image("test_image.png")
```