You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 339 B

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