Metadata-Version: 2.4
Name: funds
Version: 0.0.6
Summary: Historical finance data acquisition and caching
Project-URL: Homepage, https://github.com/thorwhalen/funds
Project-URL: Documentation, https://thorwhalen.github.io/funds/
Project-URL: Repository, https://github.com/thorwhalen/funds
Project-URL: Issues, https://github.com/thorwhalen/funds/issues
Author: Thor Whalen
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: caching,finance,historical-data,market-data,stocks,ticker-symbols,tickers
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Office/Business :: Financial :: Investment
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: importlib-resources
Provides-Extra: dev
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx-rtd-theme>=1.0; extra == 'docs'
Requires-Dist: sphinx>=6.0; extra == 'docs'
Description-Content-Type: text/markdown


# funds
Historical finance data acquisition and caching


To install:	```pip install funds```

# Examples

## get a small set of tickers (offline, from a local file)

```python
from funds import get_ticker_symbols

tickers = get_ticker_symbols()
len(tickers)
# 4039
"GOOG" in tickers
# True
```
