Skip to main content

A high-performance HL7 to JSON converter written in Rust with Python bindings

Project description

HL7Conv2

PyPI License: MIT

A high-performance HL7 to JSON converter written in Rust with Python bindings, featuring comprehensive validation and escape sequence support.

About

This is a Python library written in Rust that provides bidirectional conversion between HL7 (Health Level 7) medical format and JSON, with built-in validation capabilities and support for HL7 escape sequences. The JSON payload after conversion is compatible with Google's HL7 storage parser.

Features

  • Bidirectional Conversion: Convert HL7 to JSON and JSON to HL7
  • Built-in Validation: Comprehensive HL7 message validation with strict/lenient modes
  • Escape Sequence Support: Full support for HL7 escape sequences and special characters
  • Flexible Control: Enable/disable validation and escaping independently
  • High Performance: Written in Rust for optimal speed and memory efficiency
  • Error Handling: Detailed error messages with context-specific information

How to install

pip install hl7conv2

Examples

HL7 to JSON Conversion

Basic Usage (Validation Disabled by Default)

from hl7conv2 import Hl7Json

# Load HL7 message from file (validation disabled by default)
hl7_obj = Hl7Json.from_file("examples/hl7_example.txt")
json_data = hl7_obj.hl7_json
print(json_data)

# Load from file with custom settings
hl7_obj = Hl7Json.from_file(
    "examples/hl7_example.txt",
    validation_enabled=True,
    strict_validation=False,
    escaping_enabled=True
)

# Check validation settings
print(f"Validation enabled: {hl7_obj.validation_enabled}")
print(f"Strict validation: {hl7_obj.strict_validation}")
print(f"Escaping enabled: {hl7_obj.escaping_enabled}")

Load HL7 from string and convert to JSON

from hl7conv2 import Hl7Json

hl7_string = """MSH|^~\\&|ADT1|HOSPITAL|LAB|HOSPITAL|20240101120000|SECURITY|ADT^A01^ADT_A01|MSG00001|T|2.5.1
PID|1||PATID1234||DOE^JOHN||19800101|M"""

# Basic usage (default settings)
hl7_obj = Hl7Json(hl7_string)
json_data = hl7_obj.hl7_json
print(json_data)

# Create with custom settings
hl7_obj = Hl7Json(
    hl7_string,
    validation_enabled=True,
    strict_validation=False,
    escaping_enabled=True
)

Custom Validation and Escaping Settings

from hl7conv2 import Hl7Json

# Create with default settings and configure at runtime
hl7_obj = Hl7Json("MSH|^~\\&|ADT1|HOSPITAL|...")

# Configure validation and escaping
hl7_obj.validation_enabled = True
hl7_obj.strict_validation = False  # Use lenient validation
hl7_obj.escaping_enabled = True    # Enable escape sequence processing

# Validate with custom settings
hl7_obj.validate(strict_mode=False, validate_required_fields=True)

Process Invalid Messages

from hl7conv2 import Hl7Json

# Process invalid HL7 messages without validation
hl7_obj = Hl7Json("INVALID|SEGMENT")
hl7_obj.validation_enabled = False
json_data = hl7_obj.hl7_json  # Processes without validation

Escape Sequence Handling

from hl7conv2 import Hl7Json

hl7_obj = Hl7Json("MSH|^~\\&|ADT1|HOSPITAL")


# Check current settings
print(f"Escaping enabled: {hl7_obj.escaping_enabled}")
print(f"Validation enabled: {hl7_obj.validation_enabled}")

JSON to HL7 Conversion

Load JSON from file and convert to HL7

from hl7conv2 import JsonHl7

# Load JSON data from file
json_hl7 = JsonHl7.from_file("examples/json_example.json")
hl7_string = json_hl7.hl7_string
print(hl7_string)

Create JSON data programmatically and convert to HL7

from hl7conv2 import JsonHl7

# Create JSON data representing HL7 segments
json_data = [
    {
        "segment_name": "MSH",
        "1": "^~\\&",
        "2": "ADT1",
        "3": "HOSPITAL",
        "4": "LAB",
        "5": "HOSPITAL",
        "6": "20240101120000",
        "7": "SECURITY",
        "8.1": "ADT",
        "8.2": "A01",
        "8.3": "ADT_A01",
        "9": "MSG00001",
        "10": "T",
        "11": "2.5.1"
    },
    {
        "segment_name": "PID",
        "1": "1",
        "3.1": "PATID1234",
        "3.2": "5",
        "3.3": "M11",
        "5.1": "DOE",
        "5.2": "JOHN",
        "7": "19800101",
        "8": "M"
    }
]

json_hl7 = JsonHl7(json_data)
hl7_string = json_hl7.hl7_string
print(hl7_string)

Access JSON data

from hl7conv2 import JsonHl7

json_hl7 = JsonHl7.from_file("examples/json_example.json")
print(json_hl7.json_data)

JSON Format Structure

The JSON format uses the following structure:

  • List of dictionaries: Each dictionary represents an HL7 segment
  • segment_name: Contains the segment type (MSH, PID, EVN, etc.)
  • Numeric keys: Field positions (1, 2, 3, etc.)
  • Dot notation: Field components (3.1, 3.2, 3.3 for field 3 components)
  • Empty strings: Represent empty fields

Example JSON Structure:

[
  {
    "segment_name": "MSH",
    "1": "^~\\&",
    "2": "ADT1",
    "3": "HOSPITAL",
    "8.1": "ADT",
    "8.2": "A01",
    "8.3": "ADT_A01"
  },
  {
    "segment_name": "PID",
    "1": "1",
    "3.1": "PATID1234",
    "3.2": "5",
    "3.3": "M11"
  }
]

This converts to:

MSH|^~\\&|ADT1|HOSPITAL|||||ADT^A01^ADT_A01
PID|1||PATID1234^5^M11

Validation Features

Built-in Validation

The Hl7Json class includes comprehensive validation capabilities:

Validation Modes

  • Strict Mode: Full validation including HL7 version compatibility, message type format, and required segments
  • Lenient Mode: Basic structure validation with optional required field validation

Properties and Settings

# Check current settings
print(f"Validation enabled: {hl7_obj.validation_enabled}")
print(f"Strict validation: {hl7_obj.strict_validation}")
print(f"Escaping enabled: {hl7_obj.escaping_enabled}")

Validation Methods

# Validate manually
try:
    hl7_obj.validate()
    print("Message is valid")
except ValueError as e:
    print(f"Validation error: {e}")

# Custom validation settings
hl7_obj.validate(
    strict_mode=True,
    validate_required_fields=True
)

# Enable/disable validation and escaping
hl7_obj.validation_enabled = True
hl7_obj.strict_validation = True
hl7_obj.escaping_enabled = True

Error Handling

The library provides detailed error messages for various scenarios:

  • Validation Errors: Specific validation failures with context
  • Parsing Errors: Line-specific parsing issues
  • Field Errors: Field-specific problems with segment and field information
  • Component Errors: Component-specific issues with detailed location

Bidirectional Conversion Example

from hl7conv2 import Hl7Json, JsonHl7

# Original HL7 message
original_hl7 = "MSH|^~\\&|ADT1|HOSPITAL|LAB|HOSPITAL|20240101120000|SECURITY|ADT^A01^ADT_A01|MSG00001|T|2.5.1"

# HL7 → JSON → HL7
hl7_obj = Hl7Json(original_hl7)
json_data = hl7_obj.hl7_json
json_hl7 = JsonHl7(json_data)
converted_hl7 = json_hl7.hl7_string

print(f"Original:  {original_hl7}")
print(f"Converted: {converted_hl7}")
print(f"Match: {original_hl7 == converted_hl7}")

API Reference

Hl7Json Class

Constructors

  • Hl7Json(hl7_string, validation_enabled=None, strict_validation=None, escaping_enabled=None) - Create with optional settings
  • Hl7Json.from_file(path, validation_enabled=None, strict_validation=None, escaping_enabled=None) - Load from file with optional settings

Properties

  • hl7_string - Original HL7 message string
  • validation_enabled - Whether validation is enabled
  • strict_validation - Whether strict validation mode is used
  • escaping_enabled - Whether escaping is enabled during parsing
  • hl7_json - Converted JSON data (triggers validation if enabled)

Methods

  • validate(strict_mode=None, validate_required_fields=None) - Validate the message manually with optional custom settings

Note: Validation is lazy - it only occurs when explicitly called via validate() or when accessing the hl7_json property (if validation_enabled=True). Constructors do not perform automatic validation.

JsonHl7 Class

Constructors

  • JsonHl7(json_data) - Create from JSON data
  • JsonHl7.from_file(path) - Load JSON from file

Properties

  • json_data - Original JSON data
  • hl7_string - Converted HL7 message string (with escaping)
  • hl7_string_unescaped - Converted HL7 message string without escaping

Development

This library is built with:

  • Rust - Core conversion logic with high performance
  • PyO3 - Python bindings for seamless integration
  • Maturin - Build system for Python extensions
  • Serde - Fast serialization/deserialization
  • ThisError - Comprehensive error handling

Key Features

  • Performance Optimizations: Serde integration and memory-efficient parsing
  • Escape Sequence Support: Full HL7 escape sequence handling
  • Comprehensive Validation: Built-in validation with configurable strictness
  • Error Handling: Detailed, context-specific error messages
  • Type Safety: Full Python type hints and stubs

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

hl7conv2-0.2.4.tar.gz (35.6 kB view details)

Uploaded Source

Built Distributions

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

hl7conv2-0.2.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (589.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

hl7conv2-0.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (619.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

hl7conv2-0.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (550.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

hl7conv2-0.2.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (386.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

hl7conv2-0.2.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl (405.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

hl7conv2-0.2.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (374.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

hl7conv2-0.2.4-cp315-cp315-manylinux_2_28_x86_64.whl (382.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

hl7conv2-0.2.4-cp315-cp315-manylinux_2_28_i686.whl (400.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

hl7conv2-0.2.4-cp314-cp314t-win_arm64.whl (225.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

hl7conv2-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl (584.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

hl7conv2-0.2.4-cp314-cp314t-musllinux_1_2_i686.whl (614.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

hl7conv2-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl (544.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

hl7conv2-0.2.4-cp314-cp314t-manylinux_2_28_aarch64.whl (369.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

hl7conv2-0.2.4-cp314-cp314-win_arm64.whl (227.2 kB view details)

Uploaded CPython 3.14Windows ARM64

hl7conv2-0.2.4-cp314-cp314-win_amd64.whl (238.2 kB view details)

Uploaded CPython 3.14Windows x86-64

hl7conv2-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl (584.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

hl7conv2-0.2.4-cp314-cp314-musllinux_1_2_i686.whl (614.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

hl7conv2-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl (545.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hl7conv2-0.2.4-cp314-cp314-manylinux_2_28_x86_64.whl (382.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

hl7conv2-0.2.4-cp314-cp314-manylinux_2_28_i686.whl (400.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

hl7conv2-0.2.4-cp314-cp314-manylinux_2_28_aarch64.whl (370.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

hl7conv2-0.2.4-cp314-cp314-macosx_11_0_arm64.whl (332.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hl7conv2-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl (343.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

hl7conv2-0.2.4-cp313-cp313t-win_arm64.whl (225.9 kB view details)

Uploaded CPython 3.13tWindows ARM64

hl7conv2-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl (584.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

hl7conv2-0.2.4-cp313-cp313t-musllinux_1_2_i686.whl (614.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

hl7conv2-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl (545.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

hl7conv2-0.2.4-cp313-cp313t-manylinux_2_28_aarch64.whl (369.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

hl7conv2-0.2.4-cp313-cp313-win_arm64.whl (226.9 kB view details)

Uploaded CPython 3.13Windows ARM64

hl7conv2-0.2.4-cp313-cp313-win_amd64.whl (238.4 kB view details)

Uploaded CPython 3.13Windows x86-64

hl7conv2-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (584.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hl7conv2-0.2.4-cp313-cp313-musllinux_1_2_i686.whl (614.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

hl7conv2-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl (545.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hl7conv2-0.2.4-cp313-cp313-manylinux_2_28_x86_64.whl (381.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

hl7conv2-0.2.4-cp313-cp313-manylinux_2_28_i686.whl (400.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

hl7conv2-0.2.4-cp313-cp313-manylinux_2_28_aarch64.whl (370.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

hl7conv2-0.2.4-cp313-cp313-macosx_11_0_arm64.whl (332.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hl7conv2-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl (343.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

hl7conv2-0.2.4-cp312-cp312-win_arm64.whl (227.4 kB view details)

Uploaded CPython 3.12Windows ARM64

hl7conv2-0.2.4-cp312-cp312-win_amd64.whl (238.7 kB view details)

Uploaded CPython 3.12Windows x86-64

hl7conv2-0.2.4-cp312-cp312-win32.whl (224.9 kB view details)

Uploaded CPython 3.12Windows x86

hl7conv2-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (585.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hl7conv2-0.2.4-cp312-cp312-musllinux_1_2_i686.whl (614.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

hl7conv2-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl (545.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hl7conv2-0.2.4-cp312-cp312-manylinux_2_28_x86_64.whl (383.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

hl7conv2-0.2.4-cp312-cp312-manylinux_2_28_i686.whl (400.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

hl7conv2-0.2.4-cp312-cp312-manylinux_2_28_aarch64.whl (370.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

hl7conv2-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (333.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hl7conv2-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl (343.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

hl7conv2-0.2.4-cp311-cp311-win_arm64.whl (229.0 kB view details)

Uploaded CPython 3.11Windows ARM64

hl7conv2-0.2.4-cp311-cp311-win_amd64.whl (240.1 kB view details)

Uploaded CPython 3.11Windows x86-64

hl7conv2-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hl7conv2-0.2.4-cp311-cp311-musllinux_1_2_i686.whl (616.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

hl7conv2-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl (548.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hl7conv2-0.2.4-cp311-cp311-manylinux_2_28_x86_64.whl (384.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

hl7conv2-0.2.4-cp311-cp311-manylinux_2_28_i686.whl (402.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

hl7conv2-0.2.4-cp311-cp311-manylinux_2_28_aarch64.whl (373.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

hl7conv2-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (333.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hl7conv2-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl (345.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

hl7conv2-0.2.4-cp310-cp310-win_arm64.whl (228.6 kB view details)

Uploaded CPython 3.10Windows ARM64

hl7conv2-0.2.4-cp310-cp310-win_amd64.whl (240.0 kB view details)

Uploaded CPython 3.10Windows x86-64

hl7conv2-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (587.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hl7conv2-0.2.4-cp310-cp310-musllinux_1_2_i686.whl (616.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

hl7conv2-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl (547.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hl7conv2-0.2.4-cp310-cp310-manylinux_2_28_x86_64.whl (385.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

hl7conv2-0.2.4-cp310-cp310-manylinux_2_28_i686.whl (403.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

hl7conv2-0.2.4-cp310-cp310-manylinux_2_28_aarch64.whl (372.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

hl7conv2-0.2.4-cp39-cp39-win_arm64.whl (231.0 kB view details)

Uploaded CPython 3.9Windows ARM64

hl7conv2-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl (590.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hl7conv2-0.2.4-cp39-cp39-musllinux_1_2_i686.whl (619.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

hl7conv2-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl (550.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hl7conv2-0.2.4-cp39-cp39-manylinux_2_28_x86_64.whl (387.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

hl7conv2-0.2.4-cp39-cp39-manylinux_2_28_i686.whl (405.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

hl7conv2-0.2.4-cp39-cp39-manylinux_2_28_aarch64.whl (374.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

hl7conv2-0.2.4-cp38-cp38-win_arm64.whl (231.1 kB view details)

Uploaded CPython 3.8Windows ARM64

hl7conv2-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl (590.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

hl7conv2-0.2.4-cp38-cp38-musllinux_1_2_i686.whl (619.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

hl7conv2-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl (550.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hl7conv2-0.2.4-cp38-cp38-manylinux_2_28_aarch64.whl (374.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

File details

Details for the file hl7conv2-0.2.4.tar.gz.

File metadata

  • Download URL: hl7conv2-0.2.4.tar.gz
  • Upload date:
  • Size: 35.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4.tar.gz
Algorithm Hash digest
SHA256 dd1ea2ce78387149129e219dc7487b2e32d674af947e77173f36e6307c1446d9
MD5 3a505d9d379b8fde164e37b5eb665b72
BLAKE2b-256 a4c0d069bb6c1522c3f6b275f5c93db57e3a92e05f111f23ec8d0fd348a0e221

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 702d386fe9e7ff4361d2885ef9c16af6562ee63d2db77b4b49a02db3c196dff5
MD5 ad5e87b9a99faec845ab0fa87e6a1e3f
BLAKE2b-256 676ecbb5180e5410625369b6187a0170d1b0e03220421886a1cd14ba6f67eea4

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 140b79cccfc35477503ab32386848ad36e40e95c28801c93561dad6c701f85c7
MD5 135c5c5d0e26711830b89bb3c2f1357d
BLAKE2b-256 713b0dcc34443321f80044303b1483002a4b4939d484ea75385358414fe60c30

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 175ca78d719f7d3cc2c85f9025c76bed26f9ea56d7cfdc551681509ca5fce985
MD5 184767d4017451d5951bb796859fa6e7
BLAKE2b-256 b52d2a6ff1d2085a41f24572b38fff2186ed6622d2053b7a76230a3a945f3e38

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 963e5ab1eb9f63e0459e0d0f8560a8325f8102aa52701626af0139927f7a5394
MD5 1c2e9b6b4044f54d2995d2cf0d6e0922
BLAKE2b-256 342fdb5850e82ef8503196d49445340f6607d02f7144f29c13a88a34677eedea

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6d27b8f31842af2c31dcda1c53f5ba1091b9b60f89459e87339eb3b30faed84c
MD5 382d30dfd1720f221edc0fdd098391cd
BLAKE2b-256 20c85c6e811b6e69689f585390b74ffed23b4dd86fa29c6ac78352ccfba8f636

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b856d2e9d52571c1b8acbcd7e53f3eb045a16d9eb45d1e9cd9c47301ce69b81
MD5 6a06c70d37b758906c465c590480449e
BLAKE2b-256 6c865bb68ecc87feb42117413a9fe606052e9b3e107dc186ef2097915a6d6f2f

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 209b8660ef6414dbccaa77a2a2f2bef215a1073b7cd41ba356b51612a9b7c874
MD5 4b48047e626085f85cd5e32427cbdf65
BLAKE2b-256 a23aaa45a59005c558bcf38292c212c86f28c931eb0dea9ba7f4a67016a37ede

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp315-cp315-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 582206df5c4733f59bcc0211793d94c840f3b44288b2eb76bad9c77c39f72b9b
MD5 7eb96fbcb58f438f154b644fdafbc53e
BLAKE2b-256 8ea43c91d62bf8e7bf254a4a37f43317f6d5cee091363446f5da0fc847260db7

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 225.7 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3838f61e0047aebbd4078e0d902f18186879df3bfad256b6d8fa613f9119441f
MD5 3ad5078c9e53354f1e22210f7c07cab8
BLAKE2b-256 2a8cc7a23073fc93b194f62a500804263924fe31b8eed403d567b3d96bbed226

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1642b1128efd94f1aa4078491238459bd9a9ffd7cb4350c736e800fc38519cb5
MD5 a180e395abe0903c4afa7bb026a31bad
BLAKE2b-256 90ec8d1dba4b4ab8c2f019bc92c9c40784e39d82015a1c67407f0ddfa20a9a93

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0e45351367f26efb4837392c445f6bbed3457265e855db2d48c4831545dc4dc
MD5 a85b9b0beb102ab24364f295f2deac70
BLAKE2b-256 ca57d663b0ee3f0e2ae937be800ae111cb8cf7bece19e284c10b41dba76fdfb4

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb55506a5397c22efb81fc023228f011c40174bbb5f541313f3f7a46ec1476ef
MD5 75f9e6473bb5959ac0216422c0732ad5
BLAKE2b-256 502ad5c3521dd4345cca25bf1292e28c3f5e9c1f0b874ad6a6cf01353ec48787

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c163cf0b26a14e0a80c62d91b8c9f1c3ba569e592acce016a29d8f36ec3f9532
MD5 4635526443c8cea1ceca50918230b14b
BLAKE2b-256 e3270da3d8d134867bd7cf2a273a26c14cec9edc5166ac41f6f732fd3fbe3730

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 227.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9d9d777ca06a27f990761c653431b87a948f9e12d12b315566e2bc482542d973
MD5 92439c448e421c57750051ee7fef4943
BLAKE2b-256 8ac9693c18bc2753888e06002a5dade32cdcdbabbb2aecbefa3cb792661e8979

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 238.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 86aff4099cd2c2edff7522574ed55387762e244b1d76c81ac4eea966c46818a7
MD5 74e2b6374c33349f9a8870a4b06c6c86
BLAKE2b-256 4c3382d4d79f0def70a22a51227d751fbfb07af7793b03c87e112ca2a3d6a586

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f31bf23119790c1ef2473c7a69b181661c6ca261afa2daf295b11e57c21485c7
MD5 f843f9e575c4f9989b06de18f7f61f48
BLAKE2b-256 daf37d7c4db01a5913b5c5c21dbff7fec39fbe8a01e5d5130090cb7d1b46e5de

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 45d316cc9b8fcf2c80557a08248fcd4b59e1cd0eedbb80a9a87e368dbc4e4eee
MD5 e7771bddc0ef8ce58858d700f50161ab
BLAKE2b-256 f873478f254a690f27310a967b202eef806d8ada91c4dc855ba0b49ab52b4ca8

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 966440f83b5f9d0ee31a512db0e1d3de003aa6a10569979aedb1dcea771fa7e0
MD5 254ba50b138fb5b9351163a85bce5600
BLAKE2b-256 13daa1cc32c217093b3f7ab8968457fabd82570f53871c28d0ae471d1dab0baf

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6415d177184a6dad3b9421a2c99dca4b2af501903f19146c334b4ed2c8cddf9
MD5 61c94bb700f498615bac1d23e411765d
BLAKE2b-256 48ab5384c690ac2a51d86dd6b2df23d5a845a3b4f7410d8bb5e704558c44e486

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 52081ced0173f21126ef31eb6763459376169328bdc2f18cc0031dde18fb9fc3
MD5 3b86bbd403fd4b7632c26fe60c658175
BLAKE2b-256 b0732fa3e343ffcba630c822e5fb8b62ebd148fe7f0b13ec2a7ba534ffe27540

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 abc480bcb84de09ae4f0ea6e4653714d35a6f925264024ef23d6ad29cc8eb10c
MD5 7ac8cce3530eac82ab01a9fd2b2a2c24
BLAKE2b-256 d079446d06dfa1c7e4c99acec614f628f63dc2b83e011e312d611de7b232ebbb

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b681fa6306aded5e986be479be7e188665ee58bd50f7fd33609d95a361ea488a
MD5 dcf7f63bfdf8cf7b80044dbd37d02735
BLAKE2b-256 2eeee65e6cf0ff129c58571054b787c281fdaaadf6b157423a99c9d161559df0

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04963a53f5f8553bb5a1d3badcc443d7c74c2ae7c111eec4f9715a84fa1cb1dd
MD5 50dfcc23b42c81b038ad556c7f58952a
BLAKE2b-256 e0d140fdccfa264a9c5f0f33be68a01baeee4e538bb7b917d7921f7e453bbafa

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 225.9 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 6d54f487b5391a9c8cf9d3c055777a895628d03c8a29067fe56adadb8e79643d
MD5 56c9e28140e91e6011a194c4a5e1d1bf
BLAKE2b-256 4f42ba1ffe9541919cba3905a0c54cdee65f64ae7d455811bdd04c8858527f5f

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dead46475ca9d823b60fea1a5fd5fb442a034e0ed430f17a419b801c2f7eb619
MD5 6b1b36b6e3747ee8f47ce92705b29e39
BLAKE2b-256 3094ad20f712c1269a6179f05dbdd528999559b2db0390330e0ed8f338b08e00

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 294c89907cfc1d21986813b1d57c0997366374646201a1514c12e264ba0e5abd
MD5 22382c7901195548ee67d9bc48577b63
BLAKE2b-256 d2652d4154ee77f93040bfe63443d7de78b6ed8b8c85bd3f1994680b9ec0d465

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 966d55e9242c3f954e203585a31326927d50f8386a12b419826245ec3c8f673d
MD5 b796067e98458d6162d3351f2051e675
BLAKE2b-256 d76a755c45fa897067ee4e3792dc2abf4e7a76150967df5d861e3aa08801f4ef

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 439557d61965f37c01d1aa0248fe9a87fcff5cfe3a33301d30f691e4f41d42e2
MD5 37c3e5e3f9a2fceefa20e5d0fd1759ca
BLAKE2b-256 d6cc7b21c0ef950493c27a2b1b5bf1e8be09ba2ddf64c2ceef24f5e83d09eb6e

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 226.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e9559284ca1a932af4252244c051c811fa495f2924b861ab4d4ada8f0d908a99
MD5 99923aca2f3029bb9a1890d1fb56fbd7
BLAKE2b-256 2fc5277b3af95819081dd3295303ff6b7712f5ca8b64b89d515903ce890b82a1

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 238.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 478d206ec973c0e1868737a03434c1b8cb8ce285162bf0ce33e41a45d7de01e2
MD5 30df69721efc4e134a5d4d98ff8a0970
BLAKE2b-256 967039a3a124e2237aee7602281c4c72bc6cdfe1ea237d3963e34ae51171ccde

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3241e221ee31b16486f34d2608a45d9c46457b97c384149d308dd9bd185ca2e3
MD5 895775ec62bb60d7b437765a7a201075
BLAKE2b-256 f49bbf96736d46de3677e76b8df0e742797b2d5ee2725e04e516699fe1e73690

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06cf0d41cd078b192eb5001d9c1539b0d10d1144549430ffc6f93ee92829f500
MD5 eae304919db36ebdd37452d0e6815062
BLAKE2b-256 dc2f69334e94bc881c0d7dc5ff5feb2662a8b34b86a9dc0ae50a8c4e8357d78c

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47098c24817631c6100e8f679882e75b02e0a387c3c22cc9d21845663c7fd4ba
MD5 3e1531e76c49d75e5b3ed1a78ede8350
BLAKE2b-256 58538f2a69b4921ca4b28a13cbc3afae5041b28d68ce6e59b8cb7a3c1a636153

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e643b0921ce79e661eca4ccf02f7263ab993c66e14c5eb4a755cdddd3601864
MD5 83783bc0cd78636d8d880e28810ee990
BLAKE2b-256 3e0b618e449431b3b853116faa02c7cc4db17272c3f3146b7758a6c6dd594a81

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 47a451d6d0df055c08baf2c46ae47609ecd9c70599f15eb1b2fd36ea382e86b9
MD5 e74505dee4ed62da8dc65fbb39dc41cb
BLAKE2b-256 0fc3f8b9b4ecf9206dfccb3b384d1c82cab4fb094d13388ab0ea3a5e1fb4b167

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab23f7f14434ea18d7711cf0c0d9166862c3fc5b8fdefe67ebf8ae9b6f212b54
MD5 dfaa4f8b31b253870ad01e30dceb8b6d
BLAKE2b-256 b87c294edcf183af09e0ca63a6cf90099ebfad0f7bd5dc5f725c75b3730ac8e6

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c01f3946b710ae5c86d3e3c6d4712f4f349abb0b816cdd4540ea843c555518ca
MD5 92cdee786964f9462f2693692b4587d8
BLAKE2b-256 991359c1fd9bdd7f7a1cf49f8909173ad6124e8596d569ec73c466e78e6991d8

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c60cc1348352c724207df3578f5c8edbcd1f227f2059a843c614b5d94173fde
MD5 f93efa3b72ae1a2bdd916bdba6a0810e
BLAKE2b-256 9692fce5c1b429559182a27dac512a82ad7b4ba8688da64d83bda9c0744dd466

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 227.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 699586d0d4ce6d115a59c937f2d57b77f1785f0986f6e063708eadee9b55a239
MD5 dc93a19fb8458577893d47331abd2356
BLAKE2b-256 6880cf9891609a95599a650960d3fb9227dc22be08d04d62bcbcdddbf0b9ae8b

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 238.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 79b319c212605e6495d91a2d0cb62fdcd9dd900259dde7fd6e5ab1648a7ed742
MD5 fce211b661dda8e08ad471601a72ee5f
BLAKE2b-256 d13eff87a342b15053e369ab5d567e520415bc944f19bedd64c26f2d9506a224

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 224.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 27ab7dcdb355170a822e1c0619ecdea01b5d8fb4fd18c9da554d5135754afd9f
MD5 56bdf54b71dd33ebc5460c3df6151c6e
BLAKE2b-256 0caf3e09fbd8fbc0d905c92f652eda69f7f4cfcde910ee94d88328ed7cff1e18

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6874eaaaa27babcebc336be952f2b2a02e284f3dd54f8a428fa3d7546caa3adf
MD5 f84088cbec0dca6af298b72d0e7d0a40
BLAKE2b-256 279badc1506d886e723ee6fd62d132cf00cf362fab8020a838e774cb0aaee006

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3bdb9180733b4aec8f1733d10dd78ed9bf2ed64871739ca10c8a130b8171cf9c
MD5 6a09ba73fbb8e67e588c3052c4650f16
BLAKE2b-256 a60bd42b982d62d30f2da9d5b83f76c6e19f12ec9477d655670048884d5f575c

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb08f2ebed2b2580e301fb4200e52ed9a2137272d5320e08cd29526c6953a2e5
MD5 7b2ffad0b06d59e79a64f46900c0ef1a
BLAKE2b-256 746ffa742829055f9e6b533793c510abd75ec55226920f0d03652d573e33f682

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0389b79f9494da786c89572ecdfcbdf5f2b30286de872b89d29509d9059f7bd6
MD5 41bf737358bd54d32567d7fc04142ea5
BLAKE2b-256 045b8e98ba73cfcb3f55e9f1a2c16ce9a7c7515cd91d89f41824d7d276073a46

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 91a88a62ed0bcf37d39fc1d29bf265c61dbdf191f48c95e7148d671a94f71605
MD5 54a2d56ab777275d1d6ebb680a33cbd4
BLAKE2b-256 a6208be0e9dc0c0cc4c59d98de29b64d3c237c32bb80217e1e360ea94e652eed

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6c0c73876fbf62f5abbae996fafed0f4d322be55619798bcd37b5605762e819
MD5 88ffb20bc4738647cbe4481e9dbdb13c
BLAKE2b-256 2c9be9bbfda925727436f5c915c82671aecc36d3eb11d1f3e16e73ab13d642a0

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d5d33994592e75823be5338a45fea135cf02d4c66abccf891cdefecdeea4345
MD5 ed2aeb897bccf725444138d3a6e6d59d
BLAKE2b-256 c842dab9b157b9dbed87868c03614ff82ab07cf79ce496cb85ede1b25b811138

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af8b3d99b67211fd4c7186071e8ee511c5ab2717dcbda4c7ce1086e785f9dc86
MD5 1aa0f6b8f07e9e847e2e97b9033a81dd
BLAKE2b-256 fe90d302027e28e8a29d93cfe2f31b214293e9f1f6f8ec11da9c08b3ed0aa720

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 229.0 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 701545da14d792fc2de18d89d45e65993201295ad78e1d3f5839c7c896ef8cbf
MD5 bf8a184f3ac302bf0b40c28ae61ad318
BLAKE2b-256 a087163cd7cd38a260aa8c9f6164df6d0c8f0e73b63ae8de0ef4411df4103ad8

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 240.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5dc57dc2813baeb4aa778a78698ec54fcb8e3d7e721c4fe3995da8b98876d0e1
MD5 d48a3e8749b613db6410383fc53b779d
BLAKE2b-256 2c3eb13982491fe9657dd44be9225a69a94317486af70a15a6dfb4c9780bd24c

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 425ecb5e11f6e616457a1404207e788dbab77c8b495983b1b836101020d2a9a4
MD5 59209d6976b810b4afba38c4e8485c88
BLAKE2b-256 ca0747b4f78a74ada826516c1c81697dc3402b106493f3164c3b65247e5b43a1

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce5b41acba19a0587f3899f3653fe39647b34337e62ca7bbd6dd1b427121c754
MD5 af65e3721b6dad916f44bba57e47395b
BLAKE2b-256 9577913073d83d54e81bc66f885f726ad7080e3cebc60534bf48d9e0ce395ec7

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96e5861cff7c16ec664e1242c53762b30bb8048528cbb3908337ebb6188fbc6f
MD5 f0ac167fccfcffcedda6e6f77f577221
BLAKE2b-256 eb183fbe6919c9c0b85bb35413d0871a706c29be92222e2b8278c461ad743f94

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ee84adfc40277b5428c70175801ae790c0e1f0713b28d1f4390f638498b44e6
MD5 fcd0c73b1b32110c49dfedf987030ddf
BLAKE2b-256 aa94c7ca930157d7ec562f9637e8c303480070138ff380202cdede2d16447852

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f3e46e624f306b5323e5ab5483ad81c7f7a496d81bf34adea5f539878ba388dd
MD5 33246da6f8a300a4af14759880254eb6
BLAKE2b-256 5727720fa2505afc1cae9b7e43d02c55446e484c3c44c905bc46814f5a8d4ac7

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fc14d7feab49b9e27e135ce35ca1ff5ef60200fba13b40cacbaced7ca05ed70
MD5 5b023e11a6d90be8f3d6f10e3fb08c5b
BLAKE2b-256 63fd5caa4e1271a1879c40830053f4d090e7d005c3b54eb3e968aa7b5add688a

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4428ccb4bb3aae3d15c28c5722286f44e7c731c726de3077da8af4bc64335580
MD5 9022499da275b2bd0e4328f0520c066f
BLAKE2b-256 1baf5c9ce7bcbd3b3ba82f8a7fec14c9748dcb401399e8ce99f97bd1dd7c5ccf

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b327ec5e08c260c1274a603189221fb97b2ffcc99a7a35f9ed21aa9f61fdc9b0
MD5 11d24a7529512809a60c1447adc8d2e6
BLAKE2b-256 6489d43f81dad6e64e20eaa75d1c983d34111221feffca921e16ab43b20a2402

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 228.6 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 72b71dfc07947e4c22fa44475b032d899720147d411fde849c9ecb34c8a2b842
MD5 da5b67ea08817da86db11274ae732e04
BLAKE2b-256 0b43a50c04376efe451026d6c35467f1a78ddfac685e1704dc352a2ef0431618

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 240.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a6ff7aa41e07f913be11f9d08e2deb9caff3b3c9f30415f9634d16145de05017
MD5 95b0441d56ea2938e366204d6194c366
BLAKE2b-256 fd62789b1ed5e29589cab484b029c544ffd97baaff73e6d1c912ada04762dbb8

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a13f7d7267cfaed62671f27faf162d9c2a1a3ae8d4f70ddec4b9048acdd5fd5a
MD5 d3e43711ed09bb7335624b96641497ff
BLAKE2b-256 fa743c6f68348cf2ab611cef4220b52f90da8053092eda517c6fb60ce587aca0

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99cd8129f81ec071ee20a4ccc615639a918ac65e2cd9716dc9b16f5c8d9fc848
MD5 122e7985122cd6531fc7a08414c79328
BLAKE2b-256 a7896ddda7dba25bf2ae70a03baff89920ce2af3434b6b4ffeb9f776fd3c6083

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 256dab93823a60ad3ccb2caefa0f4b10f28515462b8957619a9f963cd140cbea
MD5 d935cca40520f71b45e689be306797c6
BLAKE2b-256 44fb7b34e5922b6c2b4da722a277797814e422c1513c95196a216fc1ebd509ad

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 affa71c1c3cd1984e4e09c6da5a8aeccec6aad418958c87d8982afc5588db1df
MD5 982f8f063b5fc48baad5fa3de0cd077e
BLAKE2b-256 a5a71ebd5a25b733103d5b5c198f3e1a3113b1a14c99e20b3ddffc43764dfe4c

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2337193e42adf7478dec8f06593bd74a18bad59edc0d1019a8317a9653338e0b
MD5 092a91ae6da60e80f9d789faee9798f2
BLAKE2b-256 763b6d2d185a86a095025877f13f4e6b76cd715e8d1aadaf6b7cecee369c9c0a

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0b679e0217917327aa4ef1a8f03beed7e1600cd88f760df84b8a6227b068958
MD5 a49d025a211291cb410ca9b24ca7a220
BLAKE2b-256 f3857c232526ddf9ec4f04b3e1d09234ef8fe91df856578a2581adb12f627b78

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 231.0 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 8cc50cb661454fd3a07cb5c7bce4e88e37b732e4d31f1470c5f1e3c09b1002be
MD5 beb48c4f6feb647ef4a9dcf6d7b4af2e
BLAKE2b-256 21ffc6745161110e3968d19eff6d24cd297eda0974094682238659aa0cdd4c34

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6eb1142c628179d4349945476ed27f61cbcdfea61876eb7e168e739580d3001
MD5 86a0b02922a9a6bd4780cb7338c2fcd1
BLAKE2b-256 9bafd3b0b0d3206f01357a65111c9138d3612ac5ef9a5ff807fff257e1d16688

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0899aab97699818883dd5dee01d365edadbaa3f4c74a790b15507755ae8e9d4
MD5 95c44196ed627069ac459d7a7c51c785
BLAKE2b-256 e63760d5dcdfe9b3a8149832be64f326bbeb796c0fd23fbaa995b3c524409311

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49c6008b51b465a706a14b233f0f4ca86eb536c823a6db7a6347bc2491a68faa
MD5 37210411363a4c291d87da32a22402fa
BLAKE2b-256 c6d3544b4ee9018bc128884fb13fc6b11c54d4d9b7e503521fabda18ca7b0e12

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d981271c8ab9e287c90bdd00c0c3edf70ad1fad251f4986e6ee281dc7a75646
MD5 85f2c86d7b7376b1e80cad20e2709ae3
BLAKE2b-256 fb1a48f9db6d7632c4835f87e583174a846cbb055fe17a67149acb1af98aa9e0

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp39-cp39-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 694ede752dc05c38d1d89c38d12a0384160d9ec72b6e4faffce89eabc942548a
MD5 b406d8be9102da4efbc2a5a38da976ba
BLAKE2b-256 ed7b36297dbd069c5735f029bdc0c0750be4d367ac59cd1447cf77018ab59eec

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7de530317fcf76bec5a69e07644aec2781d871bfdb74a9b2a37793e696e2e2b
MD5 914a3108e619cbe704c164ae7e25d65f
BLAKE2b-256 b325af85ab9e546f68019a8cac5352fda44f7ba62597d03fd0fcb3a563baa7e1

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp38-cp38-win_arm64.whl.

File metadata

  • Download URL: hl7conv2-0.2.4-cp38-cp38-win_arm64.whl
  • Upload date:
  • Size: 231.1 kB
  • Tags: CPython 3.8, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hl7conv2-0.2.4-cp38-cp38-win_arm64.whl
Algorithm Hash digest
SHA256 19ed84df5d1b44c4049087962b3db80735a41f0990c407d4a83f25e87070b1f5
MD5 f6802f7c323621c26fbc539bb0a1e007
BLAKE2b-256 739cc7fcede6037e38d360afe4863c1371a1982a20732e8a7b5b6a84c3d70389

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24ef1c85f15acf2ba20210b3daa4a875f16d17f711bcbf32334ed0cfebfe483c
MD5 c16593c5beb9da55e31435eaa58be277
BLAKE2b-256 b349486a3fe3f21c9489606d06860920e9fbf3f7cc1eed9fca50b106e2af6487

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5ed9a3661f1f1a59759f4471d6ec55607877dd50b80400fddc46b11c1247d7f
MD5 127dbe627fb7cbdf4a9a41dbdc52cdcf
BLAKE2b-256 b69cafb75c887a5e5d20d5c192b9cfff2a9d750de872ddb662c73c7ca363444d

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71b24383f6c09de0117bc33c3194d0af9affbcb06abe438b993c05648db783b7
MD5 a7ecf028147552d963be50b278c1e2c3
BLAKE2b-256 6b75099da218fa5f7b245486558326b24e828fc9aa124a9b0416add8dd35ad31

See more details on using hashes here.

File details

Details for the file hl7conv2-0.2.4-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hl7conv2-0.2.4-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da79afe281ba4817925aede8ce9748e1cb79d6b289e092897ee43cd74dac1a2d
MD5 4a2e42044b8f4d7cbdabfcede15be74c
BLAKE2b-256 9bcab53986102c69426b18368987202ca94d4ab1a57566907fe4fd4f37a2737c

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