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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

medmodels-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

medmodels-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

medmodels-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

medmodels-0.4.4-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.4-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.4-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.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

medmodels-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

medmodels-0.4.4-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.4-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.4-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.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

medmodels-0.4.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for medmodels-0.4.4.tar.gz
Algorithm Hash digest
SHA256 5fbb96046e3c0ada6750989f2f96a4fbf75e622ec09418e11129bfddf8f1a0b4
MD5 36cf1493cd4759c31effbd216d337ec2
BLAKE2b-256 1d7a45fba7e81cd3a39e234c1bdf827918e1240f655ed1f17948b23a8135b95b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e2d0777e5cd4f64422196f33db6b76d13d06d270d7d2a94795fdb1f53ff2de25
MD5 b625322f7b975e852c28bde9482c2541
BLAKE2b-256 5df91f3dac0c0c81ad79310fd6baeacdaf15b489ff5ab6f3c37a86020f340169

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.4-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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7c9aac42cd6723c97a70e5c35fb5735ebebcf4044201b989ff0b2cfbcc4e9844
MD5 670df4a0abb762ddbe4da6c7c811e4d5
BLAKE2b-256 93b28fe6057b48507d2a35bc12e0e6ec42f66763d0e6369f4dafecaf9a50c292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c118793560081602ba70c6dc1e505af7785257d8efac3360f6c5db6e5e81ca72
MD5 5aeac781e1e9ccb9158a4b530a28362d
BLAKE2b-256 66b53a723876583429c174a599377c0b7eb6981d0fee6922d7686a3f2f41f76c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b9c9546fe07c88a744428d1b1a82d39b76ed48b210e937eb6afa9e5850145ed
MD5 c2e7c683b6ff6b3a95d51e754ba5d4c0
BLAKE2b-256 6ec544281bd43c7d65d443c9dea0bef07e79f74846a9214ec48425c9b679d4c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8d0ccc5f88757944ee3c0d76e54f63e82f0a5bf34dcb674dfa132ac31317ed0d
MD5 8da46d711439fc10520d06a455b83bfe
BLAKE2b-256 11800e31733fc87a632c6949758f13ed5c7e785701fab5b51a3098fecb4dd97f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01a6000aa37fa909c700cf109cf462ff0df70c16826ce82d83baf4466cdfeb7b
MD5 335418dabcaaf3b6cfef532e8ef3fc08
BLAKE2b-256 b14c43aa29a2f133515bf44881787a8402e0e14040e95267b22705c0619ac76f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 694db62155f2a71d80a140a1b204ee303bdcc0db8a417c8bcd841798457f1120
MD5 41d4cfe45137647f7e15cd449f56c770
BLAKE2b-256 a47ed4ef3d5726bc5b56d5eb241c4ad2767ab5f215fd2904b75bc5aaa2baf810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 781700762df9b0d6bc836d06c4cb520daa6f90c35e1b09c41eda8d852726b2f5
MD5 465b601a6d0ff3beb91718121079c885
BLAKE2b-256 7242bbfd27c6e2487205e9f990a0a1d3c843fabefbff5e50adda9e9fddf72ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2210bff2133959510d4c50dac29cbe618220bbd33de02a157deb27a31403dc64
MD5 88f3145787e675a31b5e82f36ffe8d7a
BLAKE2b-256 04c2ba5e42c81c6b42ae478dbf9ea519e62ad4eefe71faf4da9590c9fbb49fca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de74ef2bc4c65f73994e404dd185a9f62f536fd777174bb271a41a70711959ad
MD5 c16163d0b5ad06ab5f171d4a481546e4
BLAKE2b-256 4e79de5baa0106e10c6a1fc7f0811248bcaaeeaf810eeeef3001613187357d0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae09a9e0173198501b83075e5775f0e4c0eaa5d114ced64862e021224944026c
MD5 7d473c34214cc97111f3f0a3f9c024b1
BLAKE2b-256 4d356a5dd50262d7e0bae43c18b266483d2d4aa2f865f0985f3d0b6569a41140

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8737741a2a07f90e807f3a4af380128030ad74e17bdc5d42c77e7c49f13e009
MD5 6c84c2341c713501123aee48c9cf0de0
BLAKE2b-256 38cd528af5a004939228412db3fbd96a4bae9bae64c00e31c37b7c1f4c8803ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a4922163cfb74647c67dd6658a0ca490f77eb7886ec92ae4139fa384e5c8b33
MD5 e980f2c1ed46bc31702cd96a56e4eb77
BLAKE2b-256 f6d77e3db70994c3e83b9222df8e3a4c01cae1fc8b483bb97786cd4ffb942052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c38de123bd85ee02c7e57afff82ca733ea760eebfafaaf96a7afe89f07c3271a
MD5 c8fb090bb7751850c3c7ede209a49bb7
BLAKE2b-256 ddd316a6e3599db0dd2ba8699376f4b29d8de1d45915287a9aa6d873dc1f4c0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.4-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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4d4b7280137a18251b04958ff7d62d4c55875ae1437317d8558a08aac362e7d0
MD5 9195c7dd3402dbe6163b2400b315a175
BLAKE2b-256 e8a1f758a7b1a3dbdecb3ca831eef88e8634a9cb6c70db9746559584f6aafb3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e52d6cabd12e099f7db45aeda16a85294034b425f1a704743052d82764adb5bf
MD5 5b33cf5579e6415e4d595d7571b5bcaf
BLAKE2b-256 dc93e8816fa4c005ca552cae72af50ba054e8f9c488ebb996fcd705e8a5f6d57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 424fc3b84fa51bf093cf74ad44b801d82a44093144bfe6aa278da78452219b75
MD5 da29241645f6a7b94b172ebd37cdd957
BLAKE2b-256 505d47cb22b67cc2eb19f998b69e686bdd780aaa675158783bd4875f41fd6a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 466013e53abaee4e544352f416e669aa44f44bbb75a8040e14626c4ad0acedbe
MD5 6274f2f7a3b13d42868a8ea4f3b26d71
BLAKE2b-256 ff964f6c044f7f7779db135865391f00c9530b81364cedb1dda6047e1e80df09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c3840cf6a184f43b93c9e3c6a5b78a556c193ef4887d8a5be1b6fba91d821c0
MD5 30b66189b0fbbc851eefe1fc3fdbade5
BLAKE2b-256 725cdb7aeabeff757cb4d3d06e99e4889162b5cbdafd8f097def2e61eb5a1ffe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8aeb5d6594d9f7e37483edd3b60a9dc8b9ea2b00617668bf2ddd0eb8fbc23587
MD5 dd77c486c0dff15b9da772176225e6f6
BLAKE2b-256 b813c544135b4c1ea2d4deefcd6895d553d4928f65b05d3cfa291ae67d2e1536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23863100ec066cccba6ab27ab36f5f18aec80a65a918899fb37ed1642f93004e
MD5 24074fe285c647920e661fd507530e7d
BLAKE2b-256 6744e2d2420e85010303ab8cda4dcc8264399126779989d0ac22661e22cb0000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1fd2829a8e06b4adc5153d5e40833afdb609ed00d2fb221c193ee0079ee2253e
MD5 1cd685126c1cd10801e6aa8a4d0879af
BLAKE2b-256 a3e2a1662e7e033e326c5a93226028aed0b5c89e3af4fcf5678bb101b80118ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ac64e4311c0d8a55ce7cafd6c51eded24700d185083c318ec8152c22bb1678d
MD5 5aeafe396091c0f52912e4abc277a76c
BLAKE2b-256 a5188081b5a54d626b5fe46fb5d9dbfe6e18efde11f1bbbb94e04472fa0f2056

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a61e201f97f2001c994b5c69af4ceb15a92646e1e156405dd44b08c259861a1
MD5 4cd5e721c15c6ec34bb7a5b9f8f25eeb
BLAKE2b-256 c88f80a0d28cbd66a674668baa25de9bec5b5fa4ca0362b8cef4de1d74897acc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e81574940e7e34a222d7dd1cc265fe380eef6d74e204d31d125c95ffa1e68ca8
MD5 375c9880c6c9acc08fccb360241e1162
BLAKE2b-256 51d77a3ff8b4705aa6c745f25b35a3dcde93d2332e4fdf7e45e421d3ea3c369d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9cfd31e73af14fc832bf74aee058cdf8fe34e061e065f29a5f60db5672a12238
MD5 0c2c2f7096cafbb47878cd72cb507943
BLAKE2b-256 fe23e3991d13d4f58bbe58607302408311920d84be2508e526a8c41bfadb0267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 12c17b0d23e653ef2fab902eb5d3ce9bff305c7f0709098a1eeb0cf40eb5135c
MD5 3e52eb5097e8b25b5a87ed6df457921a
BLAKE2b-256 267aaad679650570d157753e1558aac7be4d0972c457d82c536e8c18f760b046

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.4-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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e1b5d97111a55d3ced317b59244c3e31bf86fb4dd90590aa27f4765c9272fb93
MD5 a8b677489ba44518278649222bdd4017
BLAKE2b-256 b5d4795a7fdba7d913eeead939709d3e86514d4cb73ba7a46ff6f3191bc8445e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cff4673395acc6d8736de9db128a2b70328d6df0bbc3d243f034cd95eb08989a
MD5 dbe573110f3e290ce596da31d31a1bb4
BLAKE2b-256 4f976b32eb97c59fadf372e35a05699aee86c07779cb35f117cd533e41af80ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f472c51eceb1e6ddbdf1b512560c6ba20704bda478e01a464ceffda0baa97d7
MD5 5be5074dcd6866260cbc4b96bd4a2cf2
BLAKE2b-256 bdf9a1b5defc4902c95523e88745f184d39dab00a6be2d69a7802092419caf13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a986ded70c94ccb6a3bca721e6e335e4b2ac59d91a42e897cf0a12e5a0a988a
MD5 ecf31d523897d3c3074f0c9d1fa41474
BLAKE2b-256 29260b1bb043fbdd9ae49237e10f9ea3e24773525b6c78d02571f577d4c74b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6b78f562d6704d4325a74616c1077b54442b42d6b0cccafe9e6cbcf967995df
MD5 6d28e0e5f152f7e29a87458e7872fd7b
BLAKE2b-256 1739820463e627ce0eedc14d63e6654f5f8457cfdcddd149ee14898f31efd609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60a17482aa230d8e6782502d599fb850cde194df2fd42dd0bcee810617601db8
MD5 a842d4cf2d275cd0a0c2f14c3214b3dd
BLAKE2b-256 f45b1f57a75c3f324f068f8e0c971bc025f9f4c25422ae823203917ce2b0deb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d63e2ecc4a9630f8d06e2a3c669abaa4b467425543b759b2617f63889fb9b3ae
MD5 44143ffc9e4d7666551c52f9c45451db
BLAKE2b-256 33fd6b0e11c8ef2901e74dc54d87e10aeb393aedc8715c7f83ac28d1804b096a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b6e574ff2db427dfa1f2bdb3c4c304700729b810f6ab0b58eea69301fe9fe68
MD5 f2da9b54dc35a7d1806c365e1805b442
BLAKE2b-256 eec5e8a1d7e54abe82de4e3c06685c3f3b26e3db857dfb240b562d235d1a46ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecb985297b0364b7f2400c9a39e07828acc0530683aad21e8eab9ec25cc94dcc
MD5 b7af12354601c892380d9b7fa5ff00b4
BLAKE2b-256 d4f4a6c3919419427bdd2a81afc69940dcc2268ae6f181eab50ea76db26a1e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 804858ed6a356ccabb0ff44f2c2a279d25b5b62abe5a75f85088e38e1e785faa
MD5 e5ab91aedef704375784feb83a50a071
BLAKE2b-256 f3868fcdb954de062d452a6689e42c32265e33fd7cbb6b4c354157553aafdd6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0296aca9b0e1f4c905058051bb48b670a7f571559dd9984f0cf3e526fc50797b
MD5 3418181e94e41a02317f576278dec465
BLAKE2b-256 08b9a7269a4b3a1a56e6565763fc0c323e8d1b3f9beb45f76cad99d7a523054d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09e449509c439d44fdac44dd422f09cd8fbeaa01f8a1ee1b2bc21b477b9f37d8
MD5 afea0361d9b42e1c7bba68cf97f52e17
BLAKE2b-256 79a00d3c7ccb1b8b0faf13842e7b2ce255cb93aab3cf76135d758cefe76ffa72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dc8384ecd50ba4c05fd0f971c0742883a81f86d51a5a6ea8a8f2870041f4a4b3
MD5 6974a343b75e320104a98ae1307c3f11
BLAKE2b-256 f3de4e7e04c0837d3a1ad9627d0493ce54dff6084bd0ad36beb7d428ccd0ee88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.4-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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f916669d14bd73a7b98961d69569fc9a1b2f5109601a6aad583606bf6a807963
MD5 0219eea452b50f91d93d1875a92f59c4
BLAKE2b-256 2ac76cbf10b0983e91e248fd99b216cb6c4393c60e6d6b1bbefc9f934d7f8cd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1b827508479bd08711359a0afa639d35f0646550de559150f048d3317f17c26
MD5 a001e7ff1eb14b0dacb278c452bba211
BLAKE2b-256 ddd19f5454edc944005427aed125dbb3b5563fa4852e57751b80a39c74dff07a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a12d5bda69cd99a8ea0c9ddabd691bc658fdb771eba3313bc897ce35a7ccb015
MD5 84514aa8a64503393f14095e3703c52e
BLAKE2b-256 d21e74ef398ade041db14129e0927ffe5932c23db8bd41ee2a6f7cddd509ef6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f1b39ddf2049ec5104bab3132133ac06854678ccc76a1286b09fc2b8c904cab
MD5 5e22058c56b2658441c4cad6cd80268a
BLAKE2b-256 aa5f0be85ee71ff1bc0b02e6a3ea6c7d5bddfc5349f7a071d3d09b7279e0a0a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de3b14ca86f9d9c98c3232fc000248fb27ce172c7f8b54f1c9ed91f438ddd3d3
MD5 9fd86df8e652e949ee37d1e89b244cb2
BLAKE2b-256 643a7041f509a2038c942593be85ae3e790892f64270b5de72d4bd9ab02bdce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 708bd62dff64d223257facb41994cb9f813bf53239f320024969cc27bf613b34
MD5 fac8f48bcfbd49de90b8510bdb9f0f48
BLAKE2b-256 5d8dceef0487d9a8f0bfacd96f244db2df041e65deaad708ffe96b0199b900ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 196f2d276e440688c7ff09ad7cd2ac06f53ceda37dd5fdc9e346a1b7546ba92a
MD5 21dd66db49d73e2ad7234ff1c4bb85e6
BLAKE2b-256 1d9bd02b011346bffe126cd6c98b19f6536375cc3a61f368903785d86eab010e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8f4087249f956b711d97c0eef05a1e9c41f9d72d1c326fb71dd3d6a6df509fb
MD5 8a844bb5331f6886cbe92ba0cea40169
BLAKE2b-256 ff816f98d3de5c79c22109e3388df062e129fed6e2af760383d5adaa2ff0a517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57b72f882558764de81d0bbb52f39878ee8a2b5fd83bd317a95ffc9d18dce602
MD5 f4d6b3215b8ba08d343b771ad2b54c0b
BLAKE2b-256 fb67bd0628bcd20dabaecde6a1945abde7bf29fc7ebda65a9e06d16f504de8ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7da8e894c9af6f58db5f03cc0eab002dc962d1dfd4ac718166ee541f9df154eb
MD5 56fedc42659258912f945bd7a3937fea
BLAKE2b-256 35c1609076e7595baa237a34e7cb0724c0f5031ae9377380b93c43f80adcc290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf5a0f0efa5e465dde2709d7fd89b1e29300d6482059b367294c01d4cf62f901
MD5 775fcea325e2a20377af98fafe24513d
BLAKE2b-256 c69cd4863486fa037d8823d6a99d9584f61a2ebb80507178dcff188f88146e4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de353dd0958e0ce98b5ad6be3a7639e03a3faad4ed16b37663839a5754fbe7a6
MD5 5b75ea077b9ac43c73cba978f6d031aa
BLAKE2b-256 c5a2a5f985f10310be069d0af0c9f46b69b1cd5b94fd1396a5064dcaf7045862

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