swapniljariwala / nsepy

Python Library to get publicly available data on NSE website ie. stock quotes, historical data, live indices
https://nsepy-xyz.web.app
Other
748 stars 376 forks source link

Latest Data is not showing up, the last data i could find is till Aug-20-2021 #213

Open tonyanvilson opened 2 years ago

tonyanvilson commented 2 years ago

Below is the code i'm using

from datetime import date from nsepy import get_history

print("processing symbol ", s) try: df = get_history(symbol="SBIN", start=date(2021,1,1), end=date(2021,1,31)) print(df) except Exception as e: print(str(e)) print("Failed while retriving data for ", s)

Output

Empty DataFrame Columns: [Symbol, Series, Prev Close, Open, High, Low, Last, Close, VWAP, Volume, Turnover, Trades, Deliverable Volume, %Deliverble] Index: []

kroy900 commented 2 years ago

See below:- github_query