============ Installation ============ Installing the latest version ============================= .. tabs:: .. group-tab:: pip .. prompt:: bash pip install valaw .. group-tab:: uv .. prompt:: bash uv add valaw .. group-tab:: from GitHub .. prompt:: bash pip install git+https://github.com/Jet612/valaw.git Installing a specific version ============================= .. note:: For a list of all versions, see `releases `_. .. tabs:: .. group-tab:: pip .. prompt:: bash pip install valaw==1.2.3 .. group-tab:: uv .. prompt:: bash uv add valaw==1.2.3 .. group-tab:: from GitHub .. prompt:: bash 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 :ref:`top of page`