How can I autofill python libraries in sublime

Currently, when I import the code, for example:

from datetime import datetime 

I don’t see what methods he has. How could I find out what utcnow () is, for example. It would be great if there was a plugin for sublime, so I have this functionality, as in eclipse with cntr + space for methods. It can also be if there is any navigation between class definitions or a transition to a property definition, etc.

Preferences plugins

+7
python sublimetext3
source share
1 answer

You may have this functionality with Anaconda Package .

enter image description here

Anaconda includes many more features than just automatic completion. You can install the Jedi Package . This is the automatic completion that ships with Anaconda.

+10
source share