Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.29 KB

index.rst

File metadata and controls

51 lines (38 loc) · 1.29 KB

pygls

pygls (pronounced like “pie glass”) is a generic implementation of the Language Server Protocol written in the Python programming language. It allows you to write your own language server in just a few lines of code.

Features

  • cross-platform support
  • TCP/IP and STDIO communication
  • runs in asyncio event loop
  • register LSP features and custom commands as:
    • asynchronous functions (coroutines)
    • synchronous functions
    • functions that will be executed in separate thread
  • thread management
  • in-memory workspace with full and incremental document updates
  • type-checking
  • good test coverage

Python Versions

pygls works with Python 3.8+.

User Guide

pages/getting_started pages/tutorial pages/user-guide pages/testing pages/migrating-to-v1 pages/reference