Spaces:
Sleeping
Sleeping
Fix build errors
Browse filesFix builld errors
app.py
CHANGED
@@ -25,13 +25,15 @@ def fetch_binance_price(symbol: str = "BTCUSDT") -> str:
|
|
25 |
symbol (str): Trading pair symbol (e.g. 'BTCUSDT')
|
26 |
"""
|
27 |
|
28 |
-
|
|
|
|
|
29 |
|
30 |
try:
|
31 |
response = requests.get(url)
|
32 |
response.raise_for_status() # Raise exception for 4XX/5XX status codes
|
33 |
data = response.json()
|
34 |
-
return f
|
35 |
except requests.RequestException as e:
|
36 |
print(f"Error fetching data: {e}")
|
37 |
raise
|
|
|
25 |
symbol (str): Trading pair symbol (e.g. 'BTCUSDT')
|
26 |
"""
|
27 |
|
28 |
+
symbol = symbol.upper() #just in case
|
29 |
+
|
30 |
+
url = f"https://api.binance.com/api/v3/ticker/price?symbol={symbol}"
|
31 |
|
32 |
try:
|
33 |
response = requests.get(url)
|
34 |
response.raise_for_status() # Raise exception for 4XX/5XX status codes
|
35 |
data = response.json()
|
36 |
+
return f"The price for {data[symbol]} is {data[price]}"
|
37 |
except requests.RequestException as e:
|
38 |
print(f"Error fetching data: {e}")
|
39 |
raise
|