Installation
Installing the latest version
pip install valaw
uv add valaw
pip install git+https://github.com/Jet612/valaw.git
Installing a specific version
Note
For a list of all versions, see releases.
pip install valaw==1.2.3
uv add valaw==1.2.3
pip install git+https://github.com/Jet612/valaw.git@v1.2.3
Importing the library
To import the library, use the following code:
import valaw
If you want to import the library as a different name, use:
import valaw as v
Back to top of page