Metadata-Version: 2.1
Name: funds
Version: 0.0.3
Summary: Historical finance data data and caching
Home-page: https://github.com/thorwhalen/funds
Author: Thor Whalen
License: apache-2.0
Platform: any
Description-Content-Type: text/markdown
Requires-Dist: importlib-resources


# funds
Historical finance data data 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
```


