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="http://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.1a4.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.1a4-py3-none-any.whl (187.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mett-0.0.1a4.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.1a4.tar.gz
Algorithm Hash digest
SHA256 c0210efce3a09e2ee38fb2aa361c849244d327c5bd4b32c72d5cbec0b24c49ba
MD5 f696ce04912833daa6399231a7697acc
BLAKE2b-256 3c64943ac5ade8530cceea14e1df4974a8e02947d99075c61a55301e14d4a5ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mett-0.0.1a4-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.1a4-py3-none-any.whl
Algorithm Hash digest
SHA256 f8b4bb31bee6c941f6b143a99744ef6ee674075837ccf5ec5efba2f7dfc9b164
MD5 57a6b5db56aeec8527e67d01c99531b6
BLAKE2b-256 862c4a9184a9a65542ec80e6c4afe5c1847b41b9c9618ed27dcc8a0f48b5f394

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