Metadata-Version: 2.1
Name: veilid
Version: 0.4.3
Summary: Create an application in Python using the distributed Veilid framework for private, E2EE, app-to-app communication.
License: MPL-2.0
Author: Veilid Team
Author-email: contact@veilid.com
Requires-Python: >=3.12.5,<4.0.0
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 3
Requires-Dist: appdirs (>=1.4.4,<2.0.0)
Requires-Dist: jsonschema (>=4.17.3,<5.0.0)
Project-URL: homepage, https://veilid.com
Project-URL: repository, https://gitlab.com/veilid/veilid
Description-Content-Type: text/markdown

# Veilid Bindings for Python
Create an application in Python using the distributed [Veilid](https://veilid.com) 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](https://gitlab.com/veilid/veilid/-/blob/main/INSTALL.md)
* Veilid Python makes heavy use of async and other bleeding edge functions requiring Python version >= 3.12.5

## Install

```
poetry add veilid
```
or 
```
pip3 install veilid
```

## Development

To run tests:
```shell
poetry run pytest -v -s
```

To update schema for validation with the latest copy from a locally running `veilid-server`:
```shell
./update_schema.sh
```

## Basic Veilid App Setup

A demo chat application is available to review [here](https://gitlab.com/veilid/python-demo).
