I'm currently working on Sublime Text 3 using Jedi - Python autocompletions and it works with most basic things. However I use it like in this case with BeautifulSoup4
The main issue is not displaying properly completions for when doing multiple dot (.
) methods on a file and the completor has to rely on seeing it first like .find_all
method then it will suggest it (however this seems to be the autocompletion from Sublime Text 3 itself).
What happens in the next case
import requests
from bs4 import BeautifulSoup as Soup # works ok, shows all suggestions
request = requests.get('http://example.com')
soup = Soup(request.text, 'lxml')
main = soup.find('body') # shows find method
# However, No available completions in the next case
second_lookup = main.find('div') # doesn't show any autocompletions/hints when starting w/ .fi..
Same goes when looking any other 'deeper' methods for autocompletions. I've tried so far tweaking all the settings in the Jedi..settings file. That didn't help and I've tried using Anaconda as it has some additional tools also including Jedi.
This seems to be specific to some libraries like numpy and bs4 for example.
Note:
This isn't specific to Sublime Text 3. Same thing goes for Atom and similar IDEs.
Python is a dynamic language. Arguments of a function or method rely completely on type specification by docstrings. Same goes for return type.
For example, this is
docstring
(or documentation) of aget
function ofrequests
module:Return type is specified in function definition. You can also specify type of arguments for functions.
However, the
find
method ofSoup
class is written like this:Editors can lookup
find
method ofSoup
class. But, they don't know what type of object this method returns.Workaround is to specify type when assigning to variable:
Or you can add
:rtype: Tag
tofind
docstring. I know it returnsTag
object sincetype(main)
ortype(second_lookup)
both return<class 'bs4.element.Tag'>
.Links I provided are enough for you to learn about static typing in python and perfectly document your code. Hope this helps.