Skip to main content

Production-ready Python SDK for the OHDSI Athena Concepts API

Project description

athena-client

SBOM

A production-ready Python SDK for interacting with the OHDSI Athena Concepts API. Easily search, explore, and analyze medical concepts without any additional setup.

Looking for advanced concept exploration, mapping, and best practices? See the Concept Exploration Guide for a comprehensive tutorial on robust usage, advanced workflows, and real-world examples.

Installation

Basic Installation (Recommended)

For standard use, install with:

pip install athena-client

This provides essential Athena API functionalities like concept search and exploration without database integration.

Alternatively, explicitly specify:

pip install "athena-client[core]"

Both methods offer the same functionality.


Quick Start

from athena_client import Athena

# Initialize Athena client (uses public Athena API by default)
athena = Athena()

# Search for concepts
results = athena.search("aspirin")

# Different ways to handle results
concept_list = results.all()
top_three = results.top(3)
as_json = results.to_json()
as_df = results.to_df()

# Detailed information for a specific concept
details = athena.details(concept_id=1127433)

# Concept relationships
relationships = athena.relationships(concept_id=1127433)

# Concept graph
graph = athena.graph(concept_id=1127433, depth=3)

# Comprehensive summary
summary = athena.summary(concept_id=1127433)

CLI Quick Start

Athena CLI allows rapid concept search and exploration:

athena search "aspirin" --limit 3 --output json
athena details 1127433
athena relationships 1127433
athena graph 1127433 --depth 3
athena summary 1127433

Optional Extras

Additional functionalities can be installed separately:

pip install athena-client[cli]      # Command-line interface
pip install athena-client[async]    # Async client support
pip install athena-client[pandas]   # pandas DataFrame support
pip install athena-client[yaml]     # YAML format support
pip install athena-client[crypto]   # HMAC authentication
pip install athena-client[all]      # All optional dependencies

Experimental: Database Integration (Advanced Users)

Warning: Database integration features are experimental, subject to change, and may encounter errors.

Experimental database integration allows validation and concept set generation against your local OMOP database. Use these features cautiously.

Installation for Database Support

For specific database integrations:

  • PostgreSQL:

    pip install "athena-client[postgres]"
    
  • Google BigQuery:

    pip install "athena-client[bigquery]"
    

Reducing Dependency Conflicts (Advanced)

To minimize dependency issues:

  • Use specific extras when installing.
  • For BigQuery integration, use Python 3.9 and SQLAlchemy < 1.5.0.

Database Usage Example

import asyncio
from athena_client import Athena

DB_CONNECTION_STRING = "postgresql://user:pass@localhost/omop_cdm"

async def main():
    athena = Athena()
    concept_set = await athena.generate_concept_set(
        query="Type 2 Diabetes",
        db_connection_string=DB_CONNECTION_STRING
    )
    print(concept_set)

asyncio.run(main())

Experimental CLI Database Example

export OMOP_DB_CONNECTION="postgresql://user:pass@localhost/omop"
athena generate-set "Type 2 Diabetes" --output json

Troubleshooting Common Issues

  • Dependency installation problems: Ensure Python version compatibility and correct extras.
  • PostgreSQL build errors: Install PostgreSQL development tools (brew install postgresql on macOS).
  • BigQuery SQLAlchemy conflicts: Only use Python 3.9 with BigQuery integration.

Version Compatibility

  • Python: >= 3.9, < 3.13
  • SQLAlchemy: >= 1.4.0 (BigQuery limited to <1.5.0)
  • pandas: >= 1.3.0, < 3.0.0
  • pydantic: >= 2.0.0
  • httpx: >= 0.18.0
  • cryptography: >= 36.0.0

This README provides clarity on basic use, separates experimental features, and outlines recommended practices clearly.

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

athena_client-1.0.16.tar.gz (69.5 kB view details)

Uploaded Source

Built Distribution

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

athena_client-1.0.16-py3-none-any.whl (45.5 kB view details)

Uploaded Python 3

File details

Details for the file athena_client-1.0.16.tar.gz.

File metadata

  • Download URL: athena_client-1.0.16.tar.gz
  • Upload date:
  • Size: 69.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for athena_client-1.0.16.tar.gz
Algorithm Hash digest
SHA256 8d0046861be524ed46a8676883cce24a39839475b27a8615a045936f8df714cb
MD5 57833e3033ec8e3b11682c4114d908b0
BLAKE2b-256 de542bb9ac7b44c245f0195fb4ca0085e95597ccb3ab5f11b7e75d4aaab5abdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for athena_client-1.0.16.tar.gz:

Publisher: publish.yml on aandresalvarez/athena_client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file athena_client-1.0.16-py3-none-any.whl.

File metadata

  • Download URL: athena_client-1.0.16-py3-none-any.whl
  • Upload date:
  • Size: 45.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for athena_client-1.0.16-py3-none-any.whl
Algorithm Hash digest
SHA256 7c1dcd667edd639d3eb30295e36755df3cf7160883ae11bbb6da5800656af49d
MD5 477f0fe0bee676800ecbfd74cd093b1b
BLAKE2b-256 42eeba014f9731db27ed4cd1dc88eccd1c64c979490baca888c85a757da59608

See more details on using hashes here.

Provenance

The following attestation bundles were made for athena_client-1.0.16-py3-none-any.whl:

Publisher: publish.yml on aandresalvarez/athena_client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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