https://github.com/onuratakan/get_crypto_price
A library to getting crypto price.
https://github.com/onuratakan/get_crypto_price
bitstamp bitstamp-api crypto price python python3
Last synced: 10 months ago
JSON representation
A library to getting crypto price.
- Host: GitHub
- URL: https://github.com/onuratakan/get_crypto_price
- Owner: onuratakan
- License: mit
- Created: 2021-08-09T21:45:41.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-23T19:41:32.000Z (about 4 years ago)
- Last Synced: 2025-08-19T22:42:06.600Z (10 months ago)
- Topics: bitstamp, bitstamp-api, crypto, price, python, python3
- Language: Python
- Homepage: https://pypi.org/project/get-crypto-price/
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Get Crypto Price
A library to getting crypto price.
# Install
```
pip3 install get-crypto-price
```
# Using
## In another script
```python
from get_crypto_price import get_crypto_price
# get_crypto_price(source = "bitstamp", crypto="btc", pair = "usdt")
print(get_crypto_price())
```
## In command line
```console
-h, --help show this help message and exit
-s SOURCE, --source SOURCE
Source
-c CRYPTO, --crypto CRYPTO
Crypto
-p PAIR, --pair PAIR Pair
```
```console
get_crypto_price
```