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.3.tar.gz (702.2 kB view details)

Uploaded Source

Built Distributions

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

medmodels-0.4.3-cp313-cp313-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

medmodels-0.4.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for medmodels-0.4.3.tar.gz
Algorithm Hash digest
SHA256 0be0b024831a0b890f2d6313a59114bf7387c91f8b581ae5d5a1a29a5acfa633
MD5 589159ec75bd214dbfd30ab4a7406745
BLAKE2b-256 598894e812b3631c5bbab1667a2effa37e669db1099203a5c3f1c17d9f945461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5e7f9a1937416c5a8beeb72ca22fa74435584707dca05d8188f4df5a459dd3f2
MD5 beb526e9c7c09fd76e723af72d00478d
BLAKE2b-256 83665082e18aa10b6a80d559594bc80f092696e9ee77024c4677573d4f08c193

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.3-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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 84afe1818be4c050a3a3957f4cb3303ba963cf2e7c412446962d2153c42d8fac
MD5 33971d85825b6fe50d25b57026193328
BLAKE2b-256 68e6572864ecb770c80f9fbb5e87177bf1b058efbdba5f9e7a376226e274e316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ebc99e8ad95301c21de030377a37fad3849c7ee8b0cb7bc0b7f19048bf32761
MD5 661c020214c7eb697d3e69e4b11c22f0
BLAKE2b-256 03f740eaf87d6d02646320754155e260ad788b24ccc81e8734a4fa1acf9c7082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ce3764de122e4e1725bf402786f6e608a5598bc852ee853201b85f8f44e42a1
MD5 e3fb820d3b3c2d6026045fb03b2dab9d
BLAKE2b-256 5bbc51a26ec618d23378ace809bdba21486c715b6ebf7f372568d5d339da30a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11c993859b98b782076adc9164bd599760130f366c6d870d2117a71605b9aba5
MD5 e75db0cfc54bc416877324564e8ab138
BLAKE2b-256 b48d23a8ba20542be08727d39ac714dec2b3a2cf1641524f502cafb7fc3e7cf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fa0bfc8a911044dbbda1bfdccea4c8fba58b49d932486499bf7f8c69d10c10f
MD5 2edccd9329275e616b4205ed197bf287
BLAKE2b-256 9d390783018f2b6daebf892a014566085ccac2ad0d4aad2b919194c2c2fda172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a237dd81aafb1555c3fe168c0936c7b9d46b45a3206956e5c40168eb76c1aba
MD5 a085949e7c2adb3a02670681af7d437a
BLAKE2b-256 802fcdc728849e1020e09413f4bea11fa68d0a48b7c578e2257e63aeac6dc2cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2a91db5f3707a46d498df0fdddfbfdbe941891ad7bfdd108d65b0231f4a1a6e
MD5 c290d353d42b95792840f44aabc98bde
BLAKE2b-256 2a6dde5c2eb83eabfca76f6d583d28fc212a59971c0bb142617d46368f0609b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 171f137ab0c6dc8909ccfb9c5af7e0213abb33e56ceba5961b7fa4ea2ff969a7
MD5 52213fd4694e7b40e4f06c8c2e7d629f
BLAKE2b-256 5b895938360b5a5d9dbca45b200b35eb3f1f1cf4274f5d0a92c5d4cb96916ff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 db1bc1f71b15605066caed9fab7d83a016173ce838ce51add799b8c6d0c7ac07
MD5 8b7296ae83239bb9426a8b82f00149ba
BLAKE2b-256 d9ec04f16afbb23b5fa77ffda6bf6dd39e77008a9a95d31fc405ce9ebcdf39a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9a7b9c552022c42aecab99baa9228059b57c46833298b1dc7d30a8a621a8e0d
MD5 391517ee81a92053ebfa4d6ffb8928b2
BLAKE2b-256 feb75c2a7d70ab9a9688ffc34886379e79df7536a35df76baf11c09f3549de77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 380598a4559f557b6f2919d05d1afdd69daf37354936ac3e3187c1cb80e3093c
MD5 4a78f4d6d332326947dd26e8cf65c696
BLAKE2b-256 cdef61c957911f947d9314372223bd51a99e94a7d065f31715136391f985f00f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a4e3b1981d45f6eb78a306e58be624c31f5bbcc249b7da3f1fdb9b9badc38e3
MD5 6819b957cba66cf9b4b45ba75b264639
BLAKE2b-256 a02d2a8e9f991e621e740bf010b30e71aff081ebe3a6538b68b83f894e6ce5e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 733708c663686e966f719620fb99fb540eeaa54047e9201476169aaf3dffe3f3
MD5 5d38d9c86df8b4ccc61393d7b46ef8bb
BLAKE2b-256 3c2498be0000613cdded50baff1af37f13b8a87ccf489b4ec2ef90f0770606b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.3-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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ed8b5115d1bd7d3c0369bd8438bc952152a7a55c43423d5a93aeca56775a7344
MD5 35860df14b162a4dd489f157b690cb30
BLAKE2b-256 547b1e106da9da571ab39c8cd3b8fe4239d84b262c51007483b2605b4981a99e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 849c002176037141b83fbcc6bd75db0e39b3c7ae22bb17c20745292ce63b496c
MD5 16be6869abf1511e59b23c97e443cd75
BLAKE2b-256 f23841d3fccca97811c97a9673e6810bfc78c3812589be4cf067a93e9e50092b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd27a21a0562136be7e9e75a11c28f37b607245baa83152a80933a346d78b4d0
MD5 f4224a63293080228ce3b7ca273f4fbf
BLAKE2b-256 5e9d80ea7af778c59c6a78c0d922a19f70b5ca95f3d85df33356198bb4ddd2ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f98dc8a7b981b87f744b43b0571dac9d6315f069956067b1acb7d59fc02f5a08
MD5 6f308345ddf7d6630acfac7f5fa4a144
BLAKE2b-256 b3e5c8273cca79b8ea473f2abc5ccc7e8078d0709a33f1f96ae3387fc6f5759e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 064e27eebdf082dad64fdf5de689416a6e32f46731d26d6a73ad1767ce2439d1
MD5 7afde0a5ff278b47c9ee2e4d105d1b99
BLAKE2b-256 e7d6b474f661d1a832b8dc30517e8284a3775be420b9ee85f1cc24b30992c48b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fac71b41cf588be5c6e367975ea62b74bab16e6a874f861b8191bb475c3fd3f
MD5 50f646a789011e942c11e34fe145bae9
BLAKE2b-256 4eace6fd26e8cfd1d2d36e8eb44d03741bd61eecaf6ca70cfe72957e18c922fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42b82768d1ea7e1fe9030d0930dd13b4bf5c09e5b521e01576f5bfab17f19f39
MD5 274c7efe6eb990397e8c2b3f99683be9
BLAKE2b-256 06f66b625240f41eb0ebfd86d24c2662caab39962085b4eb6ee38748538bbb2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32f6f53d71e2c2a7cf557926f5d2153520ccbe3a2b91a0a323e468879b36fbca
MD5 47ddc8e210cbd19ea018dd274b040f36
BLAKE2b-256 0260a152ff87a9ad9051d5256e00c78d0439f6302c4f8cae570bd037bb555be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 79d7c639bc26b30b79e497daa1c30af9bac7034db4b761164604e3da9db0c1f5
MD5 5111f57b00480dbe7051f95b33fe76bb
BLAKE2b-256 94a9a94da2a77a191309e6e9a1ef66af3b3b08da26daf729e9e17f86d8192fe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a1f8cefb6b08aa08ac9240d32cf6982bf37f2c12d8c9436445c19ffd1717fda
MD5 c503899e5160bec02603ca8e353198d1
BLAKE2b-256 e69a7d795f072867aed4bc7db7b1474e0adba2c5a7ac4ab15f09a35f0f130f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ff11a38249bf8464c037ad1a47840fccf3bebe077ad87352b867b697aace5c0
MD5 db423224832eb33228093b9fabbf879f
BLAKE2b-256 a1172f790883d233922dd56217b462c9bddd3a57a8a0a09987545a184ddaf505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb63986e57d7ce2a50afdca9862249bd372ef1cabda46255f21e28a77713ccf8
MD5 add9a91708fe6857426084e51aef692f
BLAKE2b-256 c211ed48819e07c8a6954bb23f0f7bd5ff529f2a966f42a7414395eb31748972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0f8ce6ea929976e9378e01b096aaed751830725b00ab66c7c7f63155d829f475
MD5 1397734fd8ffea32090eb566c608ff9d
BLAKE2b-256 2761bdd7b86a5063d569cadd873136f85189042c99dde16595199c21b77cfd51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.3-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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c69d2bd501fad3ec264ff1e99d8437b96c0473faa6f9f6b6a0f20720937f71b8
MD5 367a160cd536430415fe223df5e0e30a
BLAKE2b-256 8d91f3dc3f4260825911ba7b9bf39af581199a183764038ab064458c7e54a375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4944f108c68c63d6c42e4d80d39c8ae25bd85cafff79f91fbc3847527cf856a6
MD5 f2e92b97e3eaf25370c1509f5c1c090b
BLAKE2b-256 d770f0f12f582e3026eef72eb64f98a5b787e72af70683e384a058d4a77eb360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77ac89bf421b5268644a2f46ca6cf36a12882fa1d98ca0f7099d006f98471e81
MD5 10dbadcbc567e29ed90b6038c7391ea9
BLAKE2b-256 647070e0662f28be49546a970e9d8705494432cdb1dd00b358af20a878443171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d89c486de3a728e739aebd968c1fe219edddfa9392d354132e3dc59317c729b3
MD5 597ad1b4de81ccbf1fd78bfa5668c9d0
BLAKE2b-256 58e28c763947156cd70f8aab08ee764c38ebe8e442dd56869fa0d1ae5dd6a405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f51a63583df5b862521cd1df3779b2d284b287d217151f7ea6fb98b183028dd
MD5 3c7e22ad387373ff9ef9b284d0a09f2b
BLAKE2b-256 3a7289d82f63b5534eb27e5c98f437aaf290eeb0a581e0de2cd2cd5fd2857796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d86c581d4de256d881d8e89ded185aeec084dcdaaac57e5bfe67b071887abad
MD5 a54cbc904493a3327c4dba599cebc0bb
BLAKE2b-256 e97cb221582cec2cdc8a2eea14ac9460eff576b0b6cef5240fb72ddb8e93b5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 06dd3e7d619a834ff6ab3652da4cc700860a1b0c6712eb321825f39ce319acb5
MD5 688ecab6abd56ec8240d34bad5fd4038
BLAKE2b-256 fbdb434755bd7ce56ada4177c965275a466776539dbc61495b9c7b73424d7115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0377527ea98f174df75c9313c5a4ed36556985c9441794a253e0031bd48d1b61
MD5 6097a988f7117c7cd40cba50d563cbba
BLAKE2b-256 b15c7f86a8fc0a6e861f9d418ecc2b5b77b1d3ce30b9c4a55b7cbcaf3e287df3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b48e587e7b28bb6cdee3fbbded14194e999d35a2ef500fc6839d04ebabc351c1
MD5 0ca5bebaf5489b8898a5916c9781c198
BLAKE2b-256 2adb84838acebda93352995c87961fc788530e9b50f97171c862d16b29faa24b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2e5f182024c2cc7617f21e1071c0e4b66e0863cb4f6d50afb30102a62fc3057
MD5 5f01c1bd3b7f3bb258e5f5199154efe3
BLAKE2b-256 9605e98ef05d6c00efceb57a013fa776094383fba0dbfb287dc0f1d930460eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c52951c39c14fbc477d92ca13dd2ee944ae5aaed06eff9fdee308744227d7a90
MD5 6f44c08db7e87ba150056ec0760f68c7
BLAKE2b-256 7e522db669233c70afe152fd447cacfeefd4c809c4f4e273fb25608baf533945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d477d603a136fea2fdd39adb64a498e20b6533f4a98704b7f586a915d8067f7
MD5 12ab2bfa4fcaa06007f98683f85d667c
BLAKE2b-256 4b453044680bd221365fd911402a0d64e270694e01fd66eb137545a9873af921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 793d429d1fc6bb1211073f50d92ba0e095ed039987433e3e2ce2c6e88f84825d
MD5 533524184c3b15d642c542507d260da3
BLAKE2b-256 c7364bab1857e41ab2d4f9d504e0f26cc2e5e354276d47e891b6902eb6f38353

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.3-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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 41a6e2b246358fb2d463a97d48233cad4c78bf9bb92c27c4c78cd6d68f68fd01
MD5 2977147c8b6471f89ca9c16b1f4213b5
BLAKE2b-256 42c80959a178ad8b6e6eb6ca71973b2087d74086e12faec2d6d40117a9a92906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a11ff5130d83a0ba60d358268ab5241c03a251f5ff15fb09a5bce3d03058b9e
MD5 479b1bb7f73600441beef50b3f9f5be8
BLAKE2b-256 937dcb2d7bc9ea34a48819f149c31a65f19aae52a76d5d2fba6dc7bed598c745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1463233479fffd00a170bce95ed9c6f1748087d6f820d8bb64b99e8bd254b37c
MD5 efef358e8e1f402336d91e32b4334593
BLAKE2b-256 00c8961576506f697adc0987d5f5f346b207b336341be58c8d0581072d06e6ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d705a2e4be96803efe4542cf26b66e5cf6eb32a3796c369b35c24958d9001e2
MD5 d0d1dc535b89f5f205f3a72557f8f15b
BLAKE2b-256 31ab8e4df7e278dc8e14a0580532383a9153d204e78f557529e7b70280fdc1b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01ae8c74ff61d246226d9b57f328e4971cc7344e09b83af23b0846cd66f0262b
MD5 16d5a2c935580700416183e6c7467b2c
BLAKE2b-256 77501b62fc6a65ec69c83213905d7f524569bf595066b2394c82a4a086bbd4fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 560090ab3363f9e31ecd3f2a68f777e47beef230dcd6baa9c3318643476ca950
MD5 bf3f6b682391973bd1e12253f4ed5cd6
BLAKE2b-256 5634e4acf2854c85505b3ab2b35b86dd6eb10f729cec056bed69f3c2012552e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e289dbcc1ba47e56e2e9166ac8ea4247bac832145820e3e91aa6a4815cb27de0
MD5 c24d8aa6d9859e85584fa7ea6f5a781d
BLAKE2b-256 2ae23f62ae63dce3d3d51272737308207415f72fc4bb3c1b5d08b4fc28e69df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8fcf4e3fc67442c52484407666cce33658367ea402997d66aa627541d4e11d82
MD5 33874ba10b470b725b94e8ed842a46cd
BLAKE2b-256 cf34f1a40aaecac4d679b1717ae525e5e66817fa566d1d02bd91c59060d5b16e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c828464a108c34376d99de560f52e6a9358a1d3ab5e122d56d820ae37870937
MD5 7702a86b0b6b3cc962f1b7277e0af262
BLAKE2b-256 af9f5a78eb71b228468c8f34019995dd27970bf5692144fd3ef7c8a178ddaf1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c180c8bc93c616c27f4d814cf59755837cde5f89c3d7385eb175de1a455303c
MD5 076259112af8ba5d8ab668a53ef5e610
BLAKE2b-256 7caead4112f54febd826fc75cfb594257f5e74f0218e61135b41dcc46bcdbf1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1d905040a68ca45397243d562cf15bd3134f54b0cebaa1c3b302e90a60b8ad1
MD5 e7a06286bbf49a575fd76603c7980794
BLAKE2b-256 2505cc4a3b0c23435d6bc6de361750999428b17b77cb9bbaefc2c81c57596c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d768dbb75712ffaa9a00878ab4dc86436698d30bc9154abbb7b8e28a90fb66b
MD5 3fbc514a95457b5d00fc9ff18cb0359a
BLAKE2b-256 5206d91b8654aefba1fc0a4bc5a567c5e040bcc330102693a1e7a747d4bc95e6

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