Metadata-Version: 2.4
Name: gfin
Version: 0.1.2
Summary: Python SDK for gfin: hosted Google Finance-backed quotes, prices, market data, news, and research.
Project-URL: Homepage, https://gfin.dev
Project-URL: API, https://api.gfin.dev/v1/openapi.json
Project-URL: Documentation, https://docs.gfin.dev
Project-URL: Source, https://github.com/bluefin-ai/fin-services/tree/main/gfin
Project-URL: Rate Limits, https://docs.gfin.dev/rate-limits
Project-URL: API Reference, https://docs.gfin.dev/api-reference
Project-URL: LLM Summary, https://docs.gfin.dev/llms.txt
Author-email: gfin <sam@gfin.dev>
License: MIT
Keywords: finance,google-finance,market-data,stocks
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: certifi>=2024.2.2
Description-Content-Type: text/markdown

# gfin

Python SDK for `https://api.gfin.dev`.

```bash
pip install gfin
```

```python
import gfin

client = gfin.Client(contact="you@example.com")

quote = client.quotes.get("AAPL", exchange="NASDAQ")
history = client.prices.history("AAPL")
answer = client.research.ask("Why is AAPL moving today?")
```

The SDK is product-native. It exposes symbols, quotes, prices, financials,
earnings, market data, news, and research rather than upstream transport or
page-specific module names.
