Get bitcoin price in any currency
from btc_price import * # Import the btc-price module
print(btcprice("USD")) # Print the price of bitcoin in dollars
See how many bitcoin you can get with a certain amount of a currency
from btc_price import * # Import the btc-price module
print(currency_to_btc(120.50, "USD")) # Print how many bitcoin you can get from 120.50 dollard
See how much is a certain amount of bitcoin in a currency
from btc_price import * # Import the btc-price module
print(btc_to_currency("0.2", "USD")) # Get how much dollars are 0.2 bitcoins