Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

An implementation of the Language Server Protocol for Python

License

NotificationsYou must be signed in to change notification settings

deepnote/python-language-server

 
 

Repository files navigation

Python Language Server

Deprecated in favor ofour fork of python-lsp-server . Use it instead.

A Python 2.7 and 3.5+ implementation of theLanguage Server Protocol.

[Deepnote] Local development

Runpython -m pyls --tcp --host 0.0.0.0 -v to start language server, before launching colaboration service.

Installation

The base language server requiresJedi to provide Completions, Definitions, Hover, References, Signature Help, andSymbols:

pip install python-language-server

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 installYAPF 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

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 Language Server. Please file anissue if you require assistance writing a plugin.

Configuration

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'] inorder to respect flake8 configuration instead.

Overall configuration is computed first from user configuration (in home directory), overridden by configurationpassed 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`

Seevscode-client/package.json for the full set of supported configuration options.

Language Server Features

Auto Completion:

https://raw.githubusercontent.com/palantir/python-language-server/develop/resources/auto-complete.gif

Code Linting with pycodestyle and pyflakes:

https://raw.githubusercontent.com/palantir/python-language-server/develop/resources/linting.gif

Signature Help:

https://raw.githubusercontent.com/palantir/python-language-server/develop/resources/signature-help.gif

Go to definition:

https://raw.githubusercontent.com/palantir/python-language-server/develop/resources/goto-definition.gif

Hover:

https://raw.githubusercontent.com/palantir/python-language-server/develop/resources/hover.gif

Find References:

https://raw.githubusercontent.com/palantir/python-language-server/develop/resources/references.gif

Document Symbols:

https://raw.githubusercontent.com/palantir/python-language-server/develop/resources/document-symbols.gif

Document Formatting:

https://raw.githubusercontent.com/palantir/python-language-server/develop/resources/document-format.gif

Development

To run the test suite:

pip install .[test] && pytest

Develop against VS Code

The Python language server can be developed against a local instance of Visual Studio Code.

InstallVSCode

# Setup a virtual envvirtualenv env. env/bin/activate# Install pylspip install.# Install the vscode-client extensioncd vscode-clientyarn install# Run VSCode which is configured to use pyls# See the bottom of vscode-client/src/extension.ts for infoyarn run vscode --$PWD/../

Then to debug, click View -> Output and in the dropdown will be pyls.To refresh VSCode, press Cmd + r

License

This project is made available under the MIT License.

About

An implementation of the Language Server Protocol for Python

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python99.2%
  • Other0.8%

[8]ページ先頭

©2009-2025 Movatter.jp