Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ import pandas as pd
|
|
7 |
API_KEY = "QR8F9B7T6R2SWTAT"
|
8 |
|
9 |
def fetch_alpha_vantage_data(api_key):
|
10 |
-
url = f'https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=
|
11 |
response = requests.get(url)
|
12 |
alpha_vantage_data = response.json()
|
13 |
return alpha_vantage_data
|
|
|
7 |
API_KEY = "QR8F9B7T6R2SWTAT"
|
8 |
|
9 |
def fetch_alpha_vantage_data(api_key):
|
10 |
+
url = f'https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=MANH&interval=5min&apikey={api_key}'
|
11 |
response = requests.get(url)
|
12 |
alpha_vantage_data = response.json()
|
13 |
return alpha_vantage_data
|