Compact Python 3.14 Yahoo Finance client returning pyarrow.Table, built on fastreq.
Project description
yfin-client
Compact Python 3.14 Yahoo Finance client returning pyarrow.Table, built on
fastreq.
Published on PyPI as yfin-client; imported as yfin.
What it does
- Batch quotes via
query1.finance.yahoo.com/v7/finance/quote - Chart history (OHLCV + dividends + splits) via
query1.finance.yahoo.com/v8/finance/chart/{symbol} - Deterministic pyarrow.Table output with explicit schemas
- Optional Polars conversion via the
polarsextra - Async and sync APIs; sync wrappers fail clearly inside a running event loop
- Two-strategy Yahoo cookie/crumb authentication (basic + CSRF fallback)
- Per-proxy-route cookie/crumb isolation (no state leakage between proxies)
What it does NOT do
- No pandas, numpy, yfinance, yahooquery, requests, pendulum, or lxml
- No quote summaries, company fundamentals, symbol search, or options
- No free proxies or bypass/aggressive behavior
- No compatibility layer for the legacy yfin API
Installation
pip install yfin-client # core (pyarrow output)
pip install 'yfin-client[polars]' # with Polars conversion
Requires fastreq>=3.0.0, which is resolved automatically from PyPI.
Usage
import yfin
# Batch quotes
quotes = yfin.quotes(
["AAPL", "MSFT"],
fields=["regularMarketPrice", "regularMarketVolume", "currency"],
)
# pyarrow.Table: symbol, regular_market_price, regular_market_volume, currency
# Historical OHLCV
from datetime import date
history = yfin.history(
["AAPL", "MSFT"],
start=date(2024, 1, 1),
end=date(2024, 6, 1),
interval="1d",
)
# pyarrow.Table: symbol, timestamp, open, high, low, close, adjusted_close,
# volume, dividend, split_ratio, currency, exchange_timezone
# Or use a range instead of dates
history = yfin.history(["AAPL"], period="1y")
# Async equivalents
quotes = await yfin.quotes_async(["AAPL", "MSFT"])
history = await yfin.history_async(["AAPL"], period="1y")
# Optional Polars conversion (requires 'yfin[polars]')
df = yfin.to_polars(history)
Arrow schemas
History
| Column | Type |
|---|---|
symbol |
string |
timestamp |
timestamp(s, UTC) |
open |
float64 |
high |
float64 |
low |
float64 |
close |
float64 |
adjusted_close |
float64 |
volume |
int64 |
dividend |
float64 |
split_ratio |
float64 |
currency |
string |
exchange_timezone |
string |
Quotes
Column symbol (string) followed by each requested Yahoo field converted from
camelCase to snake_case, in caller order. Missing symbols get a null row;
missing field values are null. When fields=None, all Yahoo-returned keys are
included as snake_case columns.
Cookie and crumb authentication
yfin adapts Yahoo's two-strategy authentication model (no yfinance dependency):
- Basic strategy: GET
fc.yahoo.comfor a cookie, then GETquery1.finance.yahoo.com/v1/test/getcrumbfor a crumb. - CSRF fallback: GET
guce.yahoo.com/consent, parse hidden form fields with stdlibhtml.parser, POST consent, GETcopyConsent, then GET the crumb fromquery2.finance.yahoo.com.
On crumb-invalid errors or HTTP 429, the crumb is cleared and the strategy switches once (basic → CSRF). Blank, HTML, and too-short crumbs are treated as typed failures.
Each network route (direct or a specific proxy URL) maintains independent cookie/crumb state. A crumb obtained through one proxy is never sent through another.
Proxy policy
yfin uses fastreq's explicit proxy transport support. It chooses configured proxies round-robin as explicit Yahoo routes so that cookie/crumb state remains bound to the proxy that obtained it. No free proxies are used or offered. Configure proxies explicitly:
client = yfin.YahooClient(proxies=["http://proxy1:8080", "http://proxy2:8080"])
quotes = await yfin.quotes_async(["AAPL"], client=client)
Unofficial endpoints
yfin uses unofficial Yahoo Finance endpoints. These endpoints are not documented, not guaranteed stable, and may change without notice. yfin implements conservative pacing and retry behaviour to minimise the risk of rate-limiting, but cannot guarantee availability.
Testing
All tests are hermetic (no network access required):
uv run pytest -q
A live Yahoo smoke test is available but opt-in only (never required for test success):
YFIN_LIVE_SMOKE=1 uv run pytest tests/test_live_smoke.py -q
Migration from legacy yfin (pre-1.0)
This is a clean rewrite. The legacy API (QuoteSummary, Search, Lookup,
validate, pandas DataFrames) has been removed. Key changes:
- Output is
pyarrow.Table, notpandas.DataFrame history()usesinterval=(notfreq=) andevents=(notsplits=/dividends=)- No
QuoteSummary, symbol search, or lookup endpoints - No free proxy scraping
- No
pendulum,lxml,numpy,pandas,yfinance, orparallel-requests
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yfin_client-1.0.0.tar.gz.
File metadata
- Download URL: yfin_client-1.0.0.tar.gz
- Upload date:
- Size: 18.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
839f51b847a66052114b059676a1f26a322646e2fff09eb02add6ef85a66a087
|
|
| MD5 |
3fe06981c71a924c8fe32344c65ae993
|
|
| BLAKE2b-256 |
87534921916952926c58280b996a4b84608a576b9750441123136322da00bf34
|
File details
Details for the file yfin_client-1.0.0-py3-none-any.whl.
File metadata
- Download URL: yfin_client-1.0.0-py3-none-any.whl
- Upload date:
- Size: 23.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b1acf33cfaa2d6d745de6f898d1538adb783170ee036bb08ff5c363b857a923
|
|
| MD5 |
7e928440462fdcf75d7994acc27e714d
|
|
| BLAKE2b-256 |
493cc00f3f583fd4abaa4eb4c34843997860632492fcbd21535f71504aff223e
|