I want to get NSE stocks only. I m using to get multiple stocks quotes with a symbol in python.
code:
from nsetools import Nse
nse = Nse()
def get_current(stock):
return nse.get_quote(stock)
for i in stocks:
data = get_current(i)
This doesn't help. please help