0

i'm trying to learn pandas_datareader and have been searching on google, so far i haven't found any details API Only found this https://pandas-datareader.readthedocs.io/en/latest/remote_data.html#yahoo-finance-options

but it's lack of details such as following pic shows, data has many more functions or properties which I have no idea about. So does anyone know where I can find info about those details? I'm looking for something like java api giving details of each function/property

enter image description here

ikel
  • 1,790
  • 6
  • 31
  • 61

1 Answers1

1

The feature is there:

all you have to do is press shift + tab a few times.

enter image description here

If it doesn't work then install pip install pyreadline

Source: IPython tab completion not working

Another option is to use

?data.div

enter image description here

Community
  • 1
  • 1
Vikash Singh
  • 13,213
  • 8
  • 40
  • 70