Skip to content

weirwoodai/weirwood-pyfinance

Repository files navigation

Weirwood PyFinance

Build Status Downloads black License: MIT

Python API for downloading stock prices and fundamental accounting concepts


Installation

Stable Release: weirwood-pyfinance

> pip install weirwood-pyfinance

Development Head: git+https://github.com/weirwoodai/weirwood_pyfinance.git

> pip install git+https://github.com/weirwoodai/weirwood_pyfinance.git

Quick Start

Register your account at https://weirwood.ai for free

from weirwood_pyfinance import FinTen

finten = FinTen()
finten.set_login(username="<YOUR USERNAME>",password="<YOUR PASSWORD>")
filings = finten.get_filings(ticker="AAPL")
prices = finten.get_prices(ticker="AAPL")

If you don't have an account you can still access using the free tier

from weirwood_pyfinance import FinTen

finten = FinTen()
filings = finten.get_filings(ticker="AAPL")
prices = finten.get_prices(ticker="AAPL")

MIT license