Interact with the Lean theorem prover language server
Project description
leanclient
Interact with the Lean 4 language server in Python.
leanclient is a thin Python wrapper around the native Lean 4 language server. It enables interaction with a Lean 4 language server instance running in a subprocess.
Check out the documentation for more information.
Key Features
- Interact: Query and change lean files via the LSP.
- Thin wrapper: Directly expose the Lean Language Server.
- Fast: Typically more than 95% of time is spent waiting.
- Parallel: Easy batch processing of files using all your cores.
Quickstart
The best way to get started is to check out this minimal example in Google Colab:
Or try it locally:
-
Setup a new lean project or use an existing one. See the colab notebook for a basic Ubuntu setup.
-
Install the package:
pip install leanclient
# Or with uv:
uv pip install leanclient
- In your python code:
import leanclient as lc
# Start a new client, point it to your lean project root (where lakefile.toml is located).
PROJECT_PATH = "path/to/your/lean/project/root/"
client = lc.LeanLSPClient(PROJECT_PATH)
# Query a lean file in your project
file_path = "MyProject/Basic.lean"
result = client.get_goal(file_path, line=0, character=2)
print(result)
# Use a SingleFileClient for simplified interaction with a single file.
sfc = client.create_file_client(file_path)
result = sfc.get_term_goal(line=0, character=5)
print(result)
# Make a change to the document.
change = lc.DocumentContentChange(text="-- Adding a comment at the head of the file\n", start=[0, 0], end=[0, 0])
sfc.update_file(changes=[change])
# Check the document content as seen by the LSP (changes are not written to disk).
print(sfc.get_file_content())
Implemented LSP Interactions
See the documentation for more information on:
- Opening and closing files.
- Updating (adding/removing) code from an open file.
- Diagnostic information: Errors, warnings and information.
- Goals and term goal.
- Hover information.
- Document symbols (theorems, definitions, etc).
- Semantic tokens, folding ranges, and document highlights.
- Locations of definitions and type definitions.
- Locations of declarations and references.
- Completions, completion item resolve.
- Getting code actions, resolving them, then applying the edits.
- Get InfoTrees of theorems (includes rudimentary parsing).
Missing LSP Interactions
- "Call hierarchy" is currently not reliable.
Might be implemented in the future:
workspace/symbol,workspace/didChangeWatchedFiles,workspace/applyEdit, ...textDocument/prepareRename,textDocument/rename
Internal Lean methods:
$/lean/rpc/connect,$/lean/rpc/call,$/lean/rpc/release,$/lean/rpc/keepAlive- Interactive diagnostics
$/lean/staleDependency
Potential Features
- Better Windows support
- Choose between
lean --serverandlake serve - Automatic testing (lean env setup) for non Debian-based systems
Documentation
Read the documentation at leanclient.readthedocs.io.
Run make docs to build the documentation locally.
Benchmarks
See documentation for more information.
Testing
make install # Installs python package and dev dependencies with uv
make test # Run all tests, also installs fresh lean env if not found
make test-profile # Run all tests with cProfile
Related Projects
Lean LSP Clients
Lean REPLs
- LeanDojo
- PyPantograph
- lean-repl-py
- repl
- minictx-eval
- LeanREPL
- LeanTool
- itp-interface
- LeanInteract
- LEAN SDK
- Kimina Lean Server
License & Citation
MIT licensed. See LICENSE for more information.
Citing this repository is highly appreciated but not required by the license.
@software{leanclient2025,
author = {Oliver Dressler},
title = {{leanclient: Python client to interact with the lean4 language server}},
url = {https://github.com/oOo0oOo/leanclient},
month = {1},
year = {2025}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file leanclient-0.3.0.tar.gz.
File metadata
- Download URL: leanclient-0.3.0.tar.gz
- Upload date:
- Size: 1.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1009a08e9c5362ebd04e78f3f993a86a5008af45e169a50befd4b2e2cb1da803
|
|
| MD5 |
5787c106c7b20958ffd129ccd742019c
|
|
| BLAKE2b-256 |
0c0b93d30e3622df32aa9e4f6ffae4b5e469e2800e62ddacc62018c2b6bb8f0b
|
File details
Details for the file leanclient-0.3.0-py3-none-any.whl.
File metadata
- Download URL: leanclient-0.3.0-py3-none-any.whl
- Upload date:
- Size: 31.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a69a669ca3327885859de8eabcaf5bbd71581e1140e0430711bbd0b8bef28d21
|
|
| MD5 |
3128ce5da2c03b7f86400cd60319da42
|
|
| BLAKE2b-256 |
4278c198b4afd530500dfd4d663b58a2d41ddff8b99fa065fce2e954520455b3
|