The official Python wrapper for Presage, a straightforward cryptocurrency prediction service.
Project description
shameni
The official Presage Python wrapper, a straightforward cryptocurrency prediction service.
Powered by CoinGecko and Presage 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
pip install --upgrade shameni
Import Package
from shameni import Gaze
Initialization
# simple initialization
crypto = Gaze()
# cache data to file
crypto = Gaze("predictions.json")
Check connection
if crypto.ping():
print("Live!")
Supported tokens
for token in crypto.supported():
print(token)
Actual Price Returns the actual cryptocurrency price
price = crypto.price("bitcoin")
Weighted Average Returns the periodic WAVGs
# days = 1, 3, 7, 15, 30, 60, 90
wavg = crypto.wavg("bitcoin", 3)
Request Requests for next-day prediction.
crypto.request("bitcoin")
Prediction Returns the available next-day prediction.
tomorrow = crypto.tomorrow("bitcoin")
if tomorrow > 0:
print(f" - Tomorrow: {tomorrow:,.2f} USD")
Distance Returns the historical distance between the atcual price and predictions.
gap = crypto.distance("bitcoin")
if gap > 0:
print(f" - Distance: {gap:,.6f}")
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file shameni-1.1.0.tar.gz
.
File metadata
- Download URL: shameni-1.1.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67cbeb4ad0811b5d7b97cf0b61517d1f8f17bab6a3b16ee02a230f8497c22325 |
|
MD5 | 7eb615c4bf5e8930117b405a5be2c6bb |
|
BLAKE2b-256 | 7d8972c77d2a2a9ee9271526af9629bf818b00d3416668acd9092c2545105ef4 |
File details
Details for the file shameni-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: shameni-1.1.0-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ccc22bb67af45f30436b0d56354681f913cd666537fa2d5539ca2da7aa22d094 |
|
MD5 | 5dd2dba1e139fe3b6ef30a19857761f9 |
|
BLAKE2b-256 | 3ee9a2449e38bb385048f37a3975ea293297824836003a9519f3b0979447f4da |