960a4cb964
This reverts commit 2d291b86b64542845bc10c092e8ad6a78e8b85df.
Veilid Bindings for Python
Create an application in Python using the distributed Veilid framework for app-to-app communication.
Prerequisites
- A headless Veilid node must be installed on the same host as the Python application. Install instructions can be found here
- Veilid Python makes heavy use of async and other bleeding edge functions requiring Python version >= 3.11.4
Usage
To use:
poetry add veilid
or
pip3 install veilid
Development
To run tests:
poetry run pytest
To update schema for validation with the latest copy from a running veilid-server:
./update_schema.sh
Basic Veilid App Setup
A demo chat application is available to review here.