Metadata-Version: 2.1
Name: shameni
Version: 1.0.2
Summary: The official Python wrapper for Presage, a straightforward cryptocurrency prediction service.
Home-page: https://github.com/rmaniego/shameni
Author: Rodney Maniego Jr.
Author-email: rod.maniego23@gmail.com
License: MIT
Download-URL: https://github.com/rmaniego/shameni/archive/v1.0.tar.gz
Keywords: presage,cryptocurrency,prediction,python,wrapper
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# shameni
The official Presage Python wrapper, a straightforward cryptocurrency prediction service.

Powered by [CoinGecko](https://www.coingecko.com/api/documentations/v3) and [Presage](http://presage.herokuapp.com/) API.

**DISCLAIMER:** All data generated by Presage and/or Shameni does not indicate real cryptocurrency prices and does not constitute to an expert financial advice. Do your own research and only take financial advice from a certified financial expert. This website and the information contained herein is not intended to be a source of any financial advice with respect to the material presented, and the information and/or documents contained in this website do not constitute investment advice.

## Usage
**Installation**
```python
pip install --upgrade shameni
```

**Import Package**
```python
from shameni import Gaze
```

**Initialization**
```python
# simple initialization
crypto = Gaze()

# cache data to file
crypto = Gaze("predictions.json")
```

**Check connection**
```python
if crypto.ping():
    print("Live!")
```

**Prediction**
```python
# get supported cryptocurrency list
coins = crypto.supported()

for coin in coins:
    print(coin)

# predict next day prediction
prediction = crypto.tomorrow("bitcoin")

# get today's prediction
prediction = crypto.today("bitcoin")
```

**Historical Data**
Up to seven days of historical predictions
```python
history = crypto.historical("bitcoin")
for date, price in history.items():
    print(f"{date}: {price:,.2f} USD")
```

