Skip to main content

Limebit Medmodels Package

Project description

MedModels Logo

MedModels: A Rust-Powered Python Framework for Modern Healthcare Research

Motivation

Analyzing real-world evidence, especially patient data, is a complex task demanding accuracy and reproducibility. Currently, research teams often re-implement the same statistical methods and data processing pipelines, leading to inefficient codebases, faulty implementations and technical debt.

MedModels addresses these challenges by providing a standardized, reliable, and efficient framework for handling, processing, and analyzing electronic health records (EHR) and claims data.

Target Audience:

MedModels is designed for a wide range of users working with real-world data and electronic health records, including:

  • (Pharmaco-)Epidemiologists
  • Real-World Data Analysts
  • Health Economists
  • Clinicians
  • Data Scientists
  • Software Developers

Key Features

  • Rust-Based Data Class: Facilitates the efficient transformation of patient data into adaptable and scalable network graph structures.
  • High-Performance Computing: Handles large datasets in memory while maintaining fast processing speeds due to the underlying Rust implementation.
  • Standardized Workflows: Streamlines common tasks in real-world evidence analysis, reducing the need for custom code.
  • Interoperability: Supports collaboration and data sharing through a unified data structure and analysis framework.

Key Components

  • MedRecord Data Structure:

    • Graph-Based Representation: Organizes medical data using nodes (e.g., patients, medications, diagnoses) and edges (e.g., date, dosage, duration) to capture complex interactions and dependencies.
    • Efficient Querying: Enables efficient querying and retrieval of information from the graph structure, supporting various analytical tasks.
    • Dynamic Management: Provides methods to add, remove, and modify nodes and edges, as well as their associated attributes, allowing for flexible data manipulation.
    • Effortless Creation: Easily create a MedRecord from various data sources:
      • Pandas DataFrames: Seamlessly convert your existing Pandas DataFrames into a MedRecord.
      • Polars DataFrames: Alternatively, use Polars DataFrames as input for efficient data handling.
      • Standard Python Structures: Create a MedRecord directly from standard Python data structures like dictionaries and lists, offering flexibility for different data formats.
    • Grouping and Filtering: Allows grouping of nodes and edges for simplified management and targeted analysis of specific subsets of data.
    • High-Performance Backend: Built on a Rust backend for optimal performance and efficient handling of large-scale medical datasets.
  • Treatment Effect Analysis:

    • Estimating Treatment Effects: Provides a range of methods for estimating treatment effects from observational data, including:

      • Continuous Outcomes: Analyze treatment effects on continuous outcomes.
      • Binary Outcomes: Estimate odds ratios, risk ratios, and other metrics for binary outcomes.
      • Time-to-Event Outcomes: Perform survival analysis and estimate hazard ratios for time-to-event outcomes.
      • Effect Size Metrics: Calculate standardized effect size metrics like Cohen's d and Hedges' g.
    • Matching:

      • (High Dimensional) Propensity Score Matching: Reduce confounding bias by matching treated and untreated individuals based on their propensity scores.
      • Nearest Neighbor Matching: Match individuals based on similarity in their observed characteristics.

Getting Started

Installation:

MedModels can be installed from PyPI using the pip command:

pip install medmodels

Quick Start:

Here's a quick start guide showing an example of how to use MedModels to create a MedRecord object, add nodes and edges, and perform basic operations.

import pandas as pd
import medmodels as mm

# Patients DataFrame (Nodes)
patients = pd.DataFrame(
    [
        ["Patient 01", 72, "M", "USA"],
        ["Patient 02", 74, "M", "USA"],
        ["Patient 03", 64, "F", "GER"],
    ],
    columns=["ID", "Age", "Sex", "Loc"],
)

# Medications DataFrame (Nodes)
medications = pd.DataFrame(
    [["Med 01", "Insulin"], ["Med 02", "Warfarin"]], columns=["ID", "Name"]
)

# Patients-Medication Relation (Edges)
patient_medication = pd.DataFrame(
    [
        ["Patient 02", "Med 01", pd.Timestamp("20200607")],
        ["Patient 02", "Med 02", pd.Timestamp("20180202")],
        ["Patient 03", "Med 02", pd.Timestamp("20190302")],
    ],
    columns=["Pat_ID", "Med_ID", "Date"],
)

# Create a MedRecord object using the builder pattern
record = (
    mm.MedRecord.builder()
    .add_nodes((patients, "ID"), group="Patients")
    .add_nodes((medications, "ID"), group="Medications")
    .add_edges((patient_medication, "Pat_ID", "Med_ID"))
    .add_group("US-Patients", nodes=["Patient 01", "Patient 02"])
    .build()
)

# Print an combined overview of the nodes and edges in the MedRecord
print(record)

# You can also print only nodes and edges respectively
print(record.overview_nodes())
print(record.overview_edges())

# Accessing all available nodes
print(record.nodes)
# Output: ['Patient 03', 'Med 01', 'Med 02', 'Patient 01', 'Patient 02']

# Accessing a certain node and its attributes
print(record.node["Patient 01"])
# Output: {'Age': 72, 'Loc': 'USA', 'Sex': 'M'}

# Getting all available groups
print(record.groups)
# Output: ['Medications', 'Patients', 'US-Patients']

# Getting the nodes that are within a certain group
print(record.nodes_in_group("Medications"))
# Output: ['Med 02', 'Med 01']

# Save the MedRecord to a file in RON format
record.to_ron("record.ron")

# Load the MedRecord from the RON file
new_record = mm.MedRecord.from_ron("record.ron")

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

medmodels-0.3.2.tar.gz (692.2 kB view details)

Uploaded Source

Built Distributions

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

medmodels-0.3.2-cp313-cp313-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.13Windows x86-64

medmodels-0.3.2-cp313-cp313-win32.whl (7.9 MB view details)

Uploaded CPython 3.13Windows x86

medmodels-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

medmodels-0.3.2-cp313-cp313-musllinux_1_2_i686.whl (10.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

medmodels-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl (10.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

medmodels-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

medmodels-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

medmodels-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

medmodels-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (11.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

medmodels-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

medmodels-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

medmodels-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (9.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

medmodels-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

medmodels-0.3.2-cp312-cp312-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.12Windows x86-64

medmodels-0.3.2-cp312-cp312-win32.whl (7.9 MB view details)

Uploaded CPython 3.12Windows x86

medmodels-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

medmodels-0.3.2-cp312-cp312-musllinux_1_2_i686.whl (10.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

medmodels-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl (10.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

medmodels-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

medmodels-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

medmodels-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

medmodels-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (11.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

medmodels-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

medmodels-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

medmodels-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (9.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

medmodels-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

medmodels-0.3.2-cp311-cp311-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.11Windows x86-64

medmodels-0.3.2-cp311-cp311-win32.whl (7.9 MB view details)

Uploaded CPython 3.11Windows x86

medmodels-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

medmodels-0.3.2-cp311-cp311-musllinux_1_2_i686.whl (10.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

medmodels-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl (10.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

medmodels-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

medmodels-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

medmodels-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

medmodels-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (11.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

medmodels-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

medmodels-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

medmodels-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (9.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

medmodels-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

medmodels-0.3.2-cp310-cp310-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.10Windows x86-64

medmodels-0.3.2-cp310-cp310-win32.whl (7.9 MB view details)

Uploaded CPython 3.10Windows x86

medmodels-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

medmodels-0.3.2-cp310-cp310-musllinux_1_2_i686.whl (10.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

medmodels-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl (10.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

medmodels-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

medmodels-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

medmodels-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

medmodels-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (11.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

medmodels-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

medmodels-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

medmodels-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (9.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

medmodels-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file medmodels-0.3.2.tar.gz.

File metadata

  • Download URL: medmodels-0.3.2.tar.gz
  • Upload date:
  • Size: 692.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for medmodels-0.3.2.tar.gz
Algorithm Hash digest
SHA256 7836ef47b302399121a962d2ae876cf36b950988a841ce18e44fe1fe07e9eb64
MD5 66f2ea9b79c56f000a4f65918a915b2f
BLAKE2b-256 32b627e7654ad8f2bdf30be1a20f381813cce6b8e2043941967c16188df33f9d

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d333b2e4f9c41ff3f41eeae00368447609603a45c7304d1d947198914c73a731
MD5 f79bb07d7628fb209575a3c5a97473f1
BLAKE2b-256 9a0211ea5db339696122e3bd9f96700c2483cdde068f38cdb00b0f189dbd30dc

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: medmodels-0.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5e3a209b5c6571eb01f26ad04721ba2583e47bfecc3f4b2a98a39f167298219c
MD5 a500ad819db753e528b4bb7224370d96
BLAKE2b-256 243fa2595f044f88349d19d36e923510ce9614701422f9d28ffb521e1eba453b

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75bc1bc9f3aab1a5801c86b18624bed925dc5c217cc3c1416a3b601914c8d709
MD5 dc6dea721a9e690d92b7dc6db8490349
BLAKE2b-256 28a53f4bcc04aeacd4a5bae0c609b0fbbe0e67c832eb18e8125c2b4d71a9dd90

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33cd10bb9c1304f49b96ad283cae7e3df0048ce083d7cbaa6f52ed301e1bf888
MD5 03bc4830e8494f6963446bfe1e2e5694
BLAKE2b-256 0f11aa326f344bd0ef7d076d6a66ffbb5fdf589860f62125f4046d3e8ba63267

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 226eb5de651f6981f26987c73f312c6d05129eea46525042a86fd5d8e3b54aa8
MD5 0bb063cafbce59eeb6db697d3bb66a51
BLAKE2b-256 ecd7299abc484a978880f1edad7ce951e4a3b80af56bf99dc782dd0ebd931ca0

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebf1e46f5aa86bdddf9de9c8089e2a2f6da4473ccdb1994b6f0d29e46a573302
MD5 971ab9c8e886225fae4446d571d710c4
BLAKE2b-256 57034ea328527487e75c43560961c177951bc86e85f078a4d271f7303bef2ac0

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 079a3cc30b865c8940ebefb6a56609c7fdaf33c37638b1d5c6cb51c8e4d7c5b3
MD5 f0a9fdf71423e7de003a3b10ffd3a720
BLAKE2b-256 9314056d39ea1ca7262ed49ddf123962c371371d45997b5141fcb06d7a93f82c

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 960c620ec61239b63a2c895ff56eaef05f73c135664cdc4d39d514d6c246f017
MD5 5517a77f48882e2e617d4dd157ae10aa
BLAKE2b-256 8440768ec4e1dbfc88dedee929fdfafac027ee7905621672dffcac7788fe0dcc

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5f4193e15937184f6f73c692a148af1ed1fb228fe827e39754a624bae450312
MD5 b170a90b53bb08f5ad3391e5fb00f691
BLAKE2b-256 03f85b1f87b8060561ea38c4a019d813debcbc2c0b6c1161d7585e9e64ac3f04

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96035c87868a89dc137e75f8129282a06abf514b5d74d22cda6a22d2318c6d60
MD5 01b31d2e162080568294d12d1990306b
BLAKE2b-256 80260b9d729303cad5dd2e055a9ef4a9865b580a987d63da1e826c7ab08b4d32

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ef1db7c66ee35e6050b81701d564e010d52a0febe211773d496936496632090
MD5 642f025e21b0f7d425058a196dbb9219
BLAKE2b-256 4b8765f71aec8bef9efbc9cb8867d9126132f09b91c085b606536485fb1ff130

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db3cb7bac7f42b94d235ccef1027b93057e4781aa6ce9365f1d8698dfd7912ec
MD5 c8429ee9d4d4aad0b2a7dc878a82b953
BLAKE2b-256 5a901a94c1652f9efec558c67318a9a9897b08e64b14904db14121ddf4a19303

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ce7615799bb84ef0f6ff441dfc94424613dd38d8a3b1f0fff4839ee4a9f79a4
MD5 b59fed5b8b9a10007fca823a314150a8
BLAKE2b-256 c889d7bb1964b0d4a9ddf0f660bfb31415f5f11aded6cfa386ddcc148df2a4cd

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7c753e5397083aa07bb1bfc9dd01fbf6c6f5c4287c083034707d5a8fd331b280
MD5 2f3255b66c1b5caf76a9caf72e9a9ece
BLAKE2b-256 df1d60e81b7d609281230212da2c2569aec10ec1ba2c44f683a13b5327159b59

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: medmodels-0.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f0c356051aed24cf8fbbfbf3493b0cf20d85b19f9173bc14ddd92e2fb65f2aa7
MD5 d927e6a6be531089b8eb77be1177477a
BLAKE2b-256 6bb8fe023252843b056a28bb4f86a792b4e32beb6a7a2d9e3ce3fdaad9917dd2

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 add9a67c99a432b29821594d83f67b89b2a6ae7ebc4ac5af00edd62e6a82bba0
MD5 c6d140e9612fed034db2328d5304f682
BLAKE2b-256 7f5257a3f6fa9c1722538b77c106aa420636562050233e429b5f9e16260cdef0

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 788de488f2f0d44aa17a38f0f6c83bccb9f187b551b90d30e190374dbdc5371e
MD5 055f40e876d716c6f92a3e5ba7891400
BLAKE2b-256 6f85972aaaa07bcfa76b3d8484641a3ef4cce9bb3c075b44d9b4070e5f4df890

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 43e621bf0791562a2ad55181e920977504833a0039f52013bcf19a4fec7a2fd6
MD5 4be738569f22fe1974f7cdde2cb2a38a
BLAKE2b-256 ad7ce34b1a81e95dbc604740249076136620a2faefc226c5cf08f6007304a7c5

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7d0300eee08841678f9418310444f8af915dff735345b46a589ae8dd812dd79
MD5 d36a324c712b18fad80ac2432b44b57b
BLAKE2b-256 86244400ce0ab09814a05c86f66ded1e13e13f3777f92053a20dab31975ff692

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 775b5115ea909ebb6f029f83c10f4faaec368d7828871eebac4c2652d18fea81
MD5 a426705a5a038a215490e1b107b7e7e3
BLAKE2b-256 ecf8d10b3f50e31d9c5b7c6bf3b1f39df88c58c5b3b3dc66ebab18e03cbe6e89

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c50a062652ef08b538279c3b07f85dff85850792b29ca7e39a1055e97d5b70c
MD5 adc09dcbdb07317710c803587106469c
BLAKE2b-256 d50da49af0881e53a90782f93d7e8de270dd6e233963cfc58ebf5199d3669c65

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c314ff1c746370f590c6d707e635907b1f970487ef44bfd90e37551a03dd8b71
MD5 1e438a5a61b642d012c551810c7cd533
BLAKE2b-256 a72b2473f9c177d4ee8cc4ed91885b54ba5e321cd055438f09ee0018dc4f93fe

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7812021902efd2776fe25352dd7f0575fba7e95b9cabd3034e5b7d416b743dcd
MD5 89b4482bd604b4ae6237640e878a0f67
BLAKE2b-256 843aff543e9a080337a1c85e21e6d185188cf33981f4af0207b34dd7e6ac4444

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0851418a82a375f2d03bf37519251f35245e56fba1a91c8ae8d6a15cf3cc505
MD5 f877c5f57c8afbd2fa169b2fb5f39ed5
BLAKE2b-256 dadfa4a21b176df78e1aac7fa9fa5a0857a8ffbbf466ff2318bc220051fe1c27

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 800f4ec97b0aed8ba1099dd27789792c9365543e57f8813b8677ac3665d52054
MD5 afbac18c8873ecb97c852b920c1e3ade
BLAKE2b-256 e5a385ac0c29429edf3cf741bc91e0344e0ce70a74129076f975f65cb0532cb6

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ecf20b5f6fb7135ce405489467f90528934c50207e584ce59dc13bf4933ba90
MD5 87724feff18839adecd0d2f3d2167cf9
BLAKE2b-256 22ad1874ea960f829aaa7b6af97475072faa58256c5352bcc26f21db8101b634

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cfd7f359fd1fc68eaf52e4b379140f49ec547ebe2b6a95927807fd518d441559
MD5 785d9bc8035360dcbc9274b254d74e31
BLAKE2b-256 c25ae0f31bac862e1cd75ff6f6b291b4a412f8aee9c521ce3d67cb6c85ad6f17

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: medmodels-0.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3e76687790b65ebe84a8a132351f203627cbc76dfc5edde401b999a1235a5c51
MD5 1231d79ad188ca05e5912afb49e20276
BLAKE2b-256 1721e62e199fabd8a0ddc14942c266625563b9fb64decd6953b80999e620f994

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac7c1e9e54df9a43d354dc877be351e71265d5fb41b51bfedde6537896155e2d
MD5 a0af3a514e700550f759ff6c90ba649b
BLAKE2b-256 110c81ce1b19a4975d3248859fdc57ba64d18737f664c13ba2bade4d247e699b

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b08cc2f090f32ee3176ff409811b69242221997f4b6353d6b5b2d65f49a9f707
MD5 eeaf73550124e7f592c47087f9476cfd
BLAKE2b-256 16f864a83c0ae7c27da3abe6befe04667292b661c65f63f8b35d399bf076f7eb

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 36ef170fbdea89c4f422771433c440cb47af0c62368636a560be51e2c3f9c335
MD5 edb5cfd5dbaa50ae4a40dc842d06d435
BLAKE2b-256 1fa6dfe2e72b7f4d086f94f8ba0b5f18d08d9c977357c424e9f5e508423afa95

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee9ceff06374839e077e6b0ded80065a38c9c820b788a37ae5d2d0a417bf9b77
MD5 51e8ba7e1151b632afb5d17df9efa324
BLAKE2b-256 a6dcc0b36a9cb6bca9f1636b500914d8324e2ad4dcc5ed43c1f5f43ede2eb540

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91b4f02ff94bb14fe059e22ecb1cbdcabd7c2c5ea55152cab3bebfe12ab59e56
MD5 780ca376c7809f658f3c3ac55323447c
BLAKE2b-256 887cb4086391192e9ea4a1739f9688155d1cb68526ca440f1dbe919ed0d455f4

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92d9a95b0694ad6350c57f7a601a03dd764dca7b5dfab4b256df490d8de10809
MD5 d91f9b9b84b3bddb1a601caf4b70c9a2
BLAKE2b-256 cd9f1ec49b5729796fe9d183f06f9a8211f91e9f2ea5e130f1586b29d0f57f69

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 573eedc3623280dc56844bdc84c7ea25e0e97f82e32f17efeb5fd328b45f842e
MD5 269ab4e4dc77b06d3bc1755a4cfea1af
BLAKE2b-256 0f23fd456c50e92b1e6560f7d347cfb463f4af2e230bace878c27ceef8c010c6

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55ceb2b4774490cb7bb89b9a46fb3d0d75b63b1b1044e691f5b56aeca2dfd385
MD5 fc2843651a39b7f382f239db4d4aa1f5
BLAKE2b-256 0b2b215e7b88cbb718fac252fd2816402acb7dbdf5ad6640f4236adc9bd607fb

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35a5861308f3c6ac93c5aab3357a1b32be0c0c63da19d5adb055033702f6cf84
MD5 203d4228ac7c65a7cd5ab2471e7c852d
BLAKE2b-256 a84728b2bd18ae127a16ddd63529aea7aaf03a7ab62d4b50bb559499971dd488

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d01a6bdd068c0fe8cfde3414f936fcc98840875a2126d674e644960b92730a0
MD5 57f31207422bc803b54d778200409266
BLAKE2b-256 c0feb178c167dc554a1f6c194a412e2985e11bc06d9e223fd3d2095d095c9e3f

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3903e2437ff819eb8d8488188e39b75e0158aa83644e980867b64731a1549b49
MD5 b19e3b8de7605e713c89fd1e7da94789
BLAKE2b-256 2e93bb0917f9d2b05705dc6d1e8576ee94f7af36363603c45825f1a26f06b362

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 355f3a9bb312107512b180b00ffa5c7a74bbe47cd8d60d28fcd19fd25eec7226
MD5 a7a211538ec1fa337ab380555f84316c
BLAKE2b-256 4d799d088199b18b5578f50cf84d17094f3841bfa4d002b833d0c1dd04a4c7a8

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: medmodels-0.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b499e4b8513e2ed13c6a0f6c0d66a4b1d972acf6a46832db88af82078452f564
MD5 45d4b3af50d0350e0c4319d0e87fce63
BLAKE2b-256 51bec10069b2dd1a2f1bb1b5915731bbf967a4b99f201ce1f8cde128a8efa101

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8e495d6fa0c3f53ae89c912949c652ee7c8f9e61d13997547222d955351c8a7
MD5 2f9a4124e224527f9499b33b0b3b3120
BLAKE2b-256 f0b0760c2d40d579069dc70d54a91dfd95f72bfaf3d390649fa1a46000177c05

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 697fc839781e740d4bdc1c47e07f4c6e3bfb2508a4ce32263d2f5776f5649770
MD5 c10392aaeabccaa5b1609e2e58b64c8d
BLAKE2b-256 bb67be7d56d8369b60e6b27783cccb5236f39ba1e45bc94f04eab3406caffd20

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dec91b6930fcba7c9579830f3db637ce58179cc62ce931dd3875691bf14c4bed
MD5 6f4673f40e9340bc678dd567313356d6
BLAKE2b-256 fa4d05f8e578b7f5e6d66174a4cab61b996017eeb7eb329f7f43837d233c04d5

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 233198d9db5d740b4f3a967e6740c07213a81203f493bf111ca696928562a966
MD5 bccb5f57d39dbbbc018aa6a3d44ccd20
BLAKE2b-256 fb3890178c96b4e1e6e14e1516e43485df85be5117f2a0d68ddc211980b8f6d3

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ed5b4fc9b2a26570cecb4fe3c09ecf5c704c9905090282f6c11940327a30653
MD5 f606e3a9bac48e79bbe0881b9b395f9f
BLAKE2b-256 9c0dc942562c40e07b5bfa42b192449f8831cb58aaff82478632678b78db6e18

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee1817a6a9c8efd803b2f5ccba3526d45a670759c0684dcc0daee64c825e6128
MD5 8f798c591aac96568072489eff5c4ffc
BLAKE2b-256 eebf02778ad9a0fd3f33399743b4a8bc212bb6d97d059353861ab1870cedcbf9

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec0753088fd985e5b3ba76cc24ed98065b0db34cae2ded62cba96f3a7e440592
MD5 622963abbbbd5c309923333980ee791a
BLAKE2b-256 24ea918cb9d3a43b12923e54ebbd63dfc53009e009f79d9d75db0f3f61e89d67

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f1dc71f27797d61bab6b9be48f926786a9adf109c06e16f8b6696a43bec8135
MD5 0de52cdfe60eac0573981e7f4008682b
BLAKE2b-256 32d013cb2f726585422237f04a57da8ca06dd61cf5c9ea2a05384a6921b040dd

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0420e04d67ebf6d843df91eef14dbcfe98f3615b266fb404e4fe8a79756b99c2
MD5 c6b6aca11a84511151d5736fa510431f
BLAKE2b-256 1549cc7201263417c64cc5e53a2fc0e8df1c94a29a850a7d3d7a031a396a9a4c

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2226d2fdc16cede7372aa448934d6f2e0bbec67582a58255b5a7d54ae9934cf2
MD5 055fbaade9d15c2ae9d354a0f93872f5
BLAKE2b-256 42d2356b25e21dd347bca67f6de7ad9d8ff48a8ee66462db121eb3e4dd081628

See more details on using hashes here.

File details

Details for the file medmodels-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for medmodels-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8743cb14642916179dd04c2cedb21c4b3186da66f18079a8331c46ed3a17a475
MD5 9cc3c3020b31e944e319e2ba8644dfea
BLAKE2b-256 6510234864f798c1598dcb1613b739d4e43ff2e565d39a926de5749598b3786c

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