findl

Financial Data Library


Keywords
NSE, NIFTY, Options, Live
License
MIT
Install
pip install findl==1.0.2

Documentation

findl

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

  • Installation
  pip install findl
  • Use
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')