alvarobartt / investpy

Financial Data Extraction from Investing.com with Python
https://investpy.readthedocs.io/
MIT License
1.63k stars 377 forks source link

Some missing data #408

Open shru-tea opened 3 years ago

shru-tea commented 3 years ago

I would like to give you an example.

search_results = investpy.search_quotes(text='1nf251k01985',countries=['India'],products=['funds']) for search in search_results: print(search) => I am getting the following information==> {id,name,symbol,country,as_json) Now if I am using the same name which is being sent back to me using the above command(name='Bnp Paribas Long Term Equity Fund Growth') and when I am putting it in the following command, I get an error saying to check if it is correct or not. data=investpy.get_fund_information(fund='Bnp Paribas Long Term Equity Fund Growth',country='india',as_json=True)

Another issue, https://in.investing.com/equities/ganesha-ecosphere-ltd We do have this data on investing but when I run the following command, stocks=investpy.stocks.get_stock_information(stock='GANS',country='India',as_json=True) ERR#18: stock gans not found, check if it is correct.

Please help if there has bee any changes that the documentation does not contain yet.

Originally posted by @alvarobartt in https://github.com/alvarobartt/investpy/issues/400#issuecomment-866812206