veilid/veilid-python
Christien Rioux 48ab34f577 clean up error, make python tests more reliable 2023-10-21 15:54:07 -04:00
..
tests clean up error, make python tests more reliable 2023-10-21 15:54:07 -04:00
veilid add message field for python schema 2023-10-21 15:03:26 -04:00
.gitignore fix tests 2023-06-19 15:23:30 -04:00
LICENSE.md licensing 2023-07-19 12:48:44 -04:00
README.md Make Python README a bit more descriptive 2023-09-04 11:07:50 -05:00
poetry.lock python work 2023-06-14 16:33:14 -04:00
poetry.toml fix tests 2023-06-19 15:23:30 -04:00
poetry_install.sh network keying 2023-06-23 21:12:48 -04:00
pyproject.toml Version update: v0.2.3 → v0.2.4 2023-10-15 12:24:59 -05:00
update_schema.sh Add .json file extension to jsonschema output files 2023-09-02 14:17:43 -04:00

README.md

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.