Skip to content

Instantly share code, notes, and snippets.

@vedranmarkulj
Last active February 22, 2018 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vedranmarkulj/2f12509777df2f92709a68548c73599a to your computer and use it in GitHub Desktop.
Save vedranmarkulj/2f12509777df2f92709a68548c73599a to your computer and use it in GitHub Desktop.
get_historical_data_05.py
import requests
import pandas as pd
class AlphaVantage:
.
.
.
def daily(self):
parameters = {
"function": "TIME_SERIES_DAILY",
"symbol": self.symbol_code,
"outputsize": self.outputsize,
"datatype": "json",
"apikey": self.api_key
}
response_daily = requests.get("{0}{1}".format(self.base_url, self.default_endpoint), params=parameters, stream=True).json()
return response_daily
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment