Skip to content

Intrinio Python SDK v2.2.1

Compare
Choose a tag to compare
@kgmiller kgmiller released this 10 Apr 20:43
· 95 commits to master since this release
  • Added "_dict" properties to API response objects. These properties can be directly converted into a Pandas DataFrame.

For example:

from __future__ import print_function
import time
import intrinio_sdk
from intrinio_sdk.rest import ApiException
from pprint import pprint
import pandas as pd

intrinio_sdk.ApiClient().configuration.api_key['api_key'] = 'YOUR_API_KEY'

security_api = intrinio_sdk.SecurityApi()

identifier = 'AAPL' # str | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID)
start_date = '2019-01-02' # date | Return intraday prices starting at the specified date (optional)
end_date = '2019-01-04' # date | Return intraday prices stopping at the specified date (optional)

try:
    api_response = security_api.get_security_intraday_prices(
    identifier, 
    start_date=start_date,
    end_date=end_date)
    data_frame = pd.DataFrame(api_response.intraday_prices_dict)
    pprint(data_frame)
except ApiException as e:
    print("Exception when calling SecurityApi->get_security_intraday_prices: %s\n" % e)