Skip to main content

Python client and CLI for the METT Data Portal API

Project description

METT Data Portal Client

Python 3.10+ License: Apache-2.0 PyPI version

Python client library and command-line interface (CLI) for the Microbial Ecosystems Transversal Themes (METT) Data Portal.

Features

  • 🚀 High-level Python API - Clean, intuitive interface for programmatic access
  • 💻 Command-line Interface - CLI with rich output and shell completion
  • 📊 Multiple Output Formats - JSON, TSV, and formatted tables
  • 🔒 Flexible Configuration - Environment variables and config file support
  • 📚 Documentation - Usage examples and API details
  • 🔄 Auto-generated SDK - Stays in sync with the API schema

Quick Start

Installation

pip install mett

CLI Usage

# List all species
mett species list

# Search genomes
mett genomes search --query "Bacteroides" --per-page 5

# Get gene information
mett genes get BU_ATCC8492_00001

Python API

from mett_client import DataPortalClient

# Initialize client
client = DataPortalClient()

# List species
species = client.list_species()
print(f"Found {len(species)} species")

# List genomes (paginated)
result = client.list_genomes(per_page=5)
print(f"Found {len(result.items)} genomes")

# Search genomes by species
result = client.species_genomes("BU", per_page=5)
print(f"Found {len(result.items)} BU genomes")

# Search genomes with query
result = client.search_genomes(query="ATCC", per_page=5)
print(f"Found {len(result.items)} genomes matching 'ATCC'")

# Search genomes - check first genome
if result.items:
    print(f"First genome: {result.items[0].isolate_name}")

Configuration

The client/CLI can be configured using environment variables (recommended for CI and local dev) or a config file (if supported by your implementation).

Common environment variables

# Base URL for the METT Data Portal API (if your client supports overriding it)
export METT_BASE_URL="https://www.gut-microbes.org/"

# If the API requires authentication (token / key), set it here (adjust name to match your implementation)
# export METT_API_TOKEN="..."

# SSL verification (useful for dev environments without certificates)
export METT_VERIFY_SSL=false

Documentation

Complete documentation is available in the docs/ directory:

Source & Support

Development

From Source (with uv) — recommended

git clone https://github.com/EBI-Metagenomics/mett-dataportal-client.git
cd mett-dataportal-client

# Create a virtual environment and install all dependencies from pyproject.toml
uv sync --all-extras --dev

# Run the CLI via uv (no manual activation needed)
uv run mett --help

Running tests and linting (with uv)

# Install all dev dependencies (if not already done)
uv sync --all-extras --dev

# Run tests
uv run pytest -v

# Run Ruff lint and formatting checks
uv run ruff check mett_client/ scripts/ tests/
uv run ruff format --check mett_client/ scripts/ tests/

# (Optional) Run pre-commit hooks on all files
uv run pre-commit run --all-files

Alternative (classic pip workflow)

If you prefer not to use uv, you can still work with a standard virtual environment:

python -m venv .venv
source .venv/bin/activate

pip install --upgrade pip
pip install -e ".[dev]"

# CLI is now on PATH inside the venv
mett --help

Requirements

  • Python 3.10+
  • See pyproject.toml for full dependency list

License

Apache-2.0 License - see LICENSE file for details.


Note: For development environments without SSL certificates, you may need to set:

export METT_VERIFY_SSL=false

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mett-0.0.1a5.tar.gz (87.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mett-0.0.1a5-py3-none-any.whl (187.5 kB view details)

Uploaded Python 3

File details

Details for the file mett-0.0.1a5.tar.gz.

File metadata

  • Download URL: mett-0.0.1a5.tar.gz
  • Upload date:
  • Size: 87.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for mett-0.0.1a5.tar.gz
Algorithm Hash digest
SHA256 ab2911913bc98e61a810667fba0ffb487a7898bbbd43c7c539d7b9fe0309445b
MD5 3ab01bba149d09f00b7c9ebdf656841a
BLAKE2b-256 9d74696e920af27ae6f6a14b3061f8d31872de275ab16257678e19a8d8a917df

See more details on using hashes here.

File details

Details for the file mett-0.0.1a5-py3-none-any.whl.

File metadata

  • Download URL: mett-0.0.1a5-py3-none-any.whl
  • Upload date:
  • Size: 187.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for mett-0.0.1a5-py3-none-any.whl
Algorithm Hash digest
SHA256 32988844aac2e9f43f47aa185a9ec6d5a8c06face4517ad0fca5ce90419fc01b
MD5 8a93d14f9816344375cdcf4786aa9804
BLAKE2b-256 54bc4ea205a43039f50cf9f69c1aa57c4a7648d3a534d557686d93ab4d16f61c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page