Skip to content

Commit

Permalink
Removed a print
Browse files Browse the repository at this point in the history
  • Loading branch information
onuratakan committed Aug 13, 2021
1 parent 25bf07f commit eee8509
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


setup(name='get_crypto_price',
version='0.2.1',
version='0.2.2',
description="""A library to getting crypto price.""",
long_description="""
# Get Crypto Price
Expand Down
1 change: 0 additions & 1 deletion src/get_crypto_price/get_crypto_price.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def get_crypto_price(source = "bitstamp", crypto = "btc", pair = "usdt"):

try:
r = requests.get(URL)
print(r.text)
if source == "bitstamp":
priceFloat = float(json.loads(r.text)["last"])
elif source == "binance":
Expand Down

0 comments on commit eee8509

Please sign in to comment.