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.4.2.tar.gz (701.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.4.2-cp313-cp313-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.13Windows x86-64

medmodels-0.4.2-cp313-cp313-win32.whl (8.4 MB view details)

Uploaded CPython 3.13Windows x86

medmodels-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

medmodels-0.4.2-cp313-cp313-musllinux_1_2_i686.whl (11.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

medmodels-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl (11.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

medmodels-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl (10.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

medmodels-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

medmodels-0.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (12.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

medmodels-0.4.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (12.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

medmodels-0.4.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

medmodels-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

medmodels-0.4.2-cp313-cp313-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

medmodels-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

medmodels-0.4.2-cp312-cp312-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.12Windows x86-64

medmodels-0.4.2-cp312-cp312-win32.whl (8.4 MB view details)

Uploaded CPython 3.12Windows x86

medmodels-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

medmodels-0.4.2-cp312-cp312-musllinux_1_2_i686.whl (11.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

medmodels-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl (11.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

medmodels-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl (10.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

medmodels-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

medmodels-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (12.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

medmodels-0.4.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (12.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

medmodels-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

medmodels-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

medmodels-0.4.2-cp312-cp312-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

medmodels-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

medmodels-0.4.2-cp311-cp311-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.11Windows x86-64

medmodels-0.4.2-cp311-cp311-win32.whl (8.4 MB view details)

Uploaded CPython 3.11Windows x86

medmodels-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

medmodels-0.4.2-cp311-cp311-musllinux_1_2_i686.whl (11.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

medmodels-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl (11.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

medmodels-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl (10.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

medmodels-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

medmodels-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (12.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

medmodels-0.4.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (12.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

medmodels-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

medmodels-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

medmodels-0.4.2-cp311-cp311-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

medmodels-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

medmodels-0.4.2-cp310-cp310-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.10Windows x86-64

medmodels-0.4.2-cp310-cp310-win32.whl (8.4 MB view details)

Uploaded CPython 3.10Windows x86

medmodels-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

medmodels-0.4.2-cp310-cp310-musllinux_1_2_i686.whl (11.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

medmodels-0.4.2-cp310-cp310-musllinux_1_2_armv7l.whl (11.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

medmodels-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl (10.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

medmodels-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

medmodels-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (12.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

medmodels-0.4.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (12.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

medmodels-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

medmodels-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

medmodels-0.4.2-cp310-cp310-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

medmodels-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for medmodels-0.4.2.tar.gz
Algorithm Hash digest
SHA256 dd583fec3e5713b6728b8862700c123fd91a83631b03b0b3a9d82b2bac50fcda
MD5 50dec0657fa4f6a8ea6fd8458a00ca4d
BLAKE2b-256 31e5f5db6f36910f13b6ddd39c53c3fef767c209839f62e8e5635332358e956e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 83e0401e606f3782c7f29c1e978208f2da4935d0bdc0c9e062bca08e91c02d6d
MD5 55fffcb86b1122766fd3b8ef5d198720
BLAKE2b-256 4363be8d86d86b9b400a9442806bb27836a5c8836a1c06abe08b0fbc398c46bb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6777945e1b995b41e1da85246db6eac62bbd032b7d4d67d71edfe6c04f5d5138
MD5 9306c9d39f82c2f522bf4f2bf11d5260
BLAKE2b-256 43f53248b1888c214eaf6e6e910c87ce98b293c2d309dc37315981163cf5f4c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59537a8b35aa1c2a6c7582d8ae53cfdf3b14878957388995b996341dfc799faa
MD5 834d081bc488c931c7ab165816fa3eda
BLAKE2b-256 b65b9f45e29f0853a141ab6ff6df70c6411aef0f54aa620cc7e1601abf628367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 466916e80b6fb1859536c42219054df12b3c082af571c4215cc467df293a85f6
MD5 139500519c250783bcd046a9ed8c995b
BLAKE2b-256 427a691aa81c00160d4ab04f5310d1e36c83a051bfdca86dbdafd5a96bd6043d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c8d450623c9d5ea5e2b653c3b8a55f6d8946f4ea75e1c323b8c2fd9d96fb166
MD5 e29b3dc7592603f987c8e1640b4f9e95
BLAKE2b-256 98affde752868b0f497daeed999fe310db0d515478f458385c139a5bd789c445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85f85ed651c3f2b1a07debe1ee0c70715431cb7917eade325bc5755337d6fbfb
MD5 cd0e4d7a4167896ef9ece058927afb64
BLAKE2b-256 a81b86e292d630d91683dd6a8cb6b56a82b1e266e7ed4bf5589e0db86a7006b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5259ba458599dafa27027a3ef22af9b918b5a8d31b74f5f29fb7d04c68243f2
MD5 6088bcf83aafd6d134ec957e9c87c245
BLAKE2b-256 1d253fe654a4a189d2021538b959c2836efcfa01bad76cd636676cc459914459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 083534aece8c98368b221f9cf62ea66183c5fdb3cb386d846d7902708dbf4e2b
MD5 1b46485cd4777f299bb15a32bfa86863
BLAKE2b-256 0007efc46221279ff526f87667a50fceeef96106cf18732f40e0734915054504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 87f5d18f32f8391d34194bef94bb441102dcb66b0e03f297a73b73de78fa6e1d
MD5 42eab474ab09cec22a5a71c4e2ece971
BLAKE2b-256 795a8e2779e6c54d04a49367ea567e9a3cc50d0debc189e6705f829535acfb4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e315241e56250ab0cc990313d7c0a8fe01db6f81c3ceb4e44d0dbb5a5bcbf9e5
MD5 1ba68de3889d4ff983b6d194cfb843e3
BLAKE2b-256 79fab0acc7677d364b875e180a2efd3dc7b53790c393dfd15920a32092f30477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0dc6a228871f0e9ce32fa3e5920196559b999e01b99a67f60eab14f054247e1
MD5 a66a0dcd45f6ac1642a8a82a69da349e
BLAKE2b-256 bc77b387409b7124d829b8bcd43fc73957711476b20eb283d514ceba8b6f36e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9f40b643dc81486b8c70e3cd11f4045569449783264cfefc96c91fed07541fc
MD5 430aba4c7519b0d7155c01362fdab16d
BLAKE2b-256 4b89788ecb98f190c4180869b6912d520c4fed3cc6e145f3202d79fe40478399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20e1d50fdcd62047ce59562d8248c54e179a4782d148fd39b848933dbf90d67f
MD5 9b47280e8dada71f2f884bf8ad666b35
BLAKE2b-256 4e70f9b5f08e247be7be16456c03f5ac54c1073ba68b4b82994c779ea90162f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ee5b1d5aeba01e29e7b11b3dff20c8b0e786f585a6538524eb4ed1799b1bbf56
MD5 644a016d6f21a24ff4a06c8e8b6d6173
BLAKE2b-256 27b77d4a87844f8695eaa440ca7b1371ebe8e870c0adeb4580de6c9d22b6732a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 717931d44a1fff55b90d0d6b26c070ec682c8ce97a4c2f90912864d2fea04616
MD5 31f056449e920a2b87bfb79b05b462e5
BLAKE2b-256 bdb12e43d84f7defc5ac983e26c52243ac7fc3b8017cb9e494e9999fb0e0d711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1bed16b868107610cd38d5d660d7bdcb18f3be766ccf56a12b7afb0ab1f698c
MD5 ea5bcbddb33019e0004db2f0ebc1750d
BLAKE2b-256 7acbb25e2b2e070ac28a42e1b2406624734dd568301b23d8899d054f7321191a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16b8971ec868ef1e829f019dc631a450d51955412d737f1dfc48cd464a1c7ecd
MD5 5775abec4f7833c3382334ac7c788026
BLAKE2b-256 328b1368ad7aebc2ae8a44bcfa4d5591c41cb1d2001881719e11cb6752970eb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f91afa7c7acc76819a141bbc93f1b4933fae1b31d4c1367d51e2501052c133a3
MD5 62d3614063c2b33f88a78806cf50d413
BLAKE2b-256 c30de329dca754d54c541ec70d087d892db4098fd2c0fa2ea7781ec9081d2d3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91b88fe7cf6062c5eaaaaecb569d295f883683b289a197337a7d269d8a6bc6a2
MD5 8da09207c3a2eb1371f7176cb4cd6032
BLAKE2b-256 c84eeeb38f10a3643f034d25d41300b74f7c78462192af74b4371f2e978f1880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14b66a39664c378afe1aefdf7806fdbbdb4ebc4b6de8eba5e5cb70e17a80a060
MD5 3a88828a9f2bcb92d379274b226fa3ae
BLAKE2b-256 ba1d37356d9258a0ec8d6892769d3f749bcb180231fa32161ec73ed68a7f10fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a4cb20380de9046158afcf4b2b5a1859e0d3c3d664b1c0d90488f99dd07fda5
MD5 7086a1511d12ba8bf8b48b4cf9489856
BLAKE2b-256 4075f945581993c7c13dfbd9d33c6e6dfda4826d72cef152969685f89fd79d53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 84d0f68127771470ff66f157169a1f7b78409d4e77ef1c53ba55ed7e4029bbbe
MD5 982bb57e75ad6dedafedd8ff05e5f028
BLAKE2b-256 da8d9dccaafcf68503cd27e00c904ababbba0a65418a7fe79a22ed6d9a5f5cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de63a5c614fe7926fa1970edab9cc16a51dd186c342cb244d94052d99c67ac26
MD5 842e6cbeaaf60d01b9f311d486793d06
BLAKE2b-256 15d61c86b4b048e66904b68f3fc4ed9dfb5e4e2021603c585ae0de6f25a1b6be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ae0d9abfefd3b99c1c32e70fe67d31d93bb27d06770d2eb02f5cb71684ca762
MD5 2e4b6f6fc32fa79c44ecf249c88cba18
BLAKE2b-256 fb302ae8d817c9efd00c91c02d7529d6161537ecd6b71ddf5d4f8e61c6861815

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51b32d2d907c53b5bb285ecfc3c5ab7fa8c1d43406443e73220702f01b4cc161
MD5 61fa79b32cadb02053044c98ba584dc1
BLAKE2b-256 e5f84086e1b6419261074dba34ad42465ec70ea46d70836d40acf268120672fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e4bd930b67d2ffe320e4300d9459eab3273e5ff3224571990dc68673d8516e1
MD5 5ac318a73ac6f27616f0e9ee7d8457e0
BLAKE2b-256 32537858cdba85264e3cad8e11ef09269e249f95b4140ed07b557bb6f4856fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4cd5d80364d600a36c1bc5fa4486b9a64fa17b587a37eb69c33fedbee4c6657e
MD5 e6e7a70ff9b841270448a611a4b320ae
BLAKE2b-256 63a3b97cc20f7ebd42ee911c6896d513308c50d7eb8f19e90ee739ce7a69c0f9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b2c103748ec4c34ffcba496d6c085328a63a54a88e47f89c9695ac11b92e7db3
MD5 1c3d8da682055b31f4d51a878e3af0ad
BLAKE2b-256 4f778f2cdb7a8aceb0c7a414b91e7deca34ac52130b41c1b205653c5bc0ac153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3db2ce3c66fc161c6c2839476c57b1d7f3aaeb2024bb34e9a12c2564555decd
MD5 2ef44c11407cf27dc9c6662f94e2c79d
BLAKE2b-256 325c3c28f14777162f54320118634a394ef33b3d8c981d9fb6dd9e8dc707d812

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cdf44d3c5174a137b2ebf6736eef271841411cdbf109ab9726c07686d654068a
MD5 46b163e9f28241ecba80d5609453108f
BLAKE2b-256 4b2c93d7c82208a47d320e7bf75aa0a3a234948ca958c7987946c3be7a85b06b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 28b49ba7f93bc95f4c7f14b7e44b263d498cc62d8dac299eac35063a72bd9368
MD5 d149f2f914634cef96e79e353612f1cc
BLAKE2b-256 b3bc9f52e361b8898f8de3e550a19f4f7abef6cb1a35be1cc64ddf403371b803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0007d7f4b1ad27b5d678f4a78427304bb8f0058ee4a50a6c510067356f10bffb
MD5 13af2f464213a4e41530a9fbdd9aa7fc
BLAKE2b-256 00797bab4ab373894146ed07827b202106e23328458b329fa98ec7992fa579f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9507e9e62a09b3ea10bfcdb4434aa2843c648cb4b92502887ab05fa1a1cab8a
MD5 3abd76c71492988487396846b6532470
BLAKE2b-256 b72caf6c39d10f3feaf5d599a33a983c8da1d1a74446133cc6697b1e44a99911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 659d2553df57375d8e5d8c660eb2cdd9ec57ef8b5befea6a456afa0609a4be23
MD5 fff43a78585d270d158e8f8933d3f203
BLAKE2b-256 4630e07f3a81f633bebf3ac69fb98526151a4a4de106ac8f55e9a6fd0286e83e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1c8e25b4c0a285313f48fa695400c2d9372ec9619d9dd3bc842da57b4f32ed5
MD5 2eeeabb76c452f26b5d04909a01695dc
BLAKE2b-256 e175dc2db837d53e567683411c444c0cece6df813bd9b11f7fa725218029c5d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ef9ea80d0f3849adeb1ff2d27d77d5442150d04097b502c025f0e1adfe8a902
MD5 89a0069149cd51929ca7e2b41d0c76f0
BLAKE2b-256 ef378c01e7ac4c93db170e2df8aeea3735b86d18466760de80d3a5b27f627cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd693d3a9d698a80beb1ddf0d39bd016f68f5619398abb370ac15e6aa0ca6693
MD5 07f6a7366964e9a8441b5cc3e92df803
BLAKE2b-256 ae53b682de78ead2b6ace6aa22336b4eeb0055206e0b6a5622995337bc8312bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7961e50985b5a81133130f22023e08ae6cc095f1334ccd2522305740280a0fae
MD5 d3c435fa506194b95433cc6817a76baa
BLAKE2b-256 4699874abf6e99acd46b8377a432aef2e80ce401ff170a68f2b587eafc16c7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b151c581bafd45a6474c4c3e48384a080d4421892d0592e254c130ba26cb7d4
MD5 5481eea26919e5fda7b4dbd48898b1bf
BLAKE2b-256 b5f2d179bb7978a65fe15c8d74e2a5ebbaeac01860bc1886382fe5b4e745a50a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f3073399d79a1c5308f930ccea028e4543335182beef8b5c1f86411adff6eed8
MD5 909b8c077b933aaae611b357d5a74577
BLAKE2b-256 2a30b219fcebdd0c7f14452c04eca2c45a72ed4eea9d4ced1d58b9cc280239c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c398bc0f994be1ec6d7186c27b3de1ad2d5846ea23f1fc0e523a4e2d7185c2f7
MD5 3d4247a702ebb8dd0bd5d3721b2fa1d3
BLAKE2b-256 5796d7c4ac15ccb22cf861bf27fa89e575e8e8707bcd68b33a5d48cfbce15f6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d73b2b20a4b4eb37fbf9493db85cb86706533d50890051d3224b1a8e28ff8b0
MD5 b24d3010c8289d7c77f8b27c828510ca
BLAKE2b-256 d8f09759783b84a903226ef7f861aca7e3d804a76efa11030c9b9c21f6ea911f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1768fd72d10cdfab8d0ca632da48a3859ebf4fede4c6986ab56d3d94d2c0557e
MD5 d7c60c8407fe4ee45435e91b1836ff96
BLAKE2b-256 5ef93146b70eb47f8663bfa423bd80c1ca70a1e04f7f9b12b36845c51da6db66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b5b6235ae6d4bf444317ed1f21590278854142239c50373a28a45a5dae8834f
MD5 f5531372df03ea7dd5befdc1076d058f
BLAKE2b-256 247350d072aa3ea3d6fff27c36ca22b2796716798fdccda2e41b74911f6c66dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 112b8ccbf2316104833cefaa6c45141b39d73e29aea293918249ed9db4bbe93b
MD5 350352667d0c8934611b9c68b37d6726
BLAKE2b-256 7044754dafcc180693e2b38ac2ebe7cccfbc509f8c745fcb9c0eeebd46e45be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90a08000b18b6c533a875f062988f1adb74b9941922f34ac4770771adc07155c
MD5 3169aa9ff500818b96310867a08d0420
BLAKE2b-256 c8389dfaa2bb67d08c9b417957ad36c5e93578c835253cf3288c5d8695a2d465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a33a59c4eb063b1c57553a3cfb6ebe2e6e094bb1aef285fde3dd85a5ba451767
MD5 1dc1b1b1f336b319404e59c8d9c8a752
BLAKE2b-256 8cb50a7c108982da19c7922006af62d30b8efadc5a341950c11543adb839c39a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6280bdf0315fc7443271ab646fd8753aa711b53a2ed0c7c66169950a9c0f2228
MD5 c817a3633623ba1e088ee2437974809c
BLAKE2b-256 2c6e1b15352265fe707e00d6285f4648150317af78e3de8c9528b1e82cfaa2aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1cdcb68a5b4d78b26ab172a174bc0ebc1104b1351a250f578c433385b8c380cf
MD5 e1c75cca93e29fe64a588a3b162b9f5c
BLAKE2b-256 835f6bae7408bf007148a993dd8ad9476ad6c324ba130e2ccf6b9a765981ac67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea44de00247c79cd924b9a7e6eb12cb1276c4449fbcbe2bac20164194aaa7b77
MD5 8ec31c33009bb01d9d2dde2e149d0961
BLAKE2b-256 d6411f895f6c7d555f248afb2a33029cf678df4017b8708e72f0cc1d9b7ac5b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adaa9d88d172bda7c600687766b51276548aa8d544afdb88c3d2471cfe39a300
MD5 c0ae5e3d9daec3b3b7b162550704cb6b
BLAKE2b-256 c91eb8a4168a4995510e89cae9cd8def47e460271cdd9028457a860f19f51990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2631ff1aea96497fa95750bf7f87d274651bcd1772f34a2aed5fe673ad8ff2f6
MD5 d4223b6dca3add06bfe0df987a7b0e2c
BLAKE2b-256 cc24b3ef161aab2ecdc0e577531b7b4c0f5b4f1a5f3e2ca0cd0848f0187a9ee9

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