Metadata-Version: 2.1
Name: mmcrypto
Version: 0.0.2
Summary: Package to give crypto trading signals in wazirx
Home-page: https://github.com/manasm11/mmcrypto
Author: Manas Mishra
Author-email: manas.m22@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# mmcrypto

Python package get and save crypto data from wazirx.

Type these in our linux terminal to understand the usage
```py
pip3 install mmcrypto
python3
>>> from mmcrypto import Crypto, Price
>>> directory_to_save_data = '/home/user/data/'
>>> Crypto.update(directory_to_save_data)
>>> Crypto.all(directory_to_save_data)
>>> crypto = Crypto('btc', directory_to_save_data)
>>> list(crypto.get_prices())
>>> for p in crypto.get_prices():
...     for attr in Price.attrs:
...         print(attr, p[attr])
...     print()
...
>>>


```


