company-mode
completion back-end for Python JEDI.
company-jedi
is available on MELPA.
You can install company-jedi
with the following command.
M-x package-install [RET] company-jedi [RET]
Please do not install jedi package for company users, it is an auto-complete plugin of jedi
(el-get-bundle elpa:jedi-core)
(el-get-bundle company-jedi :depends (company-mode))
(defun my/python-mode-hook ()
(add-to-list 'company-backends 'company-jedi))
(add-hook 'python-mode-hook 'my/python-mode-hook)