Installation
Installing the latest version
pip install valaw
pip install git+https://github.com/Jet612/valaw/releases/latest
Installing a specific version
Note
Some versions on GitHub may have a tag on the end of the version number, for example, 1.2.3-beta. For a list of all the versions on GitHub, see releases.
pip install valaw==1.2.3
pip install git+https://github.com/Jet612/valaw/tree/1.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
Note
You don’t have to use ‘v’, you can use any letter or word you want
Back to top of page