oxinion-finance (Python)
Python client for the Oxinion Finance API — live stock signals, quotes, fundamentals, and market indicators.
⚠️ Early preview (v0.1.x). The API surface and endpoints are still being finalized. Pin an exact version if you depend on it.
Install
pip install oxinion-finance
Usage
from oxinion_finance import OxinionFinance
client = OxinionFinance(api_key="...") # api_key optional for public endpoints
# Latest quote
quote = client.get_quote("AAPL")
# Oxinion signal: BUY / HOLD / SELL
signal = client.get_signal("AAPL")
# Fundamentals
fundamentals = client.get_fundamentals("AAPL")
# Market-wide indicators (Fear & Greed, RSI, VIX, DXY, ...)
indicators = client.get_market_indicators()
Configuration
OxinionFinance(
api_key="...", # Bearer token, optional
base_url="https://api.oxinion.com", # override the API base URL
timeout=30.0, # per-request timeout in seconds
)
Error handling
Non-2xx responses raise OxinionFinanceError:
from oxinion_finance import OxinionFinance, OxinionFinanceError
client = OxinionFinance()
try:
client.get_quote("NOPE")
except OxinionFinanceError as err:
print(err.status, err.body)
Requirements
- Python 3.8+
- No third-party runtime dependencies (uses the standard library only).
License
MIT © Brandon Ha / Oxinion
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
oxinion_finance-0.1.0.tar.gz
(4.4 kB
view details)
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 oxinion_finance-0.1.0.tar.gz.
File metadata
- Download URL: oxinion_finance-0.1.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
889cec0f6f603de2c15a8eb73e10293c9fd67de8cd9395c08b33a5038304d7f6
|
|
| MD5 |
739a8ed00d27af033edad7cd9ac4dae3
|
|
| BLAKE2b-256 |
f555c861e11df1d76182f89bc257b22f3954b214a5e0f7420598dc9f9539aad0
|
File details
Details for the file oxinion_finance-0.1.0-py3-none-any.whl.
File metadata
- Download URL: oxinion_finance-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80bea14fd0a7d042844c5d8ade9a74231d700c3e3dfc6bd95361225be2b2bb86
|
|
| MD5 |
1928313e622690738cc6fd347bd6534c
|
|
| BLAKE2b-256 |
d0e705e15c894089a08aca8710e1317e836e044e7a577bcf176af6fa4baa6838
|