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.5.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.5-cp314-cp314-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.14Windows x86-64

dgread-1.1.5-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.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (659.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

dgread-1.1.5-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.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (659.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

dgread-1.1.5-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.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (659.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

dgread-1.1.5-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.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (659.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

dgread-1.1.5-cp310-cp310-win_amd64.whl (93.3 kB view details)

Uploaded CPython 3.10Windows x86-64

dgread-1.1.5-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.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (659.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

dgread-1.1.5-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.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (658.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

dgread-1.1.5-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.5.tar.gz.

File metadata

  • Download URL: dgread-1.1.5.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.5.tar.gz
Algorithm Hash digest
SHA256 e803866a9615a46d492962a96cc5443ad22b6f495f356b3b0fad6a840347bb03
MD5 e0c9a423e0b169ba1d086aabf439418a
BLAKE2b-256 ef84b27aab025d636cd0192f6e17fbbafde16b4ef594dc4016e854051eed59a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5.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.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.5-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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 01b3c7dc547c94610d13994319606ff8f4623fce395e7aa3e0255c2ef675f1ff
MD5 c3cf73031591de284975b6b7dadc869b
BLAKE2b-256 4806291db709fdec364a962027ec79d8c195144796aa6e9687d49c9fc171afff

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-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.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab069ea0e00e0af8b542799b8b30fe4fe00278c16a49b9ef601270577c4a8b29
MD5 ea5beecf8e138a9ca5cb203a9ff1aa0b
BLAKE2b-256 9946f87b8f7a3266f5c418832ad571b9f966ae01592d6c089ea7c660ee39c311

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bdbc635969ae21b86afef1050a85a9651ad8a88de5255fdeb0492e1d7764511a
MD5 33f20339e791f4c3ae82b2ee8f7f12e3
BLAKE2b-256 e96b25988905f636ddc2d1bed2241df2e27e3159f628c5cf6859a6b0a88f95bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 133f5c7367ce27230831619074120afc7cf4c8f51f85228df021c29fe29bb107
MD5 fcc7feec5eda6b0a8187a4efd046e561
BLAKE2b-256 d55227e2bab3259918e764a9951871060ac691750667475d01cf3416ecd91cf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 faadc43ee4a21d1023c2cd3486aeb09175572ae76ef5c6f84ccf135e76c2b9a3
MD5 fb904f9d7ff3710501c8bc8141d12610
BLAKE2b-256 ed169c8984984f6d8caa44a8fd36c6604271f12ba016b5e3c64a452bba26cb65

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.5-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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 86158a37d30cc01e4161736ca6f9a42b14f60f7e31ae51efa395b329c48a8450
MD5 36184eb91e1d5b105ccfa126f50a2f3a
BLAKE2b-256 eb06b17c7fec61213408983c31a9f941066064762321974167197cce97589b14

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-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.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50a79ed300b463f131a144bba584f0c8f7cf58f6cf96fc13a955168f6c094436
MD5 d4b09ebdb2942383f19ce1f4b1becb77
BLAKE2b-256 c0c5effafc1384ba110c7720e398716e818f07b78bf303c3886abb538f8caaf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 242d5bbd71ca751d18849b9116bb8d6577a9fd2512489debcb36c2e7b2c185ec
MD5 66b3464bca11253c4e4886fb47d33aa4
BLAKE2b-256 4121ef68efe5f2ea388643ec288083d146776b47b98726da59ee78c20152d46d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e7e9c7bed7852957c23b51ecf6daa62ced49f118cde3393ae29f1d8106f0d20
MD5 617019add27ebd44e83774a18d467739
BLAKE2b-256 4bac19836b3efbd2ed2bae070980b7560d2fb381d4415968184eff8536671493

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 566f1bc89aac810c163c968b4099f020979a045b34ab972ae0f3bf44b064c75e
MD5 d7cf271b121eedceaacfb4b7d7c2c5a7
BLAKE2b-256 e19251d4f9758c96f44d7f5c3597b050f3c415405a5e1d5e659a9d54b9e0ce1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 74eee0e76a1356a12889fa972974b057b2ab12faeda5c24d182ae846082784a0
MD5 544db64409d41f68fc77ec31f0905fb1
BLAKE2b-256 8f86ae8a30a0ef7de23592c939f91d2f4695c8194282a963abcbe697ba68d347

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-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.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a39edb6572d4463ad2730fb31a36c4605bf0874a9734e00f09729e820febeda7
MD5 878c5a7221655a748f7d0cda90fe397c
BLAKE2b-256 41bc9566629cc0228d1652f25a19f416030b4386521d30ccfcf16f6976cb2c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d01df65eef14187c09aa2e720a45ce10773a02fdc22e03942ddbca02a1df31bf
MD5 a7cf82174d345737503094061158f44c
BLAKE2b-256 a9064b96c6e2f1a41ba81a67a74ffa6ec81e3161af040dc13d50d2783d04be2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e784c96117b12eaf85e8db4efdcd28d8c5dba91b08da7031e4ffb96578745b5
MD5 7c5ba5cbaa4b4c1ca954d2e07c4e706b
BLAKE2b-256 76f5d3078ec7079af986ef6511d9c6b90b615a9b921d2a76a472898755767eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7ec02a7933219aeb42ccaf22c1fcbaec093cff3ef0e7d0ba386aca973b7d5f53
MD5 58073012563dfaa8ec8c0b520429cc96
BLAKE2b-256 cacb78470a3c3e27128ced01f31da2bbc312bafb2d1b6d46f905cf4edfaf4c20

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d95dd56af1fdff10a13433d8911ee00171a657b86d3516f4e97be73267aeb608
MD5 b048231a98d235f6983cea34e3892b9d
BLAKE2b-256 592a036ac441109f2c207364af44c2269493acd182368a3b3ee712eccb43c5b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-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.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a46bcfdd2fd334ca82444cda9512ccd0633caa7c016ec66b11305c6cb69bac05
MD5 309d0e20472f4b46ede77dd83bc74b01
BLAKE2b-256 fded480a5080979d7d21dd06aa1a5adb43340e8a1c3f6af63ebf81d2c463a0e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa108137e566131c559932d5377793fe496e958d5b1c4dec27a429c41c603539
MD5 65ffc4da107dcda1cbb5c65b71abc7cb
BLAKE2b-256 0f91b12df14ea4f38c453c7f834e83ef29a9b2c311057ccbad78140da17a3c58

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9da1626bcbd9a66da63ebe08f05ab4c25e3feca3a1232d781c9bbf994047b4d6
MD5 7c27af61b5df5ecbb1ee06d44530c283
BLAKE2b-256 541e8f14a2704a95b745e9888aaa2edcfed927d39952b990cc479d31546166f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be4e0261201d0d55839518edabe6f2b5e1d48e25f5a13f662b19aa3822553d29
MD5 9b82f0beb7d64123e6bf5854dc50dda4
BLAKE2b-256 f7cc46a3d7154594a8c0d837f9a33ac4c23ace5e24b9f7cf0f9477aa0afde134

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 93.3 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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cc58832300c11df1a89f408e0873f322b51bcc89441b2c9e444c387b4659872a
MD5 dd22c063779f914d77aa4d98530f3cea
BLAKE2b-256 12561f3bc1c40eb8607dee5ede31895ffca7ac7e296505b1d9f4db59f53f1512

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-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.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aba7aecb72272d5ac80858d555bbb2b9a388b591f01dfa2bc305e9347911b886
MD5 8112c997208b6a3d111246395bf6bc9e
BLAKE2b-256 ec71d811d04e8a62f00b26adbe2a298891d4f4b82447f0ae7b7da824bb1f32b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23ff8d92112bb7c77f853702df2cbae542a68741d50aff94e5580a48e44afde8
MD5 091e162baa826edfa55f68c3a356be3b
BLAKE2b-256 6000c109eb8c335ef7ae33aca53d69d25b9ce4f1a59bf2de0c5cf7818936cd65

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7256661ae930c5917c2e127cbd428cf4dd322a6d5fb1ab47d2a6a4fd324f6f2
MD5 f579310bfd663d22f0dd3a10245da5e2
BLAKE2b-256 0acb8d3cf8f028ab3a510e6fe6477b222b41dfd955be1d3a1180686ef039301c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df1ba96e159b0c879a83a4f63e0a9d7088ce363a0f02f7de9b2c41d76412348b
MD5 29f596d6257f322375f8a6730240853b
BLAKE2b-256 4c73ffc0cf630f2420e6bb9d5fcef30df1376b4be95baeb9c359d025b13044cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dgread-1.1.5-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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0810c9405a81f30af79ff9ec14af7202cedf1d1310a206e4e8305765ae7b2b39
MD5 accd91dfe3a944875b7d52765a531186
BLAKE2b-256 b0e43282f477237d09eab5df857f08cdb1f90add5d2a04ec23d0eef558a38bc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-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.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 168ab9da2dce0e344febf096f81adecf409b4ad9de738f9d65ead90b37b89e58
MD5 3e4d14c9d58ff9fb4dea97e8c53bf09c
BLAKE2b-256 46e10c5efaf3951b85b6b0547d0a14ffeac6850db8af52d952894ccf5003d2b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbbce2184b19bd27bd987386c6d6555bd7a8dd7db9b54b763d291654b3361787
MD5 7cdf5b2a686d664503ddb0450a6f2215
BLAKE2b-256 3490ca3db0ee1fcfa7f374ea06333f17e624679552f21ab5ee84fd41be30d7dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4766cfa899da404ac67a245b063bfa83245de93827caebe678dd33b8205f9316
MD5 7f85a612c6278fb5e4a1bbaf4cc933ca
BLAKE2b-256 38f8147f83ad69f9a4587b330b63c9e87fa8899a764ff941e42e37e3037680ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dgread-1.1.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c15ee7e66a0ab9fbdd45f9c33569c01dee5fb28a62120b540286adec16b70a9
MD5 aab0fc32eaafe6e7c85d80d2c581d624
BLAKE2b-256 7f5e39ba8da408bd81898742f2bc483750d772ecbf6e9a797a46a8e2b7b140d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.5-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