Skip to main content

Command-line interface to search MAUDE database for medical device adverse events via openFDA API

Project description

MAUDE CLI

Command-line interface, written in pure Python, for searching the MAUDE (Manufacturer and User Facility Device Experience) database through the openFDA API and local historical data. Search medical device adverse event reports directly from your terminal.

Note: The openFDA API is updated weekly but does not cover incidents before 2009. This CLI includes support for querying a local SQLite database of historical pre-2009 data!

Features

  • Command-line interface for searching the MAUDE database via the openFDA API.
  • Local database support for historical pre-2009 data not available through the API (~2.6M records).
  • Flexible term syntax: multiple groups combined with AND, terms within a group combined with OR.
  • Exclusion filtering with the same logical syntax as search terms.
  • Customizable search fields (default: mdr_text.text).
  • Pagination control: specify maximum pages and results per page.
  • Optional sorting of results using openFDA sort criteria.
  • Multiple output formats: Org-mode, JSON, CSV, and plain text.
  • Ability to select specific fields for output and define the item name field.
  • Configurable Org-mode heading level for hierarchical reports.
  • Direct file output with automatic format validation against file extension.
  • Graceful handling of stdout when no output file is specified.
  • Comprehensive logging for error reporting and debugging.
  • Fully type-annotated, lint-clean code base ready for extension or integration.

Installation

With uv:

uvx maude-cli

or pip:

pip install maude-cli

Usage

maude-cli [OPTIONS] TERM_GROUPS...

Basic Example

Search for reports containing either "MRI" or "MAGNET" AND either "STAPES" or "TYMP":

maude-cli "MRI,MAGNET" "STAPES,TYMP"

Options

  • -x, --exclude: Term groups to exclude (comma-separated terms OR'd within groups, groups AND'd together). Example: 'ARTIFACT,SHADOW' 'METAL,SCREW'
  • -f, --search-fields: Fields to search (default: mdr_text.text)
  • -p, --max-pages: Maximum pages to retrieve (0=all)
  • -l, --limit: Results per page (default: 1000)
  • -s, --sort: Sort criteria
  • -o, --format: Output format (org, json, or text; default: org)
  • -O, --output: Output file. If not used then will print to standard out.
  • -n, --name: Field to use as item name (default: report_number)
  • -F, --fields: Comma-separated fields to include in output
  • -L, --level: Org heading level (default: 3)

Output Formats

  • org: Org-mode formatted output (default)
  • json: Pretty-printed JSON
  • text: Simple text format
  • csv : CSV format.

Exclusion Criteria

The CLI supports sophisticated exclusion filtering using the -x=/``--exclude option. Exclusion terms follow the same logic as search terms but filter OUT matching results:

  • Within each exclusion group: terms are OR'd (term1 OR term2)
  • Between exclusion groups: conditions are AND'd (group1 AND group2)
  • Results matching ALL exclusion groups will be filtered out

Examples

Search with specific fields and output format:

maude-cli "pacemaker" -f device.device_name -o json -F device.brand_name,patient.age

Search with pagination control:

maude-cli "defibrillator" -p 2 -l 50

Search for all entries that contain either "MRI" or "MAGNET" AND also containing either "CARDIAC" or "VALVE" and output as a csv file.

maude-cli "mri,magnet" "cardiac,valve" -o csv

Exclusion Examples

Basic exclusion Find MRI-related reports but exclude artifacts:

maude-cli "MRI,MAGNET" -x "ARTIFACT,SHADOW"

Multi-group exclusion Find pacemaker reports but exclude both battery AND lead issues:

maude-cli "pacemaker" -x "BATTERY,POWER" "LEAD,WIRE"

(Excludes reports containing ("BATTERY" OR "POWER") AND ("LEAD" OR "WIRE"))

Field-specific exclusion Search device names for "catheter" but exclude infection-related reports:

maude-cli "catheter" -f device.device_name -x "INFECTION,SEPSIS" -F patient.problem

Manufacturer exclusion Find defibrillator reports but exclude two specific manufacturers:

maude-cli "defibrillator" -x "MEDTRONIC,ST_JUDE" "BOSTON_SCIENTIFIC"

Report type filtering Find stent reports but exclude follow-ups and summaries:

maude-cli "stent" -x "FOLLOW-UP,SUMMARY,ADDITIONAL"

Combined search/exclusion Find reports about "valve" in cardiac devices but exclude MRI-related artifacts:

maude-cli "valve" -f "device.device_name" -x "MRI,MAGNET" "ARTIFACT,SHADOW"

Complex scenario Search for infusion pump issues but exclude:

  • Software-related problems (group 1)
  • Baxter-manufactured devices (group 2)
  • Reports without patient injury (group 3)
maude-cli "infusion,pump" -x "SOFTWARE,ALGORITHM" "BAXTER" "NO INJURY,"

Local Historical Database

The CLI supports querying a local SQLite database containing historical MAUDE data from before 2009. The openFDA API only includes data from 2009 onwards, but the local database provides access to ~2.6 million historical incident reports.

The package ships with a pre-built local database, for information on building the database from the data files see here.

Automatic Query Integration

When the local database exists, the CLI automatically queries both the API and the local database, combining results:

# Searches both API (2009+) and local DB (pre-2009)
maude-cli "MRI" "pacemaker"

No additional flags are needed - the integration is transparent to the user.

For more details on database usage, see DATABASE_USAGE.md.

License

This code is licensed under the GNU GPL v3 license which can be found here.

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

maude_cli-0.3.1.tar.gz (19.9 kB view details)

Uploaded Source

Built Distribution

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

maude_cli-0.3.1-py3-none-any.whl (23.2 kB view details)

Uploaded Python 3

File details

Details for the file maude_cli-0.3.1.tar.gz.

File metadata

  • Download URL: maude_cli-0.3.1.tar.gz
  • Upload date:
  • Size: 19.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for maude_cli-0.3.1.tar.gz
Algorithm Hash digest
SHA256 d25a33c1d7eb82720167552fd9861187fccec92be86e10cc60e4012054580e85
MD5 c13c094764611df99e53a97b366b358d
BLAKE2b-256 38dee47b35645c8d377d45117b7d332a0c17a2039d07cb6bcdded94df19a2eeb

See more details on using hashes here.

File details

Details for the file maude_cli-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: maude_cli-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 23.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for maude_cli-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3be3da1b54511af7d461fa152a17b85cc8407180d9e3e369d66bc7838d5880b2
MD5 8937b334a1b6a2e7ee8a8422ddb2de59
BLAKE2b-256 885b356f718555c16f7510fcf0a9fb9e059b03111a9686b4268ed8b45786df1e

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