A client to Isabelle proof assistant server
Project description
Python client for Isabelle server
isabelle-client is a TCP client for Isabelle server. For more information about the server see Chapter 4 of the Isabelle system manual.
How to Install
The best way to install this package is to use pip:
pip install isabelle-client
Another option is to use Anaconda:
conda install -c conda-forge isabelle-client
One can also download and run the client together with Isabelle in a Docker container:
docker build -t isabelle-client https://github.com/inpefess/isabelle-client.git
docker run -d --rm -p 8888:8888 --name isabelle-client isabelle-client
And navigate to example page in your browser.
How to use
from isabelle_client import get_isabelle_client, start_isabelle_server
# start Isabelle server
server_info, _ = start_isabelle_server()
# create a client object
isabelle = get_isabelle_client(server_info)
# send a theory file from the current directory to the server
response = isabelle.use_theories(
theories=["Example"], master_dir=".", watchdog_timeout=0
)
# shut the server down
isabelle.shutdown()
For more details, follow the usage example from documentation or a notebook.
High-level connector
You can also pass a theory file body (something you typically put between begin and end keywords) to a high-level connector that will generate a temporary file for you, send it to the Isabelle server and get the result for you. For example, this snippet:
from isabelle_client.isabelle_connector import IsabelleConnector
from isabelle_client.isabelle_connector import IsabelleTheoryError
isabelle_connector = IsabelleConnector()
try:
isabelle_connector.build_theory(
r'lemma "\<forall> x. \<forall> y. x = y"' "\nby auto"
)
print("Theory is validated!")
except IsabelleTheoryError as error:
print(error.args[0])
will produce something like:
: Failed to finish proof\<^here>:
: goal (1 subgoal):
: 1. \<And>x y. x = y
More documentation
More documentation can be found here.
Similar Software
There are Python clients to other interactive theorem provers, for example:
Modules helping to interact with Isabelle server from Python are parts of the Proving for Fun project.
There are also clients to Isabelle server in other programming languages, e.g. this one in Rust.
Projects using the client
isabelle-client helped to build some cool LLM stuff (in reversed chronological order):
StepProof: Step-by-step verification of natural language mathematical proofs (Hu et al.) with code
HybridProver: Augmenting Theorem Proving with LLM-Driven Proof Synthesis and Refinement (Hu et al.)
Verification and Refinement of Natural Language Explanations through LLM-Symbolic Theorem Proving (Quan et al., EMNLP 2024) with code
How to cite
If you’re writing a research paper, you can cite the Isabelle client using the following DOI. You can also cite Isabelle 2021 (and an earlier version of the client) with this DOI. There also is a somewhat more complete (but unpublished) pre-print.
How to Contribute
Please follow the contribution guide while adhering to the code of conduct.
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 isabelle_client-1.0.1.tar.gz.
File metadata
- Download URL: isabelle_client-1.0.1.tar.gz
- Upload date:
- Size: 21.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.13.3 Linux/6.17.0-7-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9db2c1b4f22eee42067942b7fa5c594cd3cede8259b0d3f4d882059ee93006d
|
|
| MD5 |
6cd3582948a6bded6fd1cb5dad661234
|
|
| BLAKE2b-256 |
1eaff0a35a9d215efb62a9e3c583d9b3381e8960d8456ca6d6d71c0f9d296111
|
File details
Details for the file isabelle_client-1.0.1-py3-none-any.whl.
File metadata
- Download URL: isabelle_client-1.0.1-py3-none-any.whl
- Upload date:
- Size: 28.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.13.3 Linux/6.17.0-7-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b215425389018bd57109a4f66535afb804a88aa81bac7a4381c679d541c638e2
|
|
| MD5 |
9e0e34bfa2d5ec2597dede964f7d5a1a
|
|
| BLAKE2b-256 |
329b6b0865b9836a71b2901d0c9c60d883e14981389433954453be2fd8cbd9f0
|