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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

medmodels-0.4.5-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.5-cp313-cp313-musllinux_1_2_i686.whl (11.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

medmodels-0.4.5-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.5-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.5-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.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

medmodels-0.4.5-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.5-cp313-cp313-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

medmodels-0.4.5-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.5-cp312-cp312-musllinux_1_2_i686.whl (11.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

medmodels-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

medmodels-0.4.5-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.5-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.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

medmodels-0.4.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

medmodels-0.4.5-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.5-cp311-cp311-musllinux_1_2_i686.whl (11.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

medmodels-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

medmodels-0.4.5-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.5-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.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

medmodels-0.4.5-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.5-cp310-cp310-musllinux_1_2_i686.whl (11.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

medmodels-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

medmodels-0.4.5-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.5-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.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10macOS 11.0+ ARM64

medmodels-0.4.5-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.5.tar.gz.

File metadata

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

File hashes

Hashes for medmodels-0.4.5.tar.gz
Algorithm Hash digest
SHA256 009008b45ceccdb8d6cba90e53799f47d9e95944e8cdcc326563541c7dbd93e6
MD5 471cbf6366bbeaa0e1570f08604dd6ee
BLAKE2b-256 0728c2f0e01ab6f0bc875568f7123c7b31b17f09d367da1739aa12a60e2fe512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aabdcd558bbae69c4280dab30cc142dfd1aa520ef7a7876a99306b814444853e
MD5 1d36989f09a7fc0fcfe51b7081363135
BLAKE2b-256 95c7039b04aab414c89a8c06863cfffea2f4d4c1630cf44025156674dabba735

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.5-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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d0c597745217bbced50dc15ea067ae8baf726b5ca479c67f2a4108eec6e7367d
MD5 5ac28735da6ea872297605c8ca16a84c
BLAKE2b-256 3b7af5e536726afce24fc27a93f365ab9014e5e2c97532479128a28e9e783331

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c1cee887336a9f95c094049ce11f411408714ee5d619174568e20d998175dc4
MD5 3fbe7de6a58dbb16e0c900070e14aad8
BLAKE2b-256 12e2f755ce42a307c57479d13c0d1efedb61c38dbd77a613a42f4785b328447e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff314034b62a297514519769a96030ece74558eafb550a25ef7d46bcd53aa829
MD5 2560e75fe8c9c35e6d842ee6ff9d3bcb
BLAKE2b-256 9af074716d2eb631f063c44a2580a7abdaba623c33b4f6f0a390f49b1e7563af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1ecf10089662b76e6b0657ebcdcc8d92691caf7671e9c0c0289b10e9b9779a64
MD5 9f0ee683f36964a0be9592e005583cc0
BLAKE2b-256 46d9783bec6b7689cff344b84670bc82ee7c0c4dbf7bb29c66a4e04bcfaf02c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3761f7f88de6ed2d723020db128e9043ea908053ad55800d3e8d4c5b0d78e56c
MD5 9d09648b59434d72685ef06dafeb86b6
BLAKE2b-256 62a9be98fe1a1d6488dffe06c1c52f5345e8e5729c7214d28e3f9d6b12ed386d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc2f8721961626c853c8ba8194c41ef50afd58c0e5a81ddec994da88139443ea
MD5 dd2f797a49bbe18b3869eac8dc15681b
BLAKE2b-256 a3b821d9937b09e54dc1cfbdc18ba8ff5115b4eb3ebce850dbdd1cbb890b7a8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d3707758fa86e850c7bb0b8a55b5d3f934c110e105891151ce4e7f475f0dd1d
MD5 6fcc866dc9ae768ee486ce66d0e54cce
BLAKE2b-256 77e2649a64b00ba790a82804661692fa4f6c517746c52b7c1f75eca73141ea5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de4b2fa354c4e9e467e94dde1a363c0f0d500f62c0bef16419a5de6a7f9fae78
MD5 dca1625f0b5da4695a07ce02c8169bb2
BLAKE2b-256 c8181061bb445f2f0e8ce1ae3efea956b2bd250b20ec073ea37e2cdb364ae98c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60b33a54cda4f93d3cf9191c09f7d68f6e8ccf9ae8d7120e89c64dffe0350552
MD5 b3f4139d1ab0830935b689a9fc9769da
BLAKE2b-256 83fa7c1d23cbca6560d1452268041d8bf7e805a67fba0ed3eedc25bf2e95c1a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08ecd38280077e305f4d8e961db6e78a3a022ab9f547570336cf79df1d94ab5d
MD5 792d290274969c3441a65f2bf645f6a2
BLAKE2b-256 eb1a5d2d64b27cda1ed90a070dfb530e03ed9d657e10fc6c6b480a2603122ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03ce118f58541b1d9b1e588f6ab82080a74b3b414a931ec9148b2a4375da73f3
MD5 a4e9a0f63bb52fb847f775664b6e5db8
BLAKE2b-256 f016a7e0c1f0cca633882bffff3e471b88e63077bfd2f009e2ce7fa0c6f13d31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8308103b7f554dbc576695b5b3147ca0d8eb97c3151f339643e959a13152355d
MD5 018417236437c42e039de215d3ff7813
BLAKE2b-256 4f1e378777df39a5e95d4a8666c185e6120770f585074705bc68fc7ac4daffd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 033a7daaa38c9472d1e3c2856616b054e89c16ca84c7fb97ddc4701e73430958
MD5 83d772e4a1c11443503e2f4bbdc63df6
BLAKE2b-256 fd735ba1ce3a7aed94b8878ce836bc08aba0a464a1a476fdffa9890f87a08f3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.5-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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b27c2cb0749821e77c0baee5928fa863eb3e063ed27e44458956f14f769c86c2
MD5 ccf628d88c357a2a1175e3b96dfd4ccd
BLAKE2b-256 d9cc1d038671df408ce087cc148864dfc03a4f49f270a8e07efe08c4a7caf9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6804af30f8194d38f2cb84d20c7afca386a4cf518a19919caf9eb81e9364ed74
MD5 d8143744ec2bbba4856767625a17b52b
BLAKE2b-256 e144af1c7ad856a28bcc5386a6458254ce7e123fe6a832040a6659e51097ef1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe81a4d823b8fd3f8c615b28536d50f15e06c91406a573c6cb91124d0d9f95f2
MD5 a883d921d376e01745a2d11ded43bfc9
BLAKE2b-256 bdf152213f154c716357e722b9166270909960fff4a3106740e37364a95a8ad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a1e094cf2f9a70d3a90e5b44f6c5e07a93c70c9ccbc39f59404aa60c7719f4ca
MD5 41bf440cbf4524dab28856472586fe3a
BLAKE2b-256 619d8fc8446793eca9f33cbe7625bdfd1dbe1eaf526f2a355d9c28f18ccf4e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e53b40244acc85054619bf0f49bcfe70cad66643f89a5a32a32522d1ec8cf195
MD5 5ba802a5e62b651889047d7743d95e59
BLAKE2b-256 db4941a853bf754ac15472a176609b080747ab051ea3fdc1211bc228f05f0fe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4747c705a9b7e3ac352633728781a714d2cd93bddf074488c70f30590bcd601
MD5 e525b481131e3a694996acc798742c34
BLAKE2b-256 a4f066fe45998c1b2550599ac563a3c41072d51e275224cc468453033121b817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9fa5f62fb4481225d83b984e633f8b1001239831c5b40aa953f40a7f18aa79c
MD5 c44b87956e01209b214462f2cc1cec91
BLAKE2b-256 0b13dcc01fe6f9a8cfceb1a1f0f3a9984a10ba2b4cc4860a9fd97d22a7a2a88f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a3fc932c5ee9067761b4ed8775e42988ce06c6efcaf33b190ebee7548ad8d8c
MD5 59a61d6a583ef3124480da99af3e12c2
BLAKE2b-256 0c1aa2070d038cfe4b0dbd2c7687c1c1b7b75a6a3f4c117ccb73619f8a7031dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32c0a8cfeefd94f391e0f39da47abd35fba42b73aad53f5b00678064142fbef9
MD5 d6eece873e06f67f6d5adc08f0dbcea3
BLAKE2b-256 f9975e9c5b0cf5a1e42f6ca1a66855a81325aaf61ac1f53b76de8d7d71127722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad72e1a86003a6e808d14b52a1e8bd317d94f31612b370a8040577640c2304f4
MD5 1bb508b5fbe31c7a2fbdc1462bf568a3
BLAKE2b-256 be44ac1ef43d69dcd4519e43f19881751e62b96b82d0628a907c7cdf97829077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbb4c5e074d21eb51ae4ed84b07227ca539d0c8cd5d4dcaf348a8c3a37b38992
MD5 dce6aeb7f6d01f719a7b45d9ace0feb2
BLAKE2b-256 aa8d938d1df98d006f276f26f6fba88b07e9b7b6c13bcc6c72413126009916e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61e721f986b8c299cbcc8a7234a80a52a806fde420f8991953c82adadea77fa1
MD5 cf9f6cd37c0ce026b742a68a00001422
BLAKE2b-256 3895f68f1270f99798fc5a4fd3b36af14e954fb1178e907165ca6bb5001f5b2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c0b9e95c040bb2774972b7c66e97ccaba7b8648f3ae6a03ab607f23254d436ab
MD5 adcf6a8389c4b811c44e7844d5d06b30
BLAKE2b-256 5ecbf7de3c21a0d31e88034d4f8f167e6abceaa0f4d750416a0efaaf645ad7da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.5-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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cdb7c16596ac5478a3028c528599f8b5b4a6a07dcedfe6be7ab26e33fa67fef4
MD5 7d66d4db8d13a4f87cc301b9d359d1db
BLAKE2b-256 35f1a972e634c04adee0833ccab041c631a1004a9d502d94b57f436fea0d982e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b82b58ab5e7bc8162068e6bc738dac22a87204d990e4455d000c7502a45f5c6
MD5 a57e270a3485e89f0c26bc049b8b5a78
BLAKE2b-256 7545ec4c9247565766ea745b117c86b985269911499008e2170d3a5d93321939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05c7c8592b64517e8c4332e886bef28b64d15b1a94c2d5e71205082f211ea696
MD5 d3ae75cd980ed28650e1f0a58950d48e
BLAKE2b-256 7dd48627b97950a0fcd07e5992329a3533f779991947b3e37b690b4e36d0badf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 914d974b96a08e30aead9746926ecc2a8b3e3fb384c0ad10562f738cd86bf0fe
MD5 d6a32756ab87bc1d3f59b5037ec28cf3
BLAKE2b-256 1c3e7b8e04d276ea4d26d7ba651fe3df8feb81041cc5248bc646d83dbf0943eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b51260bcf5b145f9395172201d014a0404fd2148c0810581e14aeff3192488c6
MD5 135cec9a708e03b88033150e3a7a8cb0
BLAKE2b-256 21b0077e802f46c3e1700f83af215ee81136ba510fbf5bdc65fa0870af40b8d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c202ce199272f3ea40146bc423f575f4e3d908d0634fc63b938011a64a016ff
MD5 7cd9e3afc0302f4a84c9415ad6c91ff3
BLAKE2b-256 7bb9f97428bc4425076f3dcb7b767e4bfb8db15abc41d6a04f151ad6dc674e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9aade49dc0b95d8d5594ecbf6016fe97e8e62f1be5cd8e19e0842b275e58bf3b
MD5 a3c5b6973b1140b0581ef91e8d93444c
BLAKE2b-256 3ed3b5380bd2fccdecf661474c29e7e4d50ac0acd08ce0acd10dca40d2e2a5f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 616973994c737df4d7be9757f95c6c0b3814e24c757c7c32cf9f6d6b180287f8
MD5 5300c43b4fae727251b7accd2fe57838
BLAKE2b-256 211fc6fad195ff968ca79f790e71e655ff40cfef72ab9e57f548b9f428c244e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1d91d39c064cb7d931ad06f49ff03d609ecbbf22793087604e7473d44d78211
MD5 070397c33834d1b30abe43572eb1e4e1
BLAKE2b-256 4b2c717e5d3fea59300127309b68699f84e6dbd4f005f4fc567a02479dd6407d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3f6fd6cc416cf209cebab74751c3654302bfabc3bec3100b12b30dc3614c6e3
MD5 ac9cb9910b75b7dd36cc8f562769afe9
BLAKE2b-256 021680ddc094645a6a9d4d950cf07425acdd32bae6ccfec8e118021ff3bd80fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03ee1e4e4853554ee06c05f0b74757248fa15de5f22d4fc416c435ce20d80c59
MD5 30483cf311c4a4790522945243f213e5
BLAKE2b-256 c31b4a37e4c1f4022f896128702ce645a80ad39d8754d4de2e8bd0cbb60c6a9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b744357688e973368d02116cb04b9d6b78a898ee1ceda2b17307ef6879dbca0f
MD5 e9d37347242dbc7814d1720110524751
BLAKE2b-256 895d8d8240317105fa6332ac07b04e492f0f144ca3c61521d8c4a9bfb1e9319b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 66dc7022c339c8379e4e068fb8555f60cdb176e358255b6be8d5a69921f64b84
MD5 9f5bb950968a528ba8006a5b36a503d8
BLAKE2b-256 d9a596e9bb9a60d1e38ed7fcc7ec75d0a3fcb8b66408b1397801e0cf13e031ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.5-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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a0b7b0cab77b59e11c6bf9a5caf7edc0d43b751e1755d4412e80b00bb95443e8
MD5 68e7db424ab0054601df4fe5fb1709c0
BLAKE2b-256 572252e9f47c05d608fc7f023db9f51c2174cc61704a88ac9953813bc8a3bf15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd1d9c1038e961807ddb787c164269fbea332d17baaae6090757ad231f9019d2
MD5 28c0cdc73e4fc674044c33323c04b8bf
BLAKE2b-256 4a8c8c332df6a3ab38a80592d2dd03daefee397a1d3346496e50a67a1ee3dee1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a0ce95ac5031c5bfa2a3a7c1bda0c59633e12238bf76cb3100120ef203fbaad
MD5 35c3adcc822549d77405373a0b1ef467
BLAKE2b-256 11791a44639e84121f95a76aa88b2d0c3a672c2e26d86e9089b7d07bdc314030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 31d7bd96cba6173419fe9ed7cb6f691e50d589b60ebdd45b3cb408e12650a1a6
MD5 70c85fa4ce2b936e3ab6938ced285c35
BLAKE2b-256 1b74fb7cf76dfa499be1cd6989052f4b3cc37c26366ef844836b6b4c3b49099a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b9e600aff58d35d36ba597c3a94d3a65c3aab3052f5a51f4fbe4046da8c8372
MD5 a4befb4ee0f8b8a6d12d8cf35b5275c4
BLAKE2b-256 95763689afc38b68b7c986b23c0cdfe8d88cc230b626cbee68fa245875239aaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f11b58293675a6f19acbd9dc288a163b6dfc600e2f0b623ab291fbfff6db0793
MD5 552f8639411dc1c370cee820df817969
BLAKE2b-256 353833df8a1fa1209e25213afcfa78ac30bf2235e56e168287553d8ae412d361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b6d26b06ffcd0bbbc23c2d7a8cb28b74b9303568acb16fc7d41175407a9841e
MD5 cb2701cce6ca3f84fa333500594fef32
BLAKE2b-256 1a1fdc9b3c5fec51cb9347e3d0868071d9ec789e7e3ce5f97e4e0fe0d1a89ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2af65db81145497e2a2f66560d1dd15f48ddc81d1ea92629d74776c8d39a45ae
MD5 3b7938402360e35257c4d825d3d2e817
BLAKE2b-256 055eca824a9beadfe47d2c2a87fb865b89e229db6fd753cc7d89c7a3bad43d6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c80ac4bcc5b5da82adc0091c1d435f12c453f950e9fb4c5a54a74fe632ce021f
MD5 b32b401bead3b196108ecce7069db456
BLAKE2b-256 ecbde1ab5e9a0970161073098aaa1c6547da645229d0845335c2b818cb2adf66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a33f6c11406caf3b509fd530d2daacbe4833db933deae86db84ba4f57837b44e
MD5 42deebb9edb0b9e47fec0c1366d8aef6
BLAKE2b-256 42e89c947970ef07dd61da0c4a6de2badba8fe060bea5634539ead0da3891a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b917ae92ba1b1331a78e6c782779c392f711097d6c5a6bc59b9ca6565fccee7e
MD5 8292d01111f9e2a6be068cac0f772a2d
BLAKE2b-256 78ab081c22ce78886d4792660769a272e2909bdc26747aabb099af47998dc7eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b18125a6a9aaae5cfb771da4c4fa672ab10dc02aecdb1e162a147b09759db401
MD5 9f75be9608afd4d9376418582cb91156
BLAKE2b-256 7a084780c1cc395860db12fb7ea0c20f7c8f70b2c5e3c51f25edad3bd972d970

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