An open API service indexing awesome lists of open source software.

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.

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
```