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

Uploaded CPython 3.13Windows x86-64

medmodels-0.4.8-cp313-cp313-win32.whl (8.3 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

medmodels-0.4.8-cp312-cp312-win32.whl (8.3 MB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

medmodels-0.4.8-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.8.tar.gz.

File metadata

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

File hashes

Hashes for medmodels-0.4.8.tar.gz
Algorithm Hash digest
SHA256 8939a021bf363ccab4e62d063fb341f3cf0ad7eeab2ed94804424327f49259a1
MD5 b76740a6175148b6d44a1255115b81b7
BLAKE2b-256 3b55a2ea1d5eade005808756418273e1aa010a86356ae9addab023d5fa4f3fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7b8b4849ff46db2a8e93eb901a13767e5432ed0f25aa3e8c98688d7804e1c28e
MD5 2060079d5d63ab9013cbcd6ab7169393
BLAKE2b-256 bc5905214e8f22dca4e2aaac6c6ae029a0b75ccfcdb23e609b38f2d7ff0d8e2b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c6051ca334dc66da1d5e26c4a08003572e7a8176adb3faa52db18b6503c40232
MD5 2f8816c25ec9a7af9dba06a0fb7c8d4a
BLAKE2b-256 e29f1615c8c2acbbe0dc7a8da3f2fa36c8d163b0c4d3f1d1db9be5787e9fac89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7640e436517beedda13f5cedd835f86939ee1f98b264ab86fbec9aeee6932a3
MD5 9e19121faca4854108a5f113a7ac5992
BLAKE2b-256 54ccc2e0c82a0c93f22210161308c62da5a184aa9f8bc5ac301e32bb7dac25f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d28fa1d4ca8d349b4d89ce08cc5648d8bf70d5ac831ef4c0964eb4cd2fb105af
MD5 aee000e6dde5274d3ab83d29d2166d30
BLAKE2b-256 313a56e567dd977911262e644bdc6d046fe8b2ead77377f8c7524834f227f3f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c914847bdb2e4821f2195f8ce02eed50b7eeb961cd7f18bba23aafc0455382a
MD5 0c32b4b9bb00174ec73365d525dec9dd
BLAKE2b-256 3c3bd054fdeb8698f5f6d017ee2989e1cf8aa116ac49293eec47392f89cadd63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b64edeca5f9a2d431ba1cdd896fe0cd5fd0b9d6761135d8e3478eeb8280d1a1
MD5 b2af32f48b4d2df214b5d001ed9f0b64
BLAKE2b-256 d59145e912241bf7fd990c0fd3196fab36d152b5e3aaca3c00a7b3c768ad65bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88f9eb060cead3335db897210bafa806dddfd13180c4d15631d2e082ce31f1f2
MD5 3efca08dd697a52cadd893d30243a718
BLAKE2b-256 27144d3895164a9f8aa1c5fd51cdd186ce224387cc0c6d6854f0a9fd1dd4070e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e1982cb205109028610c12d61e261923340769ba2a692a905cbdf11bc7ff19b
MD5 63b4ec5eb428eb060e69f99dcc25634d
BLAKE2b-256 5936b3cec6bb50ca5965d863181f9ca9ce907670d5a9bff66dbefa0da5ed3842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e4b06b12ba0da49cba6eed022170e23d2d473dade047d87e70b5a953bc24882
MD5 ed6c13c4aa337991637ede3681669097
BLAKE2b-256 f2db20fd44e8ac70ddadb71ebd319bb131561602c0e1999b63f360d3b878af10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec7bdaf66eb5ad9f5cd453c0910281566b63d8e4897e23558f62a3cb8cbd3f9a
MD5 2eac6d1bea306563e81ebe2008d70b1b
BLAKE2b-256 4444d75ae4975e8d51eaf3d651f8668777d086a09a2f54f2d2c066317e461a9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fe056a263fa34f66bbd9c49001c6ebf0320b0f45d37e55b1d44e098b76e5734
MD5 883c385a9f4ffdbe82ef6d6ebe70187e
BLAKE2b-256 8c08585433fe81b17f250ef27892543532ee5580dfcf01fff89fe074cf61a774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c1e31073118bb52363f5c3c3d185dff53729593cdb91ae7043931d763bc31f0
MD5 a9aeba229140dd63d56fbf13d02f542d
BLAKE2b-256 4660b442e64d67ee902dd0db21217345ab12b8dc6440a522d500f44afc928871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06549bda5f5cbbec4d894b2a938e3ad38831c5656cc807ba646bbd746093d0fb
MD5 216c4dbc3ca2152f95f8ec465fe8d5a8
BLAKE2b-256 03b8eda57a24d7207ef8b79592d59b88dc18569118f0f97e88b5784f18e4d7f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d594be34cffc616807d6a3b5927ae74ec8877f25be19a3011833eb9aac7c15ce
MD5 ebde519b2a3268a149b6f83c44d3ca3e
BLAKE2b-256 d3a322a9cf741d2a8971cb6fa12ac62effc647e635851ae0ac9b4be802e120aa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c68cc5ba5efa78478dab9bd7a0629eaf6a7b5ce01f68ea881805727b35513c59
MD5 e021fa0c9e739387fb6d7f3b284d190f
BLAKE2b-256 e2d7ddfa669b42b4054e439311cb22bad59d6a95feba6f6edbbe6e2e9d5803f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6256e9237e0b7648a9204900e1ebf2af45775cbf8fac91ef713b6a0cc0497e7e
MD5 68bc73f66139014159862372761ac7ca
BLAKE2b-256 a3c92c08127182ea4a594b727720f9387ff367a7dd7e97f16d01c81f8f14bd75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a3b10216ea669fee55eb3f657500da46a04accfe18cba3205d09ecb4c86eddb9
MD5 f438347dc4447ad751a34eb5bdeae1e7
BLAKE2b-256 ff966fd443508b7b876c4b655334b855df3205fb32c290be90d8da59d1689439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d6c8df8aa5a14ff56f2ef7e28679c6573c5a5e2e1dd1ad565a9ad6aa7879a5e1
MD5 af5b16e969eefd6b97671d4e43c0f2e2
BLAKE2b-256 d88dbbb20d33ed98db1b26726794ba02441219b25e13203c8b1e243459b514b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10addcb6190e9906978d89af1f51541ae38065203c1ddde790207961d5355895
MD5 e8c906a9c14a8169fb06ea0441f73341
BLAKE2b-256 7961fda658bc5b31c217d12efff3e29092b7f72c827eb094f42c4362f9005d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34b9acaac0ae016ca87211142d760e517a06e779fa9573c9bd9e4293281400b0
MD5 8a842dcfc9e783fcd1af0d576c9bead7
BLAKE2b-256 9e8abd74001c44ea19987a6847ca1f13e9e6fb891466f19d49b051528860ffd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f7a46dade24045657f1268b2c0a5c6b1b301be1c50b03120d95e9c08075a4a2
MD5 29ea58d15e086b790268078df92a9a3d
BLAKE2b-256 1470d1a7260b21c8b12c12b36d8bf9604b49eebe0de9636e0e857c89ae3dd786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3c7296d6daf047a37a07eac086461a5572e8ba4e68980b0be7dfa5bb2d868f0
MD5 500018fc1fbfe308353c36c56f0d5e88
BLAKE2b-256 1aa5a9f25d012f3197e6e75e8cd0df51b95857ef8f38b6630bff3f1945b3d4b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 382b509aa2afde1c4110c23be93a4816a8da701d0d8342968d2d4c0b1a938c64
MD5 02992017f9b037ca9c6bb7b2002e91e2
BLAKE2b-256 7c78ae3cf356fa52d149bfc6badb3ce96cdbb9e675111776029f21ba02787e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 585e7bc0add5e686d64a0a7e2f0dba3f24cfb1ed324a1dc9f0e3fa273c3922da
MD5 a05661b004a9644feda6ffde3feb0cf9
BLAKE2b-256 603a9c6bc309d175e1b1cc764b85d4446cbe09e71dcec7b167b54b78ae7c18e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2c31795bf0bd60427cc197ca67c4ab946ddcf36340b1dba2777acfb0b6a491b
MD5 8b66f33bce0250e22e26a4eed3242764
BLAKE2b-256 d0541133bfbcc63473ab389fab808ce0398999ba0e0c2be1e46836e6e71b2231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 22960550ae90044f13eaa8b46d21da10132d765c34e49ecf8d3a71efc8f1c9ff
MD5 5cbcd3bb2c731d37dd7c6865924957e7
BLAKE2b-256 2eee8ce2e24bc510ea890c5e0b5de0eb747264ec6916d39803b962e03cec118b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 be8cf99611fc350ac94830e5b4054539bcea09ede4a8f043705618d791d0cb1a
MD5 e03d7d1d2c60878b19e2528979778b0d
BLAKE2b-256 452c415c16005869d1cbfd22fd7926c8b5a40772b605beabd5833718c73229e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.8-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.11.5

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 006a32dc59c17acf780adeaaeadd5ef3a545db0db0fb4c09aa0c4c7a8e3bd1a8
MD5 96f71542bb2277aa1d5bb74278b2fbf6
BLAKE2b-256 6bbb17960e7bba589061d2e6098e66695649de35763a77f45879d7a2f8b3c833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c11baedca52d117716df9e0d0e7e585c7981193794743e5d8b06e3c6476b87d7
MD5 0be08c01a0398c84128d1e5e14cff031
BLAKE2b-256 67d3617c79e9ad34783ad24570c4f97374831c47eb2b201bb849b320cec44219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34c4e41e9c2888c2b33912c03e8a5794823e9409eaeb62d593b9188748c5ef1a
MD5 349f33b4d1b0d2ab714be4245cdfbe00
BLAKE2b-256 981d13638e4cb6af8662ffefcbdb8f39888337d43c6ba38aa3c927e4dc9406bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d4cce0d90d5d71e2ec08e3a29b887983758112f59142ff3ab74af16c484c80d
MD5 06cfff149ae4a1c58bb3d8bdf7709eaa
BLAKE2b-256 803a182573ff1f39ab2ce25bba68e5e543712457521b13bf0ef4fc78835d6051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 807e2e5d03851f7a07c5ce3e685a648a951486523b4b36ca832dc09febdff6ee
MD5 67c7f05724d8f405fd7a864eb08dbad5
BLAKE2b-256 3013b5a61053b81eb7bd258bbdb468fe8bc4a3d6e48789fc0d42a3522a5bb406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac3cfc9b601b47e5e3491befd125b8ec047136dad31572be522fa67b2d0e3ad1
MD5 35b5f4fb756160df4b42edcb3f11c12c
BLAKE2b-256 cc0bb4a08fb4ecc5d74d6f21b8dec86c52fbe8d693c6479e2ffad15e4987cff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24c58f881a5298e2949afd2927b59b5f95f29bab7d29ff937436641adca3542f
MD5 3c31fad070ce209953f23a8a18bc62ca
BLAKE2b-256 ef5195e8f447a147d847bc96db4b940bf061c4605434650e080e884fab50485e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e047c8cafabf735ca27a3d0ae85b4abed00e3fc6a3b55769a216d135a917e25b
MD5 bb09cfefba595c6128ba191afddcc18b
BLAKE2b-256 d83072fdf7119bde4c75062528038cbeab6c57d10c6e120ecf9b17a2304faddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17efc5fa199f760cebd4b18f2ec54ac554e06b03c6675dd4a83664ee1287d4f8
MD5 96133492644d472f6a806f8cc13d1c95
BLAKE2b-256 678ef03c7a75b51ddbd25e3fb121f98787f4bb5fa537a1663132929936c24eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7249e01cdf0c1a748b8ffacb8f12af726ecc6c032c194f7cffd16b4d4c3b19b1
MD5 48be4e6f97be2f6398b6f398d28978be
BLAKE2b-256 47e13957d1bf7d84af1b1b4d5dfa66a131891f1c010c478cbc6aa2e0fc162f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f072ce163907894a7c79c9b8a10cf6b89981f303753b6b3b50e9d831ae55bbaf
MD5 3de6cdaf0c4d9b1ce95a6e5f9788d28a
BLAKE2b-256 04d3b6dcfdd8bfb70009ac23e2258f0f63eb3fea1b4d8d8459779f0b2c9fab6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d7be66ab6995dee910b4e02d6f8d0a6ea99a3fbb41ca1fdec97c2cb8e62ddc88
MD5 57d74ba17bef65ccbfc59fb6e0a4dfec
BLAKE2b-256 62d0e584c32699dded4763622ffdf6bf79e408652c44503bb7d044740915772f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bcc7f2db172ae4f21d515a3feb1be8030651754769ec594a822e29973da8bc20
MD5 9c859f0569431376db9131c5fbce6135
BLAKE2b-256 2dd112c4af1800a19168e93b7f39f89ef6ebea803012b72ef6cebe4520348662

See more details on using hashes here.

File details

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

File metadata

  • Download URL: medmodels-0.4.8-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.11.5

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 12c441ce44dc88f3a03e26724dd6d85f495c9e4da35a1f4a5bdc74406f231fa4
MD5 e6480bc48913a543544a94466a045c1c
BLAKE2b-256 931b2fc82582eb963c0c1af7f4d01abd2af93e4853594664d1db0324ba71e0c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ae1fb3c1d30521e6bdbbf38931c22c52707ddf8faf1b7653ade6490323110bf
MD5 c90bab943530706a873c529ef2146920
BLAKE2b-256 1b645656cdb3f7cb570358e348d80e9d74f25c8f864b9da56f61ff3969ba6346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf0c7852bb989dc1ee0ee0a480c152b4e4ee337864b333a3b83087ee2aea8f43
MD5 78a2641711d0cfba9b47e6c1afa990e1
BLAKE2b-256 1267e637729ac626256d3d7fb3fecf1671b80cde2c818d1a78e18b57d393856f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cafed32a3fca96ab6370eefaf0ce2372efcb407302e7d3f08211ff23e165f0bd
MD5 e8a2777542ba3e17a10a47d7579d0ef7
BLAKE2b-256 17b8d3026f6a4b8311740470cc18ab19104ef73640b200aadc5fa5e4f83e007e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ae0a27d025af13009c4bf1b7f327de4586fcf786d1fdf8a6a50746ea9b3c8cc
MD5 e981e74f64cfc782384d5664720c094c
BLAKE2b-256 06bffea224e83feb59c661cecb961c688a3c39c6f74a82958c43ad6e133b4ce0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e73fe884b8ce2fab02b0d3c427def29773c4ed6e07cbbeb3a4975e66d9d22de
MD5 b322e57a7832ae36ed44d63344a55964
BLAKE2b-256 5145287f8924c70d757cf61bf62025f2c14e3aec6ba09d24050e45eb608ece82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ec3645c1f8ee70cce529608dba0d5f2dc7aad89c929c754c10b1b5d66b15eba
MD5 edcf502f50ce68659e03369861568431
BLAKE2b-256 29ab81aa56f62ca371213ea5f8a378515f98983190681ade012605302a841927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06b771f44302a334d4e16feb0c028a8392b7919fc95dfd2c97c3753a0a483274
MD5 1e5149ab072a3abd77a6e2d8a8fe32dd
BLAKE2b-256 6f804d9cf67ac3d9fadcd4310fe1074d6277c394d6bb18b0566084dfeb88ecba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f21ea2e51b7fa177b47810819dc2fa862882c577b30e436919708156091b32a8
MD5 c6f5b8cd6781140477846e09afd894bd
BLAKE2b-256 4c0b8ca6387b4e6bfe0b54898170b5025eb2d3d7855dbef1a666f986cab7b0ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6aac00d0af4a91527c977061dc4834176e30f6d13263ac204b3297ea82fe8008
MD5 2b4fc8a0469938349ec12a73cdf43246
BLAKE2b-256 9b46f1c05a77265dad7e24ab4c09e3be9a2593903f8a302c5937f13f21d2d1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07c4c51aacf8a981fae98eb6b9b9d888d6312135b4ef0db13a96bbded83a3a12
MD5 93897f0cd4c9904f0ae34dccb17f028a
BLAKE2b-256 770c56d177149e675139fd09d6b0a94c88581858c11fbfa60a9a1b2b853aa9e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for medmodels-0.4.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8b03e215a865501145cc373fb1b99cda107cfe04daeb51fff1ae06da9b41d83
MD5 835ee8142391804b5ca858e4884ae6f7
BLAKE2b-256 11a0919b0781115c7641d5ee6682f01883552bde4bc39f2d31474d672ffb5aad

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