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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

medmodels-0.4.0-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.0-cp313-cp313-musllinux_1_2_i686.whl (11.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

medmodels-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

medmodels-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

medmodels-0.4.0-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.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (11.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

medmodels-0.4.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

medmodels-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

medmodels-0.4.0-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.0-cp312-cp312-musllinux_1_2_i686.whl (11.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

medmodels-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

medmodels-0.4.0-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.0-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.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (11.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

medmodels-0.4.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

medmodels-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

medmodels-0.4.0-cp311-cp311-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

medmodels-0.4.0-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.0-cp311-cp311-musllinux_1_2_i686.whl (11.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

medmodels-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

medmodels-0.4.0-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.0-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.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (11.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

medmodels-0.4.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

medmodels-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

medmodels-0.4.0-cp310-cp310-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

medmodels-0.4.0-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.0-cp310-cp310-musllinux_1_2_i686.whl (11.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

medmodels-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

medmodels-0.4.0-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.0-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.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (11.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

medmodels-0.4.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

medmodels-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for medmodels-0.4.0.tar.gz
Algorithm Hash digest
SHA256 dc35a139f2282b279c0b52d0208de48e8d71225f8c3922263da037ee2c58b97e
MD5 f9c9b51ce8aeadb591512461d04b19c8
BLAKE2b-256 923bdcc871e70648ee6c6bc4d98e38b7da22d80783063c36cfe08a9ec3e51774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 46a2bb7ba1d265a20ef58f788f082b0e2f72fc5640a936fbcbef90bbf5694f87
MD5 da8802c8d5e67cafd7dab9650ed58da4
BLAKE2b-256 15db5615f5b6dc54a8a70e73f648a74f7acabd0cd8cd32629f96fd5579a0769f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 70f01f4fe0df388059fba4812731741095e8d9bc5bc5b734442642c864d8a705
MD5 8e806353d8bcd63a7843385bbb4ecf47
BLAKE2b-256 65ed65167636b672f886672eebcadc35d005a216410c541cf66075531f9d92e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c67fec23e22e581b51b41a20df51b95f51b539fa27ba61b4d0afb045df446d8
MD5 e565957863bfe40cca9b626842ac732c
BLAKE2b-256 93c8aa8d12b5b454b26de6bc8219a02a68f45bfaad43093253c5301c73dc092d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 774c97c670e8c0ac9db88d079b57f70e2f1de364a9ffa1c76805fa35dfaae209
MD5 54a22a7e1a5bde8795b54b1df8b04df7
BLAKE2b-256 3b1c1808c788df6f5b45f6a1f029baf6640d9dc949037f8cd99ec6e13db1338f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5fbb4eef492700648d77e96e0a1bc77cddb9f84ed326b8381d8e1e23d4796ba6
MD5 735d532724259bcac1adf16c7a8cd286
BLAKE2b-256 06eb7525ccb28dad98cf88381a8b591e0907ef074b56c86d3566197cd7c72069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f14bce80d30a6e226fe4cdc4baacd18ad15f0e1429c78cda7794debffdd879a0
MD5 51a5e5e07e347e72693a0fcd8382609b
BLAKE2b-256 7a505834c7a02fd942d20194c1068dad068e1769af36d11f6c8e5f0650bfd22c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e467ca9b1c80dbebaaf49378378334a58b00d8c67c5c9853a4c6670cc34c919e
MD5 1b9eb3fb76c697fccbc6cd3571ecf43f
BLAKE2b-256 6893b7a39c0015f7b93debb4810b71797f85f65c35747ab1292cb36dd3d17e09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ddcffafdf8064bbfa7c9a70cc3b9e609f196b99a3acd66aae63559ece64e1f4e
MD5 15a2d18885bfb22da940bd7dce34e542
BLAKE2b-256 1466b7c30a3ee34f5904f1b07c87a842cba353117f88cdb39af31407a679c3d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec7080a47633f514e72f47c0680bcf1cff7ac58c55071dea350b86c318f18bf7
MD5 caff7634c6c53f801a571d5be3e4b223
BLAKE2b-256 785d92dbfe2aadcc79d3f697a16fbfb7395220f05dd9b89c0467c44d52d40f4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 085d452ef6bbe04fb4f526b1ef68eb755c97d58ef48156a0a011f0a4cd0cba5d
MD5 8b88da23c5922700c4faaf03de9f3c36
BLAKE2b-256 02ac13191e30b2c41a4b590fc0b97261ad0bd28b4279bac269e522a78f6cfe22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98b7179c91f7c17e3b404ff1ba927b2ccb3876227daed854aef26a0d62e9bc1b
MD5 5d170fac3d0337933ec3ac4084e660a0
BLAKE2b-256 788680969671fb9c5e035bce9679e1ceedafc1e991ffd2a9f50def89a6efc728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f69e95b48c80cb2153c66b6393a8cf2c34989273f2866d8afc193955a9d4905a
MD5 292cf406ce0b5bae94bab88d2608c028
BLAKE2b-256 ab8b872cb1ef372dd55dba9009dc1e5df4d75a72e9cbdc94d645ef03d94946a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1fe317a3e531e05e7b39371fa838b95d16f4aced17bb87db5c921d7209249afa
MD5 334d30470047570abc9e529bdfc29f5e
BLAKE2b-256 daa6e60bafabcfb68d30a0f3f71b775671a078b9aa1f0c263ba2d6d131fcb1e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 be2eb8c3bfe7b3357e20c428563ef3771a1b043ec9d537c3ed0a73973a719f75
MD5 47ecfc0fb458dd77195ea9aa6d7e871e
BLAKE2b-256 e5db4b81f7d081f8cd0a4d995807c47012ba60a2d4d8b87b805654546b46a9c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d443f2faa056a93bf22773770d568b9fd95986bbb2bb1edba505fc729599a4af
MD5 5d7e851dcf7f83ba8cf25b7365eb1c2e
BLAKE2b-256 dd018ceb7df3e5b428dbf48725a2fcdb3a40763bf9c70556eb8fe83c02767bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe882a411bd02e0294ac65a280d9946a8a724c087091433091749f8d9aefa921
MD5 957bdf3e173b993515d9525838eacd38
BLAKE2b-256 d780c0f4cd3bf549f044c5c0574c31912e3affcbd933a63cb3c0819c2c36bca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ea69de1a278528988acfc99a51bd6daad4f10e042e6eebfd108f7c87d3802b1
MD5 f017df986351eef0ac0a0aa07474579c
BLAKE2b-256 3cda24d3a86ad40f9e0f491646bcccb08f78b0c5b214db3350ce6d35197ddc9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 211d8c76e1d57d24740c803ffeadf5d35bafa4d4bfaeb576acdb52410e46343a
MD5 d8184bbfc37ca6feb83ea73c2dec02c8
BLAKE2b-256 4df52fafd6aaeb3d0f0d469eb750d0f268b8c7affd3448bb719ed022baaebd49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc60ec2f6567ef5df9ad783524d6d7759a869c52d47186e662b7c0d2fec7c5b5
MD5 1ca20905ce13a28b4df6cc4989da9804
BLAKE2b-256 0b2a22054a2836a8142b6d8dcb214e0882ec8460f32ccb6ce746c448c2234a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc7c317afb3b5b7298ae4bfedfa03bf3006b07f12becae0a27fe2782b6dab4a1
MD5 8d38c673793a3bfe0418ff7d7cff3cdd
BLAKE2b-256 92350dc332fe39aadb49555cf6d692d3ed73f2816616ede26651347652685780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5941fe753314d86a1ddb2987a1486da21f3196b8a8f12ebd848cdf9e9d5ac3a9
MD5 02446531134063dc8a32ee0022434b74
BLAKE2b-256 3dae2072b869bf7ceaadf8226df4b43b4db0878e5104b464b7f7d65eb7348a9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2f686bf6a2dc720297915bcb8dcf4e8fe1153ee46da6733a07b40c319260377
MD5 8db857da3c4eab74d35a0be1ce6fb1bb
BLAKE2b-256 90deb622d0f0c800f6124067c7ce5ed8aba6eb4f203f5f1030d8c9887215df14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41a439e892bfa3cff75d35c3ead23927e72ca7594dc744e6257b89655e62353f
MD5 1445d8ac580fa400d87600bb914cc430
BLAKE2b-256 0c97fcf7b75c418ac3c924e7c35bfadc3f6933b71268e2fffa62a26b5a1f5298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e0abcb2e186d5b5c894298d50ed7606ea122f8f8c409963adda833e4eb1bc24
MD5 fb302d3e08de78c1abcfcde5bb72d71b
BLAKE2b-256 cb637556dca9fe2d9bc6963ccafd1bef15c70c536fb01daa9f9663b434be4502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbf44e137fef2f9e9a09429ad19303a8fe0c401499f6f27a50aaf61d1d203396
MD5 bbaa84f41379fdb4e3af337ba77dd981
BLAKE2b-256 5e3bb51605782a0cf952a87fa918774967f050703d0b858fc1eefde736d4ae5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 664f5fef5b09e3cd61db3db2a56a124197a56ad838472903c701f1ecff933328
MD5 42537a5a05dbcd4a089554467d7116a0
BLAKE2b-256 37326d5ff2aa5aa3ccd31ea360f64dd41b37a684670f119de9385f91bebba88f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5944d64514e426f376842ca7f459aecc6387b208e77d2e6465cdd31b8adab16b
MD5 71e44e4bf0de0564b1b437ff1af6f063
BLAKE2b-256 f09e33ab03760466e1fabd878a6b098d174adae515ceb30d154c8e3aaee3f5fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fa3c9d6143f2f0b52c373eb59ecf8c57435bbe33b2ac9490f5ca510ee8cce116
MD5 a34df0c09cb851d6d8127c01bf3b8bf0
BLAKE2b-256 8017f77402c72c43e81169b5c7ce98e8e7b6f0822f18c1f73ae88c329c964bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3430f73f0146167b305b51cba2c2cd738d41a7f21226aab115eb8449437a7a9c
MD5 d30f3f95ca67d1c46d057abaedfaf57c
BLAKE2b-256 cd238f09805ab685d5351828f9b2ce0ce1bbdc5329cc9bae488ba8221ee119f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 764a943b42a93ecb0f9a0037d9eb2d025ac0c38567eb034234bf66cfc959e4bf
MD5 d569589aa8eef53f2a460ff0e4a20f85
BLAKE2b-256 5daf8ad3e7e7e3064dca9fcccac56317c813c3824d455d51c2c093a29f6166eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 165b117bf29ae8c883cafea2571ea5d578c6a3f325b029fcfa144b6875f49aa1
MD5 df3bf7bc9bac97532e53845a7002248f
BLAKE2b-256 5b2fc5721a87634626d85be611729e95e82e76367c6423916f0b7fc227829ea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b21fadc1243876ee8af44b73aea367263d24686f218a911a0e4a19197c9ab11f
MD5 81b42337b5ba7a4d76c456e5238d69d5
BLAKE2b-256 2a828ef00b3dd5e0fb82f8725efa6abf41ea7fe7e2cc96fca3f2932c40bd3648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b0bf41baf605dd5d6017a73fb9ca5a76126ce6bfce1ed092e385e29069168be
MD5 ded5bb752d47e81a933a724200412496
BLAKE2b-256 8327f443060241a2f5ff586d8046fc3cb037d676a949562f6087086d22ea6baa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8191e147b7c450047615dedd72ddf59d0a52386e6758d00052507f61450c3e2b
MD5 fa598e795ac3e69b2b44f4d275d61e2d
BLAKE2b-256 54959ee5388e9f6bc83a8f7cc34d3023b3ee2cda32422495472836274d2d729d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50fe5a91c64aea978dac60718c11a42b36b6a00878a3bd9285f80eaff363ff40
MD5 66f989bfa6a93c80659962faecc55011
BLAKE2b-256 c7e40e4d9a387d15af81b731025a105ed01e560329824c313a3115d5597d2f18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f4741c2087e7d4c87979eb8a604575a31ef7bd2d554e1b204b6278bc946242d8
MD5 7b2e3253998e3183a091e680a339f83c
BLAKE2b-256 13221d5bd8084a4655bff31440f4658e5b7ea91099cbcc8b10d191ad263c3a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0144ceab0430c660c7a3645f415177ce975f8819ad7e28bd9128c1c8ede5bdf8
MD5 e464cc11113f4edfa47c40e0c2f2b400
BLAKE2b-256 8f296d954c951d4bdfd854c64985a63cc78b04fe2f3f279283c09e42b341bf5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf8192b0f697bf5f1a14b63dceac2e0611a67066ca198f8ae300220698869038
MD5 947457392a75e314d30dfd34a441e5db
BLAKE2b-256 df8def7841f7236d7f024e8258fd9f0ae632e3645b0d515429ffee8edcc85862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e24e7557637b28f6ca8ad38790d1129fa7ef80b99dfd0c785e27f006f657583
MD5 7a36522742ed243eb7429a3089706be7
BLAKE2b-256 f02611392786e61097f15fe039cc0fdef791c29f60490a4023bbd9e00e59c84c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1f9fae4c79735485e441c5c53c8b80729d8317fdea0c26ed89cd407faf6db99f
MD5 02eb8cf20113889204ba909d6f665718
BLAKE2b-256 fb985b712c98d497a981e4570c636c98a1007dec1f5463a4f22054e048e15167

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 28028b04b9af15752a74e241d25116b6dd516c6e0e5acb485ee464536bb0332c
MD5 0b143b0bc0d7f426cb3bc1be87b204d2
BLAKE2b-256 2b8d57ec036ac41f17d9288ecf6850dcef7b479c3bee01a2a57d905de3efd0c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 348b4af720ff59471aa4c09d1eab92362a212bfbb283f8edca3f71c03aaa6dd4
MD5 48842a2f818a3d3331d43145cade052a
BLAKE2b-256 10e4a2b9073915538e604eea622edf38263852b1c11a78a538c1303d76696cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c9da79814144788bdb5fddd52428380755fd97b9ef255260b94a7738a4b87db
MD5 fea47bb87cd6d8994e31342dd8d00d3f
BLAKE2b-256 c0a02b1a279dd00805b0530db27f7306e9be90a730f2ec42fa5b37ba1b59c58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eee0c07c3986fc89f891e92edd033c024d419445b3109b3e51235d38e071862e
MD5 6b0750833b7cfc600eddbda5e721b636
BLAKE2b-256 f30889e67a43231227afea57c1a8735f8f8214890e45e6d702bf3b51d748c01c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 968b63bad433fa7a9ff4e3555606969762cba2cfac4486c2b828003654542671
MD5 55bb20359417f2f4d688680cb0526def
BLAKE2b-256 77f153c0aa770ccec9bdd8e6723b394230865aef45b05fdbd7b6d5e35d218937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a68ed1693c038c5848f413c64da5528585027c591805faa6c712e39ffe7d102
MD5 17ebc815272514b5251a9d1d27061ee7
BLAKE2b-256 6afa7e64a30e2f38050c0e724beeb7b01156be8ffd258dee63089e1a7b6ddfa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92f9a77cf244e09907551db39d78b127ab79bbc6d908f3c3bda65667147231f6
MD5 7ba7296849f4776de73b0116176b6980
BLAKE2b-256 8de288bbf401f177173ca471211ff16f92b697a4ee0bc03739018a5390d073e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a70649f48e23a0f54c5c3837bcdefbab3e67638f1f0c1e3db3afab9d8daffb2
MD5 e2876ef16412b1941fda18a04f6b4c5f
BLAKE2b-256 3edb5ce7e0e20ad41fd7b35b758eb93fa11452b5bd17e06f069589dfd2e1fbbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57e6f4bd137acb220807c0f367cffe0f6b937e69298f47e57de656a7c45f4d8a
MD5 4a661fc9ea68754f754d79a596da6151
BLAKE2b-256 326255697be3bb10844dcfce53bef74a5b0a2983c4e71741a10bc302dde36238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6b4ce08120b00e45e6907978eb48fd11ef646cd64a409c6e5bebcc4ab38c3ff
MD5 b4abab005da8408cd6262eb9d96df2c8
BLAKE2b-256 ea74f48cf41ea96737fca1b8286bff86821b775117f9ca45fd1880d44d836d2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97d3d59adb94497ccec8c5fa6cf1e3d9de8a15442f9b933927f1b7cc46781552
MD5 b1580ccc183a5e73dea757b2acf3a054
BLAKE2b-256 c260890920ccdadc6067f45e5a122f3590a2aad10e713cf63e78addb03e95518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4d20aff5e9c07e7be0cd8b3e8759a6ca6cc7133cdc14a8c86eaaf752ebacb46
MD5 f13f924b1fba765410acf6e817be9f23
BLAKE2b-256 ff781c36ffdf6f3625b1d3d67893f9e6ef635e12b6f1e95f7d659956c5a06b74

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