Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.25 KB

index.rst

File metadata and controls

49 lines (36 loc) · 1.25 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.6+.

User Guide

pages/getting_started pages/tutorial pages/advanced_usage pages/testing