Metadata-Version: 2.4
Name: funds
Version: 0.0.5
Summary: Historical finance data data and caching
Project-URL: Homepage, https://github.com/thorwhalen/funds
Author: Thor Whalen
License: Apache-2.0
License-File: LICENSE
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 hedger import get_ticker_symbols
tickers = get_ticker_symbols()
len(tickers)
# 4039
'GOOG' in tickers
# True
```
