Installation
Requirements
- Python 3.10+
pip- A virtual environment is recommended
Install from PyPI
pip install pylage
For development and browser testing:
pip install "pylage[test]"
Verify
python -c "import pylage; print(pylage.__version__)"
You should see:
1.0.6
Development install (from source)
git clone https://github.com/aanalyst-rachit/pylage.git
cd pylage
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[test]"