Skip to main content

Python reader for dg/dgz dynamic group data files

Project description

dgread - Python

Fast reader for dg/dgz dynamic group data files.

Installation

pip install dgread

For pandas integration:

pip install dgread[pandas]

Usage

Basic

import dgread

# Load file - returns dict of numpy arrays
data = dgread.read('session.dgz')

print(data.keys())
# dict_keys(['stimtype', 'response', 'rt', 'em', 'events', ...])

# Scalar arrays
print(data['rt'][:5])
# [342. 289. 456. 312. 378.]

# Ragged arrays (different length per trial)
for i, em in enumerate(data['em'][:3]):
    print(f"Trial {i}: {len(em)} samples")
# Trial 0: 1847 samples
# Trial 1: 923 samples
# Trial 2: 2104 samples

With Pandas

from dgread_utils import load_session, print_summary

# Quick overview
print_summary('session.dgz')
# session.dgz
#   12 lists, 847 trials
#   Rectangular: False
#   Lists:
#     stimtype: 847 x int32
#     response: 847 x int32
#     rt: 847 x float32
#     em: 847 x object (nested)

# Load as DataFrame (scalar columns only)
df = load_session('session.dgz')
print(df.head())

Utility Functions

from dgread_utils import (
    read,               # Read file → dict
    list_names,         # Get column names
    get_lengths,        # Get length of each column
    is_rectangular,     # Check if all same length
    get_scalar_columns, # Non-nested column names
    get_nested_columns, # Nested column names
    to_dataframe,       # Convert to DataFrame
    load_session,       # Read + to_dataframe
    summary,            # File summary as dict
    print_summary,      # Print formatted summary
)

Building from Source

From the repository root:

cd python
pip install -e .

Requirements:

  • C compiler
  • Python 3.9+
  • NumPy
  • zlib (system library)

Running Tests

cd python
pip install -e .[dev]
DG_TEST_FILE=/path/to/test.dgz pytest

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

dgread-1.1.4.tar.gz (9.7 kB view details)

Uploaded Source

Built Distributions

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

dgread-1.1.4-cp314-cp314-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.14Windows x86-64

dgread-1.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (706.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dgread-1.1.4-cp314-cp314-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dgread-1.1.4-cp314-cp314-macosx_10_15_x86_64.whl (126.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

dgread-1.1.4-cp313-cp313-win_amd64.whl (93.3 kB view details)

Uploaded CPython 3.13Windows x86-64

dgread-1.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (706.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dgread-1.1.4-cp313-cp313-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dgread-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl (126.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

dgread-1.1.4-cp312-cp312-win_amd64.whl (93.3 kB view details)

Uploaded CPython 3.12Windows x86-64

dgread-1.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (706.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dgread-1.1.4-cp312-cp312-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dgread-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl (126.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

dgread-1.1.4-cp311-cp311-win_amd64.whl (93.2 kB view details)

Uploaded CPython 3.11Windows x86-64

dgread-1.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (705.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dgread-1.1.4-cp311-cp311-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dgread-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl (126.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

dgread-1.1.4-cp310-cp310-win_amd64.whl (93.2 kB view details)

Uploaded CPython 3.10Windows x86-64

dgread-1.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (705.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dgread-1.1.4-cp310-cp310-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dgread-1.1.4-cp310-cp310-macosx_10_9_x86_64.whl (126.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

dgread-1.1.4-cp39-cp39-win_amd64.whl (93.5 kB view details)

Uploaded CPython 3.9Windows x86-64

dgread-1.1.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (705.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dgread-1.1.4-cp39-cp39-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

dgread-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl (126.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file dgread-1.1.4.tar.gz.

File metadata

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

File hashes

Hashes for dgread-1.1.4.tar.gz
Algorithm Hash digest
SHA256 2135cc7b42240fd89bfae2f63ae94d5c7dde7b727e4bfbf759068e3eaacd4e64
MD5 de5ccbab01afae3a4e931130a18834f9
BLAKE2b-256 56c2377efa3695ba15c39f27fe02c8662ca4c4806777a6470421a3b9bcd72cdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4.tar.gz:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 95.8 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 dgread-1.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2c4381652125a4617f4f7f24d4048a7c5ff988f5639b6f25f9a8acb8391fb00f
MD5 48d6e0dc0625d886f61d8a5488d0c773
BLAKE2b-256 b72833534fb5fd524aabf2b8ead95589b3b09e3f02c7e406e5f7131fdf6b8ea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp314-cp314-win_amd64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6731cf2143d658e39dbaf374b73dacac9636d4a11f77874f7fa1c1468df0646d
MD5 93dc504ade2368ed78052704f9f01b06
BLAKE2b-256 9dca5dcd67a34bad0a617296487202e4c7f476c683b7d08729ea58f076b24620

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fd891a5afa80e7e0ff510cf62608bcbd8b680dc213ca349cae5b1fb89d49b1d
MD5 63f0cd89962d5ddf9df37190c4f88cbd
BLAKE2b-256 b1406491a6b2f9fb8136131fdecd367125d74321dd38ed5d3c29125207e4b849

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c544bacb58df5e7c82c1d5d3e2a0ca84e2c9d62392869fa0a40504866816f8bf
MD5 00b733241df5e73b23d8be2329608f22
BLAKE2b-256 371c93e21eb8301630463f555ae92eab42839ec0aef13186cc29d1ac79ac715a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 93.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 dgread-1.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 404cd1af43876e67170772ead3c55db4edcea1a4e5824034c27d644f649da6d2
MD5 377a4df99e2344922ec00d98b8ace09f
BLAKE2b-256 90b76e279d6ceded7078cfd04f5fb610bfc329c498264394e2ac90aac5a434b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp313-cp313-win_amd64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb39f440ca001f74d4b47faa58d66b7cc834419f0728f0b82ec8039b10c46804
MD5 2797b54ef411b3e013ace2ebd314201c
BLAKE2b-256 f33a0f3cfec7e15701c0df57519244537617dd71b0b1a93ccccaff4777741304

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b5475ca05fe491596fc1a9d274af6be96a97d56733a4d12b75b796e38fc1389
MD5 dd37693d7a9cf6f04232eef7bd8651d1
BLAKE2b-256 bba9a157f836ba648a6ac153400a93d99d62713efffb8cc553b71c71b0fc4c39

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 595f13a9f7981ab46470b1bf987582a25db66881b51455f0c1353b0c29dc3000
MD5 e407661ae9189592fd5d151e8ea3abe6
BLAKE2b-256 aa559cd08c27560d6ae59f7bf20634561dfc4e48cb491375cda28f3fcff8a315

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 93.3 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 dgread-1.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ff83d63e13de7f83a61f5e2d10c0ed5cfc1d926f270987af1b4343e60eb6f1a3
MD5 06b9b39b4f6cf9cc77d7e4bbde2b29eb
BLAKE2b-256 45370e222941cef975131834147700ebc3c2f5ad0e0416e96c123d1bba120982

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp312-cp312-win_amd64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2c8a9324878d0301ad2c78a841b4ce169ff7889a906975a3316180fb38100cf
MD5 5a92d797f930a7c676534e9bcdebd54b
BLAKE2b-256 ed01da11905418dcab3b895e7062ce8979536335fba9fbbb468ff79e59e5d07f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cbb2471f6f75bd97c915c9f45da4f8c1acd36a8ffcd8e63275685d0b5593c70
MD5 76f93eeb80b472f130a0d844d197d54e
BLAKE2b-256 7081455220b4b1dc949d1ac8dc618839b68cda01d373ab993c99da1fb4ec155d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 15e55918e95ca10a8817b1a615b39e77a3c6b68ea27c07fc288e3e8acac2035d
MD5 1e22734dd58cf6f3d12e58d6c813d081
BLAKE2b-256 e5ace284752be47ca2a31eb2e880b1d08b1d4d3462d1dae5614878a63625eba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 93.2 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 dgread-1.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a06080891c93a190a23bda33075851e194f30334ed33eb06a69db20e23dbcb86
MD5 15f6a5e2a587f0f25b6ff1939b2991e4
BLAKE2b-256 47b0f37d62e6253231967ebfe0291c840d021225c0c6e51d85c2f8d7c837a394

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp311-cp311-win_amd64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b67ff366d622a042188cca274806fb4ec2fde1e6970dd83447c2b4bd23c9c17a
MD5 1630a93cf9c6b6d7ac333cb673b39762
BLAKE2b-256 dde74d03350836cb7a3a43baa2bc203fce4273992412cf8468b375236f224fb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4ee749c42c6edd6648eaa6f11ca762e1b6a5325a06063f8b6dfd435b9b51da3
MD5 757daa11edd120b1a9ffb4c495771558
BLAKE2b-256 0a6f0d8dc2f4bb40a869efbeffaa7540eafe746a39392ca1e378175c090c4673

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6211fc647517bb244ddf0d948d6720c29ad541fc03388a87d18944dc707f5468
MD5 004a4ba365212a73abf3b046667e535d
BLAKE2b-256 f3565a433f20e514f60e2ecd79cef81d440230088810eb40fa54e5e097a170f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 93.2 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 dgread-1.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3a98c9d3d0ef5315c4d702eda070a8c41f84e824101476dff3851adfb263e392
MD5 1a040e663d363abe715205574d8de95b
BLAKE2b-256 ce6d54b036e5f100faa938a609fc34727cac25742e302ba3748fa040f250bad4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp310-cp310-win_amd64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01d039214060d9fb6c1047eb6b521ec73a71e18db18e573cf156bfd4d8a42caa
MD5 aa70b5b9be5881c4e821b496665565a1
BLAKE2b-256 d310cc6fabdb9f0c0f219531ef0cbe16c5e4a3f27075cbf1af9416d93aa25abf

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a2a6e4fbf0ff1777e705d4a4f9546262bbdabb0a960b76e953b6cd3cfb0c1ec
MD5 d1f25960e47f12f85cd430873307adf7
BLAKE2b-256 027158b90e034397de9f6f1372a10cab1cddc2d33075f5ea2e28b203597a1ec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5352ca6574accce1720db5cbbd8fb8c39140c7cf0cb9db517cb3fa85adea682a
MD5 6b9b572d0ab02ceb7f966668b3d68b01
BLAKE2b-256 79726e7e57209ff6139350cfc1e6d8350abbee876928476e8fd9ba98b52051bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 93.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dgread-1.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3f2ee7207c0e66d2b15de00940f3f8aa2c25db3616111691f9caf06c2af7522e
MD5 0e5b2c418bdc499134c0b12f91532654
BLAKE2b-256 d5177e5302ccba0a141d7b0a627389fe957480177493ac93bab9a665ea7f25f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp39-cp39-win_amd64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0105007cb7735f930ad8a85f9176db2c5afd71c0b0f1f4e3e025272a74b106b2
MD5 d4774364e377d0a604142e0a6f4e7f21
BLAKE2b-256 1875658a7e58f8604b13b6fb3d255dce60e240deb75ac5223de7292f9cf919bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee3beefee31929d57e7b340ebb8a2a84a09aa3acb2ce2c3aa425c791c93fbece
MD5 d333ef29aa994f7ba2c4b560193d6f98
BLAKE2b-256 7376420b540a142f4bb599d0e925585e06312583960e9dd99851a79b25c7ac78

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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

File details

Details for the file dgread-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9d4d281a8a50dedc987efd879f14fa87595945d24566bc4f5e88fab098897d5
MD5 fbde3a1dc423bf87a342805dd734756b
BLAKE2b-256 955206c3c24e597a207430f2d9392724aed9ee67da7b92f1b11410e8a54e1ad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: python_wheels.yml on SheinbergLab/dgread

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