Toolkit and interactive widget for querying time-series healthcare data
Reason this release was yanked:
Temporary upload
Project description
TempoQL: Standardized Temporal Queries for ML in Healthcare
Quickstart
You may first want to create a conda environment to install packages in. Use a Python version between 3.10 and 3.14 for compatibility with TempoQL's dependencies. Then run:
pip install tempo-ql
We have had issues in the past running the JupyterLab widget with virtualenv - therefore we recommend using conda.
Online Examples
There are two examples on Google Colab to show you how TempoQL can be used, both involving the MIMIC-IV dataset but in different data formats:
- MIMIC-IV Demo Data in OMOP Common Data Model - uses only non-credentialed data
- MIMIC-IV Full Dataset on BigQuery - requires credentialed PhysioNet access and a Google Cloud Platform account. Follow the instructions on this page to get access.
Example Usage
The demo.ipynb and demo_mimiciv_full.ipynb notebooks in the repo (or the Colab examples above) shows how to use the query language using MIMIC-IV in OMOP format. You can run these to explore how TempoQL enables simple, readable and precise queries on EHR data.
You will need a dataset and a dataset specification to start using TempoQL. Then, you can import TempoQL and use it in your Python code like this:
from tempo_ql import QueryEngine, GenericDataset, formats
db_specification = formats.omop() # also available: mimiciv(), eicu()
sql_connection_string = "bigquery://my-project" # or "duckdb://my_local_db", etc.
dataset = GenericDataset(sql_connection_string, db_specification)
query_engine = QueryEngine(dataset)
# see demo.ipynb for further options, such as configuring a variable store
query_engine.list_data_elements(scope="Measurement") # returns a dataframe of Measurement concepts
query_engine.query("{Temperature Celsius; scope = Measurement}") # retrieves temperature measurements
You can access the interactive query authoring environment in a Jupyter notebook (or VSCode IPython notebook) like so:
query_engine.interactive(file_path=..., api_key=...)
Both file_path and api_key are optional. file_path allows you to read and
write queries from a local JSON file, enabling you to persist the queries that you
create in the interactive session. api_key can be a Gemini API key allowing you
to use LLMs to author, update, explain, and debug queries.
Dev Notes
For local install: clone the repo, cd into it and run pip install -e ..
Running the dev server: Make sure you have NodeJS version 20 or later. cd into the client directory, run npm install, then npm run dev. Then in your call to QueryEngine.interactive, set dev=True. Now when you change the frontend source code, the widget will automatically update.
If the Vite dev server stops working after you make some changes (it may show a JavaScript error like 'failed to load model'), check that any imports of TypeScript types are prefixed with the word type.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tempo_ql-0.1.2.tar.gz.
File metadata
- Download URL: tempo_ql-0.1.2.tar.gz
- Upload date:
- Size: 3.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ff746e83df50a1c35f08042ff393b34e04eec771797e29b443411f14bae4ea6
|
|
| MD5 |
8ac654e8ac71ba1ffac06b9757dda4e2
|
|
| BLAKE2b-256 |
ec00f2edba298206c7a066f55efe1b7fe0435878396483bdde4b1d9bc64e7576
|
File details
Details for the file tempo_ql-0.1.2-py3-none-any.whl.
File metadata
- Download URL: tempo_ql-0.1.2-py3-none-any.whl
- Upload date:
- Size: 186.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c9c63db4beab30c390386c159d1a87e461304c6c7becb352366c9796b4b22bc
|
|
| MD5 |
f98e9c57fe97a6fa0825c992e849912e
|
|
| BLAKE2b-256 |
68bdbab737da6cfc3279bec7801ebdd362eb05797f469ba1706729a85ade58b5
|