Skip to main content

Python Language Server for the Language Server Protocol

Project description

Python LSP Server

image image image image

A Python 3.9+ implementation of the Language Server Protocol.

Installation

The base language server requires Jedi to provide Completions, Definitions, Hover, References, Signature Help, and Symbols:

pip install python-lsp-server

This will expose the command pylsp on your PATH. Confirm that installation succeeded by running pylsp --help.

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)
  • flake8 for error checking (disabled by default)
  • pylint for code linting (disabled by default)

Optional providers can be installed using the extras syntax. To install YAPF formatting for example:

pip install "python-lsp-server[yapf]"

All optional providers can be installed using:

pip install "python-lsp-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

Windows and Linux installation

If you use Anaconda/Miniconda, you can install python-lsp-server using this conda command

conda install -c conda-forge python-lsp-server

Python-lsp-server is available in the repos of every major Linux distribution, and it is usually called python-lsp-server or python3-pylsp.

For example, here is how to install it in Debian and Debian-based distributions (E.g. Ubuntu, Pop!_OS, Linux Mint)

sudo apt-get install python3-pylsp

or Fedora Linux

sudo dnf install python3-lsp-server

or Arch Linux

sudo pacman -S python-lsp-server

Only on Alpine Linux the package is named differently. You can install it there by typing this command in your terminal:

apk add py3-lsp-server

3rd Party Plugins

Installing these plugins will add extra functionality to the language server:

Please see the above repositories for examples on how to write plugins for the Python LSP Server.

cookiecutter-pylsp-plugin is a cookiecutter template for setting up a basic plugin project for python-lsp-server. It documents all the essentials you need to know to kick start your own plugin project.

Please file an issue if you require assistance writing a plugin.

Configuration

Like all language servers, configuration can be passed from the client that talks to this server (i.e. your editor/IDE or other tool that has the same purpose). The details of how this is done depend on the editor or plugin that you are using to communicate with python-lsp-server. The configuration options available at that level are documented in CONFIGURATION.md.

python-lsp-server depends on other tools, like flake8 and pycodestyle. These tools can be configured via settings passed from the client (as above), or alternatively from other configuration sources. The following sources are available:

  • pycodestyle: discovered in ~/.config/pycodestyle, setup.cfg, tox.ini and pycodestyle.cfg.
  • flake8: discovered in .flake8, setup.cfg and tox.ini

The default configuration sources are pycodestyle and pyflakes. If you would like to use flake8, you will need to:

  1. Disable pycodestyle, mccabe, and pyflakes, by setting their corresponding enabled configurations, e.g. pylsp.plugins.pycodestyle.enabled, to false. This will prevent duplicate linting messages as flake8 includes these tools.
  2. Set pylsp.plugins.flake8.enabled to true.
  3. Change the pylsp.configurationSources setting (in the value passed in from your client) to ['flake8'] in order to use the flake8 configuration instead.

The configuration options available in these config files (setup.cfg etc) are documented in the relevant tools:

Overall configuration is computed first from user configuration (in home directory), overridden by configuration passed in by the language client, and then overridden by configuration discovered in the workspace.

As an example, to change the list of errors that pycodestyle will ignore, assuming you are using the pycodestyle configuration source (the default), you can:

  1. Add the following to your ~/.config/pycodestyle:

    [pycodestyle]
    ignore = E226,E302,E41
    
  2. Set the pylsp.plugins.pycodestyle.ignore config value from your editor

  3. Same as 1, but add to setup.cfg file in the root of the project.

Python LSP Server can communicate over WebSockets when configured as follows:

pylsp --ws --port [port]

The following libraries are required for Web Sockets support:

You can install this dependency with command below:

pip install 'python-lsp-server[websockets]'

LSP Server Features

  • Auto Completion
  • Autoimport
  • Code Linting
  • Code actions
  • Signature Help
  • Go to definition
  • Hover
  • Find References
  • Document Symbols
  • Document Formatting
  • Code folding
  • Multiple workspaces

Development

Dev install

# (optional) create conda env
conda create --name python-lsp-server python=3.11 -y
conda activate python-lsp-server

pip install -e ".[all,websockets,test]"

Run server with ws

pylsp --ws -v  # Info level logging
pylsp --ws -vv # Debug level logging

To run the test suite:

# requires: pip install ".[test]" (see above)
pytest

Running ruff as a linter and code formatter on the repo:

ruff check .  # linter
ruff check --fix .  # fix all auto-fixable lint issues
ruff format .  # format the document

After adding configuration options to schema.json, refresh the CONFIGURATION.md file with

python scripts/jsonschema2md.py pylsp/config/schema.json CONFIGURATION.md

License

This project is made available under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deepnote_python_lsp_server-1.13.1rc2.tar.gz (117.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

deepnote_python_lsp_server-1.13.1rc2-py3-none-any.whl (77.8 kB view details)

Uploaded Python 3

File details

Details for the file deepnote_python_lsp_server-1.13.1rc2.tar.gz.

File metadata

File hashes

Hashes for deepnote_python_lsp_server-1.13.1rc2.tar.gz
Algorithm Hash digest
SHA256 7c7ad683c01ea493c4f0354fd52d80a53b59b4de547900ea620cff3408dad965
MD5 265df7173dcd2c10bcfb2a0118afd720
BLAKE2b-256 da22b638374aaeaf9dc0d5961ba4a86189a3253f1080b12c9b1ef1c018c3c61b

See more details on using hashes here.

File details

Details for the file deepnote_python_lsp_server-1.13.1rc2-py3-none-any.whl.

File metadata

File hashes

Hashes for deepnote_python_lsp_server-1.13.1rc2-py3-none-any.whl
Algorithm Hash digest
SHA256 1a2906fdfdbcebdda7cb1d47459cf5be7a517a646a12d7d333ae47a14de33e25
MD5 b59b51ae85dffd097696cde690c18259
BLAKE2b-256 46c34e1e13f3d15527008b7b3cc8c140ff2a19a5a399f7888e84ac6756716aa3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page