File size: 339 Bytes
b98ffbb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
This crate corresponds to the Node API for Dora.
## Building
To build the Python module for development:
```bash
python -m venv .env
source .env/bin/activate
pip install maturin
maturin develop
```
## Type hinting
Type hinting requires to run a second step
```bash
python generate_stubs.py dora dora/__init__.pyi
maturin develop
```
|