diff options
author | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-03-08 05:08:45 +0530 |
---|---|---|
committer | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-03-08 05:08:45 +0530 |
commit | d9c4e90c4efdf3d9feecf72a15fb872ef7e92bae (patch) | |
tree | c379df48109f3db9c7b4a2d3e7ed19f23868d37a | |
parent | 2ef3e66592d104aea9e1a3f206fa01ac960f3cb0 (diff) | |
download | crypto-alert-d9c4e90c4efdf3d9feecf72a15fb872ef7e92bae.tar.gz crypto-alert-d9c4e90c4efdf3d9feecf72a15fb872ef7e92bae.tar.bz2 crypto-alert-d9c4e90c4efdf3d9feecf72a15fb872ef7e92bae.zip |
remove websocket
-rw-r--r-- | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ selected_coins = input("enter the coin you want to view: ").lower() btc_price = price(selected_coins) for coin, price in btc_price.items(): - print(f"{price}") + print(f"{coin.capitalize()}: ${price}") def email(btc): # change the email address or create a email.txt file and put your email there |