Yahooo Finance API package
Project description
Yahoo Finance API
Minimal API to interact with Yahoo Finance.
Installation
pip install yahoo_finance_api2
Usage
The following example retrieves 10 days of 5 minute frequency Microsoft (MSFT) stock data.
import sys
from yahoo_finance_api2 import share
from yahoo_finance_api2.exceptions import YahooFinanceError
my_share = share.Share('MSFT')
symbol_data = None
try:
symbol_data = my_share.get_historical(share.PERIOD_TYPE_DAY,
10,
share.FREQUENCY_TYPE_MINUTE,
5)
except YahooFinanceError as e:
print(e.message)
sys.exit(1)
print(symbol_data)
The output format:
{
'timestamp': [...],
'open': [...],
'high': [...],
'low': [...],
'close': [...],
'adj_close': [...],
'volume': [...]
}
API
- Class
Share
:get_historical(period_type, period, frequency_type, frequency)
- Returns historical data for the given period type (
share.PERIOD_TYPE_DAY
,share.PERIOD_TYPE_WEEK
,share.PERIOD_TYPE_MONTH
,share.PERIOD_TYPE_YEAR
), period (1, 5, 10, etc.), frequency_type (share.FREQUENCY_TYPE_MINUTE
,share.FREQUENCY_TYPE_DAY
,share.FREQUENCY_TYPE_MONTH
,share.FREQUENCY_TYPE_YEAR
), and frequency (1, 5, 10, etc.). Only certain combinations of these parameters are allowed.
- Returns historical data for the given period type (
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file yahoo_finance_api2-0.0.12.tar.gz
.
File metadata
- Download URL: yahoo_finance_api2-0.0.12.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
64ce96adfd62cf74506938597039a1372701a974d1a2cf0dec00a3bc8b24a8f3
|
|
MD5 |
7b21d4e4ea04e6cb8dd5e73130e11ef5
|
|
BLAKE2b-256 |
b0f884b44878bc6211cbc8b463729d9a5777e9f818c3d29cbdc9786e8fbb4e3e
|