Skip to content

wstolk/alpha-vantage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Alpha Vantage Python

alpha_vantage is a simple Python wrapper around the Alpha Vantage API:

from alpha_vantage import Client
from alpha_vantage.functions import TimeSeries

# setup API client and TimeSeries interface for retrieving IBM stock data
client = Client("API_TOKEN")
ts = TimeSeries(client=client, symbol="IBM")

# retrieve historic stock data on a daily level
daily = ts.daily()

# loop over results
for day in daily.timeseries:
    print(f"- {day.timestamp}: {day.high}")

# close client
client.close()

Installation

alpha_vantage is available on PyPi:

$ python -m pip install alpha-vantage-py

Features

  • Easy integration with your Python project
  • Alpha Vantage endpoints wrapped in functions