============ Installation ============ Installing the latest version ============================= .. tabs:: .. group-tab:: from PyPI .. prompt:: bash pip install valaw .. group-tab:: from GitHub .. prompt:: bash 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 `_. .. tabs:: .. group-tab:: from PyPI .. prompt:: bash pip install valaw==1.2.3 .. group-tab:: from GitHub .. prompt:: bash 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 :ref:`top of page`