Skip to content

akvo/igh-data-transform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IGH Data Transformation

Developer Getting Started

Prerequisites

  • UV - Fast Python package manager (manages Python versions automatically)

Installation

  1. Install UV (if not already installed):

    curl -LsSf https://astral.sh/uv/install.sh | sh
  2. Clone the repository:

    git clone <repository-url>
    cd igh-data-transform
  3. Install Python and dependencies:

    # UV will automatically install Python 3.12 if needed
    uv sync

Running the Application

You can run the CLI tool without activating the virtual environment using uv run:

# Run the CLI directly
uv run igh-data-transform

# Or run Python scripts directly
uv run python -m igh_data_transform

Alternatively, activate the virtual environment first:

source .venv/bin/activate  # On Linux/Mac
# or
.venv\Scripts\activate     # On Windows

# Then run normally
igh-data-transform

Development Workflow

The project uses UV for dependency management. Common commands:

  • Add a dependency: uv add <package-name>
  • Add a dev dependency: uv add --dev <package-name>
  • Update dependencies: uv sync
  • Run commands without activating venv: uv run <command>
  • Run Python scripts: uv run python <script.py>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages