Skip to main content

A pythonic generic language server (pronounced like 'pie glass')

Project description

PyPI Version !pyversions license Documentation Status

pygls: The Generic Language Server Framework

pygls (pronounced like "pie glass") is a pythonic generic implementation of the Language Server Protocol for use as a foundation for writing your own Language Servers in just a few lines of code.

Quickstart

from pygls.lsp.server import LanguageServer
from lsprotocol import types

server = LanguageServer("example-server", "v0.1")

@server.feature(types.TEXT_DOCUMENT_COMPLETION)
def completions(params: types.CompletionParams):
    items = []
    document = server.workspace.get_text_document(params.text_document.uri)
    current_line = document.lines[params.position.line].strip()
    if current_line.endswith("hello."):
        items = [
            types.CompletionItem(label="world"),
            types.CompletionItem(label="friend"),
        ]
    return types.CompletionList(is_incomplete=False, items=items)

server.start_io()

Which might look something like this when you trigger autocompletion in your editor:

completions

Docs and Tutorial

The full documentation and a tutorial are available at https://pygls.readthedocs.io/en/latest/.

Projects based on pygls

We keep a table of all known pygls implementations. Please submit a Pull Request with your own or any that you find are missing.

Alternatives

The main alternative to pygls is Microsoft's NodeJS-based Generic Language Server Framework. Being from Microsoft it is focussed on extending VSCode, although in theory it could be used to support any editor. So this is where pygls might be a better choice if you want to support more editors, as pygls is not focussed around VSCode.

There are also other Language Servers with "general" in their descriptons, or at least intentions. They are however only general in the sense of having powerful configuration. They achieve generality in so much as configuration is able to, as opposed to what programming (in pygls' case) can achieve.

Tests

All Pygls sub-tasks require the uv: https://docs.astral.sh/uv/getting-started/installation

  • uv run --all-extras poe test
  • uv run --all-extras poe test-pyodide

Contributing

Your contributions to pygls are most welcome ❤️ Please review the Contributing and Code of Conduct documents for how to get started.

Donating

Open Law Library is a 501(c)(3) tax exempt organization. Help us maintain our open source projects and open the law to all with sponsorship.

Supporters

We would like to give special thanks to the following supporters:

License

Apache-2.0

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

pygls-2.1.1.tar.gz (55.1 kB view details)

Uploaded Source

Built Distribution

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

pygls-2.1.1-py3-none-any.whl (69.0 kB view details)

Uploaded Python 3

File details

Details for the file pygls-2.1.1.tar.gz.

File metadata

  • Download URL: pygls-2.1.1.tar.gz
  • Upload date:
  • Size: 55.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.10.20 Linux/6.17.0-1008-azure

File hashes

Hashes for pygls-2.1.1.tar.gz
Algorithm Hash digest
SHA256 1da03ba9053201bb337dcdd8d121df70feb2a91e1a0dcc74de5da79755b1a201
MD5 d1cad8510acef31f3fa690704294f8c7
BLAKE2b-256 da2e7bbe061d175c0baddde8fc9edb908a4c31ba5d9165b8c68e3439c3a9f138

See more details on using hashes here.

File details

Details for the file pygls-2.1.1-py3-none-any.whl.

File metadata

  • Download URL: pygls-2.1.1-py3-none-any.whl
  • Upload date:
  • Size: 69.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.10.20 Linux/6.17.0-1008-azure

File hashes

Hashes for pygls-2.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 510a6dea2476177230c7d851125e5948efdf3fdb9ebfd8543fc434972f8faed4
MD5 68b82de62e0a475fa1ded7128a73b5af
BLAKE2b-256 fd1a208293b6c350f5abea6941d5606080d4a492644052504f5312e5de30a902

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