-
ModuleNotFoundError: No module named 'nsetools'
-
I was trying to use nsetools api to fetch indian stocks historical data, but getting this error.
Is nsetools still running or being discontinued for free usage?
🆘 need suggestions and help..
…
-
NSE has changed some formatting resulting in Python-nsetools failing.
-
urllib.error.URLError:
`from nsetools import Nse
nse = Nse()
print(nse.get_quote('infy'))`
-
Have recently came across one requirement of, fetching option chain data from nse site via python, and naturally I first check whether it was already available in nsetools! Since it was not there, I c…
-
Currently there is no provision for fetching live value of indices. nsetools has the get_index_quote which fulfils this requirement. Would be nice to have the same functionality here.
Let me know if …
-
When i tried to run my nsetools with python in my local system it worked fine
when i tried that with some aws ec2 instances i didn't get any response using nse.get_index_quote("NIFTY 50")
-
I have used nsetools library an written a python app. It is working well in local machine. But while hosting it in AWS or Heroku it is throwing timeout error. I checked get_top_gainers(). It is throwi…
-
While using the getQuotes method (that is the only method currently that I need from the library), I am seeing the following exception occuring **"org.apache.http.HttpException: Unable to connect to …
-
While fetching data for '_3PLAND_', _get_quote_ throws _IndexError_
`
>>> from nsetools import Nse
>>> nse = Nse()
>>> nse.get_quote('3PLAND')
Traceback (most recent call last):
File "", line …