A Python 3.6+ implementation of the Language Server Protocol. A friendly fork of the palantir/python-language-server.
Major changes compared to upstream:
- added completionItem/resolve support to improve performance of completions
- implemented caching of completion labels for numpy, pandas, tensorflow and matplotlib for Jedi completions
- implemented a rule to not calculate labels for lists of completions exceeding specific number (25 by default)
- implemented conversion of ReStructuredText and Sphinx docstrings to Markdown (for Jedi hover and completions)
- multiple signatures no longer clobber the docstrings but instead are collapsed under "more signatures"
- improved sorting of completions (implemented token counter and better rules for sortText)
- dropped Python 2.7 support
The base language server requires Jedi to provide Completions, Definitions, Hover, References, Signature Help, and Symbols:
pip install git+https://github.com/krassowski/python-language-server.git@main
If the respective dependencies are found, the following optional providers will be enabled:
- Rope for Completions and renaming
- Pyflakes linter to detect various errors
- McCabe linter for complexity checking
- pycodestyle linter for style checking
- pydocstyle linter for docstring style checking (disabled by default)
- autopep8 for code formatting
- YAPF for code formatting (preferred over autopep8)
Optional providers can be installed using the extras syntax. To install YAPF formatting for example:
pip install 'python-language-server[yapf]'
All optional providers can be installed using:
pip install 'python-language-server[all]'
If you get an error similar to 'install_requires' must be a string or list of strings
then please upgrade setuptools before trying again.
pip install -U setuptools
Installing these plugins will add extra functionality to the language server:
- pyls-mypy Mypy type checking for Python 3
- pyls-isort Isort import sort code formatting
- pyls-black for code formatting using Black
Please see the above repositories for examples on how to write plugins for the Python Language Server. Please file an issue if you require assistance writing a plugin.
Configuration is loaded from zero or more configuration sources. Currently implemented are:
- pycodestyle: discovered in ~/.config/pycodestyle, setup.cfg, tox.ini and pycodestyle.cfg.
- flake8: discovered in ~/.config/flake8, setup.cfg, tox.ini and flake8.cfg
The default configuration source is pycodestyle. Change the pyls.configurationSources setting to ['flake8'] in order to respect flake8 configuration instead.
Overall configuration is computed first from user configuration (in home directory), overridden by configuration passed in by the language client, and then overriden by configuration discovered in the workspace.
To enable pydocstyle for linting docstrings add the following setting in your LSP configuration:
`
"pyls.plugins.pydocstyle.enabled": true
`
See package.json for the full set of supported configuration options.
Auto Completion:
Code Linting with pycodestyle and pyflakes:
Signature Help:
Go to definition:
Hover:
Find References:
Document Symbols:
Document Formatting:
Please branch of the develop branch which is being kept in sync with upstream rather than from the main branch if possible, to allow to send pull requests upstream.
To run the test suite:
pip install .[test] && pytest
This project is made available under the MIT License.