Nabzclan Repo May 2026

# Coverage report pytest --cov=nabzclan --cov-report=html name: CI on: push: branches: [ main ] pull_request: branches: [ main ]

# Create a virtual environment python -m venv .venv source .venv/bin/activate # macOS/Linux # .venv\Scripts\activate # Windows nabzclan repo

# Install dependencies (editable mode) pip install -e ".[dev]" The [dev] extra installs testing, linting, and documentation tools. 4️⃣ Quick‑Start Guide Example: Transform a CSV to JSON # Using the CLI nabzclan csv2json --input data/sample.csv --output data/sample.json # Using the Python API from nabzclan import CsvTransformer nabzclan repo