Files
tiingo-python/tiingo/api.py
2017-08-24 22:00:19 -04:00

47 lines
1.3 KiB
Python

# -*- coding: utf-8 -*-
import os
from tiingo.restclient import RestClient
class TiingoClient(RestClient):
"""Class for managing interactions with the Tiingo Platform
Supply API Key via Environment Variable TIINGO_API_KEY
or via the Config Object
"""
def __init__(self, *args, **kwargs):
super(TiingoClient, self).__init__(*args, **kwargs)
self._base_url = "https://api.tiingo.com"
try:
api_key = self._config['api_key']
except KeyError:
api_key = os.environ.get('TIINGO_API_KEY')
assert(api_key)
self._headers = {
'Authorization': "Token {}".format(api_key),
'Content-Type': 'application/json',
'User-Agent': 'tiingo-python-client'
}
def __repr__(self):
return '<TiingoClient(url="{}")>'.format(self._base_url)
# Define routes
def get_ticker_metadata(self, ticker):
"""Return metadata for 1 ticker.
"""
url = "tiingo/daily/{}".format(ticker)
response = self._request('GET', url)
return response.json()
def get_latest_price(self, ticker):
raise NotImplementedError
def get_historical_price(self, ticker, startDate, endDate):
raise NotImplementedError