RuchiTanmay / nselib

nse data library
Apache License 2.0
50 stars 32 forks source link

Added optional parameter to set filename to all functions in captial_market_data.py #10

Closed Wambyat closed 1 year ago

Wambyat commented 1 year ago

This adds an option to specify a filename to save the csv that gets generated. It is considered an optional parameter and gets set to 'file' by default. The default value mimics the old version's functionality.

Wambyat commented 1 year ago

file.csv is temporary file and it is used for many functions.. so it is not a good idea to save the data.. we can directly use as DataFrame.

file.csv is temporary file and it is used for many functions.. so it is not a good idea to save the data.. we can directly use as DataFrame.

Ahhh ok. Should I remove the instances of file.csv getting saved then?