Metadata-Version: 2.0
Name: findl
Version: 1.0.1
Summary: Financial Data Library
Home-page: https://github.com/indiquant/findl
Author: indiquant
Author-email: g.anish.06@gmail.com
License: MIT
Keywords: NSE,NIFTY,Options,NSE options,NIFTY options,Live NSE options,
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Provides-Extra: dev
Provides-Extra: test

# findl
Financial (FIN) Data (D) Library (L)

* Installation
```python
  pip install findl
```

* Use

```python
from findl import get_options, load_options

#
# get_options return a pandas dataframe of option prices
# 
df = get_options('NIFTY', src='NSE')

#
# load_options gets the options dataframe
# it then writes the data to the path provided
#
load_options('NIFTY', path=r'C:\Temp\options.txt', sep='\t', src='NSE')

```


