Quick Start Guide
Complete guide to getting started with SwiftNet
Prerequisites
Installation Steps
Clone Repository
git clone https://github.com/wibi16/swiftnet2.git
cd swiftnet/python
Using UV package installer (recommended)
uv sync --all-extras
source .venv/bin/activate # For Unix
.venv\Scripts\activate # For Windows
Install from source
cd packages/swiftnet
pip install -e .
Install Playwright
playwright install --with-deps chromium

Running Examples
Standard setup
python examples/example.py --logs_dir ./logs
With human oversight
python examples/example.py --logs_dir ./logs --hil_mode
With screenshot saving
python examples/example.py --logs_dir ./logs --save_screenshots
Last updated