Skip to main content

Python package designed for security returns analysis.

Project description

pyfinance

PyPI version License: MIT Python versions

pyfinance is a Python package for investment management and analysis of security returns. It complements existing quantitative-finance packages such as pandas-datareader with a focused, batteries-included statistical toolkit.

Status

  • Latest release: 2.0.1
  • Python: 3.10, 3.11, 3.12, 3.13, 3.14
  • License: MIT

Installation

uv add pyfinance

Or with pip:

pip install pyfinance

Modules

Module Description
pyfinance.returns Statistical analysis of financial time series via the CAPM framework. TSeries / TFrame are Pandas subclasses that add performance statistics: annualized return/vol, Sharpe, Sortino, drawdown, capture ratios, alpha/beta, Information Ratio, and so on.
pyfinance.ols Ordinary least-squares regression. OLS, RollingOLS (NumPy-backed), and PandasRollingOLS (Pandas-indexed wrapper).
pyfinance.options Vectorized Black-Scholes-Merton valuation, Greeks, and implied volatility via BSM. Option strategies (Straddle, BullSpread, Butterfly, Condor, variants).
pyfinance.general General-purpose computations: active share, amortization schedules, best-fit distribution, PCA on returns, portfolio simulation, tracking-error optimization, VIF.
pyfinance.datasets A small set of dataset loaders: load_13f (SEC EDGAR), load_industries (Ken French), load_rates (FRED H.15), load_rf (3-month T-bill total-return series).
pyfinance.utils Frequency conversion, rolling-window construction, one-hot encoding, random ticker/weights generation, availability reporting.

Quick tutorial

TSeries — performance statistics

import numpy as np
import pandas as pd
from pyfinance import TSeries

rng = np.random.default_rng(444)
s = rng.standard_normal(400) / 100 + 0.0008
idx = pd.date_range(start="2016-01-01", periods=len(s))
ts = TSeries(s, index=idx)

ts.anlzd_ret()       # annualized geometric return
ts.anlzd_stdev("D")  # annualized stdev of returns
ts.max_drawdown()    # worst peak-to-trough decline
ts.sharpe_ratio()    # Sharpe, annualized

BSM — Black-Scholes-Merton options pricing

from pyfinance.options import BSM

op = BSM(S0=100, K=100, T=1, r=0.04, sigma=0.20)
op.value()          # European call value
op.delta()          # Greeks
op.implied_vol(10)  # implied vol at a target price

# Vectorized across arrays of strikes.
import numpy as np
ops = BSM(S0=100, K=np.arange(100, 110), T=1, r=0.04, sigma=0.20)
ops.value()

OLS — regression

from pyfinance.ols import OLS

# y: 1-d array; x: 2-d array of explanatory variables.
model = OLS(y=y, x=x)
model.beta, model.alpha
model.rsq_adj, model.fstat, model.std_err

datasets.load_13f — SEC EDGAR 13F parser

SEC EDGAR requires a descriptive User-Agent (policy). Supply one:

from pyfinance import datasets

url = (
    "https://www.sec.gov/Archives/edgar/data/1040273/"
    "000108514617001787/form13fInfoTable.xml"
)
df = datasets.load_13f(url, user_agent="Jane Doe (jane@example.com)")

Development

This repo is managed with uv:

git clone https://github.com/bsolomon1124/pyfinance
cd pyfinance
uv sync               # install pinned runtime + dev deps
uv run pytest         # run tests
uv run ruff check     # lint
uv run ruff format    # format
uv build              # build sdist + wheel

Type checking uses ty:

uv run ty check

CI runs these across Python 3.10–3.14 on every push; see .github/workflows/ci.yml.

Changelog

See CHANGELOG.md. Notably, pyfinance 2.0 dropped load_factors, load_shiller, and load_retaildata because their upstream sources had drifted past reasonable repair. See the 2.0 release notes for details and migration guidance.

License

MIT — see LICENSE.txt.

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

pyfinance-2.0.1.tar.gz (75.8 kB view details)

Uploaded Source

Built Distribution

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

pyfinance-2.0.1-py3-none-any.whl (51.3 kB view details)

Uploaded Python 3

File details

Details for the file pyfinance-2.0.1.tar.gz.

File metadata

  • Download URL: pyfinance-2.0.1.tar.gz
  • Upload date:
  • Size: 75.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pyfinance-2.0.1.tar.gz
Algorithm Hash digest
SHA256 97736204dde3cdce6e66755af11be5018442221ce3a9cd872a184a0238f8787b
MD5 f5ea57b574f203d283e8247585eafcdd
BLAKE2b-256 026477e30fb91998a985603fbfeffa9c645771fd339e3c6707c65b2e99a9d18e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfinance-2.0.1.tar.gz:

Publisher: publish.yml on bsolomon1124/pyfinance

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyfinance-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: pyfinance-2.0.1-py3-none-any.whl
  • Upload date:
  • Size: 51.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pyfinance-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 47e46005bdc01edfa2af7464c0bc93234347482972024f7ff9107ddaae779bb6
MD5 1117d97bf57bebd813d01fb1a833ab19
BLAKE2b-256 c9ec0f79977e97ec4968b1a7f5fee0d2f4bb82c89c499e0113c02ce278047ed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfinance-2.0.1-py3-none-any.whl:

Publisher: publish.yml on bsolomon1124/pyfinance

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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