Skip to main content

Python bindings for readcon-core CON/convel file parser

Project description

About

Oxidized rust re-implementation of readCon.

Reads and writes both .con (coordinate-only) and .convel (coordinates plus velocities) simulation configuration files used by eOn.

Features

  • CON and convel support: Parses both coordinate-only and velocity-augmented files. Velocity sections are auto-detected without relying on file extensions.
  • Lazy iteration: ConFrameIterator parses one frame at a time for memory-efficient trajectory processing.
  • Performance: Uses fast-float2 (Eisel-Lemire algorithm) for the f64 parsing hot path and memmap2 for large trajectory files.
  • Parallel parsing: Optional rayon-based parallel frame parsing behind the parallel feature gate.
  • Language bindings: Python (PyO3), Julia (ccall), C (cbindgen FFI), and C++ (RAII header-only wrapper), following the hourglass design from Metatensor.
  • RPC serving: Optional Cap'n Proto RPC interface (rpc feature) for network-accessible parsing.

Quick start

# Rust
cargo add readcon-core
cargo run --example rust_usage -- resources/test/tiny_cuh2.con

# Python
pip install readcon
python -c "import readcon; print(readcon.read_con('file.con'))"

# C/C++ (via meson subproject or cmake)
meson setup builddir -Dwith_examples=True && meson test -C builddir

Installation

Language Package Install
Rust readcon-core cargo add readcon-core
Python readcon pip install readcon
C/C++ GitHub Release meson subproject or cmake FetchContent
Julia ReadCon.jl ccall against shared library

Design Decisions

The library is designed with the following principles in mind:

  • Lazy Parsing: The ConFrameIterator allows for lazy parsing of frames, which can be more memory-efficient when dealing with large trajectory files.

  • Interoperability: The FFI layer makes the core parsing logic accessible from other programming languages, increasing the library's utility. Currently, a C header is auto-generated along with a hand-crafted C++ interface, following the hourglass design from Metatensor.

FFI Layer

A key challenge in designing an FFI is deciding how data is exposed to the C-compatible world. This library uses a hybrid approach to offer both safety and convenience:

  1. Opaque Pointers (The Handle Pattern): The primary way to interact with frame data is through an opaque pointer, represented as RKRConFrame* in C. The C/C++ client holds this "handle" but cannot inspect its contents directly. Instead, it must call Rust functions to interact with the data (e.g., rkr_frame_get_header_line(frame_handle, ...)). This is the safest and most flexible pattern, as it completely hides Rust's internal data structures and memory layout, preventing ABI breakage if the Rust code is updated.

  2. Transparent #[repr(C)] Structs (The Data Extraction Pattern): For convenience and performance in cases where only the core atomic data is needed, the library provides a function (rkr_frame_to_c_frame) to extract a "lossy" but transparent CFrame struct from an opaque handle. The C/C++ client can directly read the fields of this struct (e.g., my_c_frame->num_atoms). The client takes ownership of this extracted struct and is responsible for freeing its memory.

This hybrid model provides the best of both worlds: the safety and forward-compatibility of opaque handles for general use, and the performance of direct data access for the most common computational tasks.

Specification

See the formal specification for full details. A summary follows.

CON format

  • A 9-line header (comments, cell dimensions, cell angles, atom type/count/mass metadata)
  • Per-type coordinate blocks (symbol, label, atom lines with x y z fixed atomID)
  • Multiple frames are concatenated directly with no separator

convel format

Same as CON, with an additional velocity section after each frame's coordinates:

  • A blank separator line
  • Per-type velocity blocks (symbol, label, atom lines with vx vy vz fixed atomID)

Why use this over readCon?

Speed, correctness, and multi-language bindings.

License

MIT.

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

readcon-0.4.3.tar.gz (129.4 kB view details)

Uploaded Source

Built Distributions

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

readcon-0.4.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (390.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

readcon-0.4.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

readcon-0.4.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

readcon-0.4.3-cp314-cp314-win_amd64.whl (238.2 kB view details)

Uploaded CPython 3.14Windows x86-64

readcon-0.4.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

readcon-0.4.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

readcon-0.4.3-cp314-cp314-macosx_11_0_arm64.whl (343.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

readcon-0.4.3-cp314-cp314-macosx_10_12_x86_64.whl (350.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

readcon-0.4.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

readcon-0.4.3-cp313-cp313-win_amd64.whl (238.3 kB view details)

Uploaded CPython 3.13Windows x86-64

readcon-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

readcon-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

readcon-0.4.3-cp313-cp313-macosx_11_0_arm64.whl (343.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

readcon-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl (350.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

readcon-0.4.3-cp312-cp312-win_amd64.whl (238.7 kB view details)

Uploaded CPython 3.12Windows x86-64

readcon-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (385.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

readcon-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

readcon-0.4.3-cp312-cp312-macosx_11_0_arm64.whl (344.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

readcon-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl (350.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

readcon-0.4.3-cp311-cp311-win_amd64.whl (240.8 kB view details)

Uploaded CPython 3.11Windows x86-64

readcon-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

readcon-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

readcon-0.4.3-cp311-cp311-macosx_11_0_arm64.whl (346.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

readcon-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl (352.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

readcon-0.4.3-cp310-cp310-win_amd64.whl (240.7 kB view details)

Uploaded CPython 3.10Windows x86-64

readcon-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (389.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

readcon-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file readcon-0.4.3.tar.gz.

File metadata

  • Download URL: readcon-0.4.3.tar.gz
  • Upload date:
  • Size: 129.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for readcon-0.4.3.tar.gz
Algorithm Hash digest
SHA256 a7f7f4409371ee57c6b3f444251ea42d8a28ec381b4ba9f231905bf009c097ff
MD5 ad39ac0cbdf40d46ccc5427916c925e3
BLAKE2b-256 0efdce0dbd9545456b967ab9dec69eebfafe3e3521dc59ecb55f69b3cdfee843

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3.tar.gz:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file readcon-0.4.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for readcon-0.4.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8379f7b014c517e504b8170b417b6a8ffdd9c3386c6bbdb614c22cc013c15f7
MD5 7c0279ba95df7aaeeee9d5de9f94c459
BLAKE2b-256 39857651af6075c2c2aa00f54a0a6278069bbb515090c89d0e82b5ae25271adf

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file readcon-0.4.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for readcon-0.4.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70d8f62f79680f392900d66691befc503c990ff241171655a0f53f4a86834ca5
MD5 da50857fb5597dd90b86cd17df5fcdda
BLAKE2b-256 3c6d46cbf439685aebf5866eeb421f884d4b3b6af639cbc397fe8ca7957d2126

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file readcon-0.4.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for readcon-0.4.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6761cbd9219d23ad31e93340bb46577228b51e735b9290d2bb43f7c6ff403582
MD5 6d48bd9fc780508f34ebc5d263e2449e
BLAKE2b-256 3938b9dd342bf5fb09e284c46b1e895d72943700c624b29a45acdb3d54d9fbf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file readcon-0.4.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: readcon-0.4.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 238.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for readcon-0.4.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 41f1a973323879d446703f9870bf198158fb36bdefa6467945ed80935eb6b805
MD5 a66eeb4a4206cd51b1e72bda5140877f
BLAKE2b-256 b95aaa9f9aba52754f920aa081ecb9e588201ec44cdd302c8ff033baa1eff592

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp314-cp314-win_amd64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file readcon-0.4.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for readcon-0.4.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ba308dba6d3d14e3d1771d46f64a76156721cab57f6186a1f4d5c9305a0bbce
MD5 899c48c427a9e11be507b05c9e55f791
BLAKE2b-256 58a61c6651463eb45fec0d951fe25be78db7890a22300e22cf36e09c895c464c

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file readcon-0.4.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for readcon-0.4.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29b929003bbcbd2ec739f6c9a383de16fe780fe4092e53b58793e8fb0e308326
MD5 3eb3ba8cb003ca83fc462d047122c84d
BLAKE2b-256 a8c995465b78622078dce51ad1e5b8ab58eb7906e76f566f07f6b54f3af4dd22

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file readcon-0.4.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for readcon-0.4.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c5f3c450596c4ad7488f0785c3ed4154ba1cdbc8dccc76793589a4f1a4dc351
MD5 3ba5eab0caa2c6599a0c5ea03f6cede6
BLAKE2b-256 3a9e8f5469bf11aaa9558ee68c8da4e9c9df1d30e211149543e49828ccbc85b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file readcon-0.4.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for readcon-0.4.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b9ffa78afbf84a2df14bc6ac91d2181029d6350db9b5ec6b83d494883efe4f1
MD5 3a41940d88933af4a410522f0f02f4f7
BLAKE2b-256 a3eba30371a88eabbb492b8154da2293518838eac63302d38010b40ca4d21938

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file readcon-0.4.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for readcon-0.4.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 229a2dfcf3a1f4bbf0c5da28d5b7ad78efdf702e9e88e02f4c429408667e4fe6
MD5 23e993f6c1bec5c49f25f10cc00db678
BLAKE2b-256 16c2dec9512abbe9c47a4e8fafad9161fd6f6a40b512c36233a76d399ed1d801

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: readcon-0.4.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 238.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for readcon-0.4.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b1ec42c3af4558d8514e7f006a1c5cbff21d22677284ffdab00cc24ecc0ce8e8
MD5 725614eeb1e47ac88f45d2190631405e
BLAKE2b-256 18e5b795f0f0dff2c4ed7ec41658a3d791e26faadbce7c641d3ffe95839d76a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp313-cp313-win_amd64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a62160479529331aec95db31a94ff46cd2e6337a9e1798d69c68a97afdda0b95
MD5 f1ed4e8571a847f164044a30d74fef30
BLAKE2b-256 d4b80957b741f0526e28c8cacb01357a33cab590abc64aada5c99300a5770fba

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14ebbd44fafe2d80a8cbe76cb071ef25264fc72b26f86acca5388f6da6792f24
MD5 0157e6b7f24a773b8ca2005201a32817
BLAKE2b-256 40cf9d0a49792c7d4681c61cae76ac896dece1449119435e52828f909fb24d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0431fe9dc9a0b03f105121f74fcaa4ea6e9473dfe4415531f1d5b3baac537f2d
MD5 0e76360177d087504865d3de7928984c
BLAKE2b-256 17c2a652a9666e0a107da4e750ac2c697dab0204c7db4bd01ad5c5dc81c81a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf53c217f372c9194f41fa6993702331ddc2d393fb7a90733d24b160553db5d4
MD5 3d625b804f21fdc19c7e439f6b963042
BLAKE2b-256 f22260492830f7b514d500f1cd2cc2599eb967c5e431b115a92c664144961c35

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: readcon-0.4.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 238.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for readcon-0.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a972c1cca208cdf7f2b0335fd8c88a600ad00468f6376beaae5d0954b26edc9f
MD5 ddeb8104ed8c0cca0f87af2b6eb0136d
BLAKE2b-256 01b638e97cca73f54d675738fb8e02b420e3a9d9f5adc499250b59ab54d1d828

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp312-cp312-win_amd64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 039ed476613778634714247f42810f1c9f6b9b3cbc68e2ff42d34a33e852da9c
MD5 79b89bdc830da37a548a1a28fd4c9ea4
BLAKE2b-256 22da7637d393d07a23387886bb7ccdfc82999639bd804b9b4acacd10a4aa2723

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 291786d72e37ba9d80e0a4aa42a7ed7773686821c17f3a59d626c981b4095aa2
MD5 ea8b02d99c46d31e17aac68cf3ab52af
BLAKE2b-256 e149750b4082f2329884adff4f005f92ba9489f025673aeb6505dd675e676b55

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 691485579d45d810e5f16dac9cb096178c5b56b44d24030fa2102b2541445933
MD5 fe6fe4620d603c1168713626bed7304b
BLAKE2b-256 cb8d8d68e9cf2bb561bc83e776a035c6119ebdeb37f6fe30d8aae1c05bbbc9c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cab13e8e86fd5c21c2a79227f3c26907bb0e7eb0184468f5d81d067c8caef50d
MD5 b77c748493826d0c7664a0733fca9d20
BLAKE2b-256 685ec6c5b88dc027ee926b0eeffc7e442b0240b4ee9169674263a6f3dd591021

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: readcon-0.4.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 240.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for readcon-0.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e218fb3f97bd8f4b8b5616d601ebd75ed2a8fbeb8611e673a3202b6d7de874de
MD5 024b725ed79a37165b5daed34a1837f8
BLAKE2b-256 e8fdc07fb02a76f8af5482611f38af6d562c82255d7198971cc29140f309d4df

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp311-cp311-win_amd64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18a921540855068e2aa5b959443e07b6ff3e0d85f4290ceac88e945bda2e2607
MD5 09cbf91e2d233b7fa299a1edf4dc08f9
BLAKE2b-256 8222cf1645826051fec7b31d609227ec07b1755377fbd2acd3ce8d356e09ab72

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49dfd7a3f9994ec051b5f96f74389450be4e785a72f3d164e1dac46a7235e390
MD5 f0b12d5806ce52b774ba84be1ed11879
BLAKE2b-256 56c4dbeff9578d1802af544e651bbb8d543091bd46aa2af842e0297ef7adc4a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9f96b7ee0dbb66fb48e07516cc7e513425a7e1d535f8f40ec045b1d507468f1
MD5 a6cecebda50c5f380ee5ffbd9716f2f7
BLAKE2b-256 12ac6dd35fe855e4817f638e56eec714fba22a07e69d9b262e97de584cba01a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0df4aa70db42b2fc8ce5122d8ba089cd934d0a374a6bb8fefa2aeb1121bfa7e5
MD5 46c847caff66478b993034438dcdd795
BLAKE2b-256 215785fa7b391465485ab2e795f7059a032d36034ac3f3229f51624e8b6ab693

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: readcon-0.4.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 240.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for readcon-0.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c739e6de10c3987b57f6be18a4657b67ae12c2bc698d31fd6bf19e10294da47b
MD5 43723fed0d422bb06ae13efd436dbc7b
BLAKE2b-256 c7c8fff9bb50bcea18a386ce0a1a5bdd44e625492408553ad795f792bc5d3f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp310-cp310-win_amd64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b898fdd4ba25e505c83a2e2964e0c67e36516beb40f8df13a9356ddb494b39e
MD5 84e893c45c9463098796c99d834ae604
BLAKE2b-256 1a07fe077266c152af26a62dffb1faf5a807e9e1ddea9b7535962a7d860774d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for readcon-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c1c0b1465d5b951739731568dc885ef3f5bf68147f56020cec1e6ff0ebed94e
MD5 f454059a4aaa22aa385473e6dbcd134b
BLAKE2b-256 c9ead90af73a81ee4a56f01a7e674dcc3d36260e696490cc64dcfa7d5e1d2714

See more details on using hashes here.

Provenance

The following attestation bundles were made for readcon-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python_wheels.yml on lode-org/readcon-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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