Skip to main content

A Python library for getting stock data from Yahoo Finance

Project description

Python module to get stock data from YAHOO! Finance

Brief Overview

Real time stock data works either through the Simple API or the Advanced API

Simple API is only for one ticker. Once created it will get any stock data for that ticker. It returns just the value so no need for parsing data. Simple API allow for ticker to be changed.
Advanced API hold a list of tickers that can be added to and modified. Advanced API can use Simple object methods, but also have the ability to add several data fields to gather large data sets quickly. Returns values in a dict object so parsing data is neccesary.

Historical data works through the History API

History API is only for historical data and will NOT provide real time data. History API holds a list of tickers that can be added to, a time period to get data for, and the frequency (daily, weekly, or monthly) and number of frequency between (any number >= 1) of data to return all of which can be modified or retrieved.
When created it will automatically pull data for the tickers passed, using the default values for time period(30 days from current day to current day), frequency(daily), and number of frequency between (1), or the values supplied by you.

Install

From PyPI with pip:

$ pip install invain

Code Examples

Example: Simple API – Apple Inc. (AAPL)

 import invain

#Create Simple API object
api = invain.Simple('HD')
#Get market price
print(api.get_price())
###################
'173.07''

Example: Advanced API Method 1 – Apple Inc. (AAPL), Alphabet Inc. (GOOG), Microsoft Inc. (MSFT)

import invain

#Create Advanced API object with all the tickers provided
api = invain.Advanced('AAPL','GOOG', 'MSFT')

#Use Simple API method to get price
prices = api.get_price()

#Returns dict object with stock as the index
for stock in prices:
   print(stock, prices[stock])
###################
'AAPL 173.07'
'GOOG 1047.41'
'MSFT 84.88'

Example: Advanced API Method 2 – Apple Inc. (AAPL), Alphabet Inc. (GOOG), Microsoft Inc. (MSFT)

import invain

#Create Advanced API object with all the tickers provided
api = invain.Advanced('AAPL','GOOG', 'MSFT')

#Add price field to data
api.add_price()

#Fetch custom data set
prices = api.get_customData()

#Returns dict object with stock as the index
for stock in prices:
   print(stock, prices[stock])
###################
'AAPL {'price': 173.07}'
'GOOG {'price': 1047.41}'
'MSFT {'price': 84.88}'

Example: History API Method 1 – Apple Inc. (AAPL), Alphabet Inc. (GOOG), Microsoft Inc. (MSFT)

import invain

#Create History API object with all tickers provided.
#This will pull stock data for the past 30 days with an interval of 1 day.
#Note that when creating a History object, historical data is automatically pulled.
#If tickers, start or end dates, or frequency are changed, you will need to run api.update_dataset()
api = invain.History('AAPL','GOOG', 'MSFT')

#Get custom data set
historical_data = api.get_dataset()

#Returns dict object with stock as the index
for stock in historical_data:
   print(stock, historical_data[stock])
###################
AAPL{
  'Adj Close': [...],
  'Close': [...],
  'Date': [...],
  'High': [...],
  'Low': [...],
  'Open': [...],
  'Volume': [...]
}
GOOG{
  'Adj Close': [...],
  'Close': [...],
  'Date': [...],
  'High': [...],
  'Low': [...],
  'Open': [...],
  'Volume': [...]
}
MSFT{
  'Adj Close': [...],
  'Close': [...],
  'Date': [...],
  'High': [...],
  'Low': [...],
  'Open': [...],
  'Volume': [...]
}

Available methods

History API

  • add_ticker(ticker)

  • add_tickers(tickers) – takes argument as array ([‘ticker1’, ‘ticker2’, …]) or individual parameters (ticker1, ticker2, …)

  • remove_ticker(tickers)

  • get_tickers()

  • get_period()

  • get_startDate()

  • get_endDate()

  • change_period(periods)– takes argument as array ([‘period1’, ‘period2’]) or individual parameters (‘period1’, ‘period2’)

  • change_startTime(start)

  • change_endTime(end)

  • get_dataset()

  • update_dataset()

  • change_frequency(frequency, num_between=1) – frequency can be daily, weekly, or monthly. num_between is the step between dates (Not required. Default is 1)

  • get_date() – if ticker(s) provided only returns data for those ticker(s)

  • get_open() – if ticker(s) provided only returns data for those ticker(s)

  • get_high() – if ticker(s) provided only returns data for those ticker(s)

  • get_low() – if ticker(s) provided only returns data for those ticker(s)

  • get_close() – if ticker(s) provided only returns data for those ticker(s)

  • get_adj_close() – if ticker(s) provided only returns data for those ticker(s)

  • get_volume() – if ticker(s) provided only returns data for those ticker(s)

  • get_combo(ticker="ticker",field="high") – Either ticker or field MUST be given (both is valid). If no ticker is provided returns data for all tickers. If no field is provided returns data for all fields.

Simple API

  • change_ticker(ticker)

  • get_ticker()

  • get_price()

  • get_volume()

  • get_ask()

  • get_askSize()

  • get_averageDailyVolume3Month()

  • get_averageDailyVolume10Day()

  • get_bid()

  • get_bidSize()

  • get_bookValue()

  • get_currency()

  • get_earningsTimestamp()

  • get_earningsTimestampEnd()

  • get_earningsTimestampStart()

  • get_epsForward()

  • get_epsTrailingTwelveMonths()

  • get_fiftyDayAverage()

  • get_fiftyDayAverageChange()

  • get_fiftyDayAverageChangePercent()

  • get_fiftyTwoWeekHigh()

  • get_fiftyTwoWeekHighChange()

  • get_fiftyTwoWeekHighChangePercent()

  • get_fiftyTwoWeekLow()

  • get_fiftyTwoWeekLowChange()

  • get_fiftyTwoWeekLowChangePercent()

  • get_financialCurrency()

  • get_forwardPE()

  • get_fullExchangeName()

  • get_gmtOffSetMilliseconds()

  • get_longName()

  • get_marketCap()

  • get_marketChange()

  • get_marketChangePercent()

  • get_marketDayHigh()

  • get_marketDayLow()

  • get_marketOpen()

  • get_marketPreviousClose()

  • get_marketTime()

  • get_postMarketChange()

  • get_postMarketChangePercent()

  • get_postMarketPrice()

  • get_postMarketTime()

  • get_priceHint()

  • get_priceToBook()

  • get_sharesOutstanding()

  • get_shortName()

  • get_symbol() – Returns ticker for stock data being fetched

  • get_tradeable()

  • get_trailingPE()

  • get_twoHundredDayAverage()

  • get_twoHundredDayAverageChange()

  • get_twoHundredDayAverageChangePercent()

Advanced API

  • get_customData()

  • add_ticker(ticker)

  • add_tickers(tickers) – takes list of tickers as argument (or add_tickers(ticker1,ticker2,…))

  • get_tickers(tickers)

  • remove_tickers(tickers)

  • add_price()

  • add_volume()

  • add_ask()

  • add_askSize()

  • add_averageDailyVolume3Month()

  • add_averageDailyVolume10Day()

  • add_bid()

  • add_bidSize()

  • add_bookValue()

  • add_currency()

  • add_earningsTimestamp()

  • add_earningsTimestampEnd()

  • add_earningsTimestampStart()

  • add_epsForward()

  • add_epsTrailingTwelveMonths()

  • add_fiftyDayAverage()

  • add_fiftyDayAverageChange()

  • add_fiftyDayAverageChangePercent()

  • add_fiftyTwoWeekHigh()

  • add_fiftyTwoWeekHighChange()

  • add_fiftyTwoWeekHighChangePercent()

  • add_fiftyTwoWeekLow()

  • add_fiftyTwoWeekLowChange()

  • add_fiftyTwoWeekLowChangePercent()

  • add_financialCurrency()

  • add_forwardPE()

  • add_fullExchangeName()

  • add_gmtOffSetMilliseconds()

  • add_longName()

  • add_marketCap()

  • add_marketChange()

  • add_marketChangePercent()

  • add_marketDayHigh()

  • add_marketDayLow()

  • add_marketOpen()

  • add_marketPreviousClose()

  • add_marketTime()

  • add_postMarketChange()

  • add_postMarketChangePercent()

  • add_postMarketPrice()

  • add_postMarketTime()

  • add_priceHint()

  • add_priceToBook()

  • add_sharesOutstanding()

  • add_shortName()

  • add_symbol()

  • add_tradeable()

  • add_trailingPE()

  • add_twoHundredDayAverage()

  • add_twoHundredDayAverageChange()

  • add_twoHundredDayAverageChangePercent()

  • Remove for Above Functions

TODO/Future Updates

  • Historical Data - In Progress (install from clone to use pre-alpha version)

  • Better Error Handling - After Historical Data is in package release

  • Add Documentation - Will attempt to do this periodically untill full docs are complete. Any assistance on this would be great :)

Requirements

requests

Feedback, Issues, and Features:

Feedback

I’d love to get some feedback from users. I want to know how you are using InVaIN so I can focus on updating it in ways that improve your experience. If you’d like to do so you can email me at invainapi@gmail.com (NOTE: Email abuse will result in your email address being BLOCKED AND/OR REMOVAL OF YOUR ACCESS to InVaIN’s data retrieval services)
In that vein, I just wanted to outline some guidelines for submitting issues on github.

Bugs

If you experience any bugs when running the package please submit an issue with a description of the issue. Bugs will take priority over all other issues.

Bad Data

If you experience any problems with returned data please create an issue and include: - Code related to creating, modifiying, and accessing the InVaIN API object - Data Returned - Day and Approximate Time of Access

This will allow me to better identify what is causing the issue. If you’d rather not post this information on github, please email it to the email listed in the feedback section.

New Features

Please don’t hesitate to ask for new features you’d like to see or make suggestions for improvements. You can open an issue here on github and I’ll take a look at it as soon as I can.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

invain-0.4.0.tar.gz (14.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

invain-0.4.0-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file invain-0.4.0.tar.gz.

File metadata

  • Download URL: invain-0.4.0.tar.gz
  • Upload date:
  • Size: 14.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0

File hashes

Hashes for invain-0.4.0.tar.gz
Algorithm Hash digest
SHA256 5de8d92df5e51cceceff177319ccef91dfbd0a187e4846fe5aa84e9d43383694
MD5 0f1836a66075c7a6493aab0eca7ac789
BLAKE2b-256 36de7795aee820dd87a66f6de690f8b00959216ef57c12c3d6d02a3c3b7bae9e

See more details on using hashes here.

File details

Details for the file invain-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: invain-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0

File hashes

Hashes for invain-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 73c4c3b1182d33ef617034011fce1dd96de199fc31be18e2b0b89c15c0c12132
MD5 e2bf8991c50848f536f25afdfead5e05
BLAKE2b-256 93d5a417f0daa521075fe388689f9bc65b0550eb7b19abb8c32a4f681e03cc54

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page