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

Uploaded CPython 3.14Windows x86-64

dgread-1.1.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

dgread-1.1.3-cp313-cp313-win_amd64.whl (27.5 kB view details)

Uploaded CPython 3.13Windows x86-64

dgread-1.1.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

dgread-1.1.3-cp312-cp312-win_amd64.whl (27.5 kB view details)

Uploaded CPython 3.12Windows x86-64

dgread-1.1.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

dgread-1.1.3-cp311-cp311-win_amd64.whl (27.5 kB view details)

Uploaded CPython 3.11Windows x86-64

dgread-1.1.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

dgread-1.1.3-cp310-cp310-win_amd64.whl (27.5 kB view details)

Uploaded CPython 3.10Windows x86-64

dgread-1.1.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

dgread-1.1.3-cp39-cp39-win_amd64.whl (27.5 kB view details)

Uploaded CPython 3.9Windows x86-64

dgread-1.1.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

dgread-1.1.3-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.3.tar.gz.

File metadata

  • Download URL: dgread-1.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 f17ceb18f1d5838eb5bf8664837ed76fcf91671c272ed2291066ed6faa179dd1
MD5 812c8a08da4d7c6c4e786a7d8d4818c8
BLAKE2b-256 e17a043918afc71a4c99d97d7b78545605db71184c748774800d663dca8e1b8c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dgread-1.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 28.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 dgread-1.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7431d907fa8152faa3902f2d7bd749adf8ff1cab586ffe1c20ed3392945fa158
MD5 109c2c9138a3e81891697d4c5709538a
BLAKE2b-256 54efc167e5bae6191cd19145c2b6ac41cec8821e0d5641f57afe2c182e590eed

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51aea52408d57167d0b4410c107ca80fcc1c89fd2f70286921a37c3b6990ac88
MD5 9d4d259d6c260e21473bf2d58973f109
BLAKE2b-256 d88289e1a932dca3e7d1fea226633510bba3c220f7a3e09db52678f2cbdf3ab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb5f0ec6a4db0a9ff9b185147f793b8e2080c3daf6880460dc68617690006275
MD5 671bb367eff553e6064a5eaaeb870935
BLAKE2b-256 4b402d2f3f1f08dad280e9cd7551d9082a2eee9f4e31e446a28691fc8d1dac89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dgread-1.1.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8c5dbc32dd10539951f565271285b30002d73dd189672f165099f1a1ca4ac88d
MD5 62c041c28b587a05d284f26961ec621f
BLAKE2b-256 554ff9957608337123564733c47a8ed50110c154e0794b471db42f11d8efb394

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dgread-1.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 27.5 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6e68519a3015f7b12c8c24528cc7ed8dba2cbc8619f552e27ba5e1dcc9a98e91
MD5 86c31f8721d3db55c9ae7d4a7324d031
BLAKE2b-256 f738ea032595d178acf283db62af4193956f2c735b8af9d016b6db9458cc34b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0b245e0807b585d1a12256736031258141e87e0b94038a71dc8fe2333044362
MD5 274e2fbe045660bf81b146dddb5a3a59
BLAKE2b-256 7e2119aef8bb8c6d97a83e742c7589433d2b4fded3848222f06437a7d1820572

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5790c537d71a1eb8ced29a4328d2bd1d0ab4fcc997e1b1aed0f8d7a7d39c4cff
MD5 761fe8436bee0785ef9f091f6da9a29a
BLAKE2b-256 f7dbce8c72407d4367c619c1da1963301b78b3b1d9cd77a6b89072424f606f56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dgread-1.1.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 301cfbe295c2d16197dfd7f0ed6818f14daec3cadc904fbb9cc86c769cc46670
MD5 e9bf4bb6d4987233a6481020c0074aea
BLAKE2b-256 d8cf2cda86196c8f9fd5a714a9849ec9debb1b1797b6aeb21c4a3353aee36fbf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dgread-1.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 27.5 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 588726c49f006d08ad7454dd82fe9d462b3abf8fdff9239096e51971cae44671
MD5 b056f1443ace671cb45cdca987edf157
BLAKE2b-256 a08c9045d6fd7e2d37159df66f9f91a3a30e616b80265b94966a13170ba158b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c5d4985988255016ed15b1428ab88322e653157a654472b4f0e97c0786ad1ea
MD5 5b1e06ec4a8d30b94e7661edf06ab122
BLAKE2b-256 48709bcf40b7d3dcce7802a983a445d1bdcbbc52a7fd310e8223af3a17c76615

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ae562ac83be6650808369552474d677edf4cf2e4766c0afb871281d570a859c
MD5 8da17b1f05c12f81b56dbb8373737a63
BLAKE2b-256 7b853ab6bd39be508c70828da13b05f00bed3dd7c7be99e6618cf35102e50c83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dgread-1.1.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1752be789663aecb9a1d9b95e577eb9a43e5fc0c4d7588a2a238b92c3c5366bc
MD5 d70b0ac28c7b392591388e322860746c
BLAKE2b-256 4543a3259174a63528342e0c2620b6469be238c87bd041a36e382cc88d3624dd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dgread-1.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 27.5 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 99e3725976df2ec7a280ebafeaf38f92aa17f1b02da38146d9e21a9e831c5d17
MD5 877672c628fef3e331849e55e82879a4
BLAKE2b-256 bf71f963e6a655c75f921b90c7c498548c58191064d799adda15119d75fb4516

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b8efa1bf9818a36ee7414b7c623ce43511c275a18069107c087d9d65994d461
MD5 8f94deab283dab767bfe8f8fed26d414
BLAKE2b-256 bfc419e45b21e5c519fa9fe4a3200709de7d134c1ce2127e274c06c9fc77525f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6f8beb35d1bd5212a9da6633dffb21df2798e10bef907fb43951df0297022e6
MD5 e60214ce42b5266192dcaae1238679ca
BLAKE2b-256 95cc84778672264ac8e89fd8630b105dc8c41eaccf2c704fe6eb27934d94479d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dgread-1.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2497c8c01ada262f4e37e32b7b3750ad1696126b12e6539bdccde56bc589945c
MD5 d7d5409f1a01d4ad7e7a7d675db6c484
BLAKE2b-256 7f8e2f04755bcc3c1c1ba208728d2f3b24e12f41dc036b9c1d47d0ba1624033d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dgread-1.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 27.5 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0bd6e4e098d178998b62a148fceadf4a518b3161f123155fcf62538b6b0b99bd
MD5 daf0932282f0ac5131ada97e2d17ac12
BLAKE2b-256 4bc97ba4251363e2cf509b53fc191b3ca2bc4f88b94dcd26ac3b2dfc8d0372d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f911bea85356e31d82ec95532867e7a4e24aa8eafbebcd59d914d246c51c2994
MD5 abefd4571e44dc23a6f15a836808db4e
BLAKE2b-256 a14ff596af98acb84192f6b07d12aad408e4943445fc9f1309e589494e122fd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1ae996c7d8ed5bee6ba50afc24cf6ad7ecc85ffd4133c6bf1511b02573709be
MD5 db4f3e0dc258ec4cd0cc2eeb70503a1b
BLAKE2b-256 8719833d9b44f534d7ad8510ebf61ce1698200d891e321abd9f0fe599c5de9c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dgread-1.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bfd86e5251f18719896ff8426ae76ac7b93866fb2eae250972a92175dd1a24a3
MD5 2a254d3fe69f0ec48ad65e4e9af7e5e6
BLAKE2b-256 012b20c247f695628f7e51ddb938e98988b479ecad5d494279aab2a37edfdf1e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dgread-1.1.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 27.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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 35078a8dc342ee6af0735afffb97e8130ae069bd0d7b4587ce615f8e0119487c
MD5 12a249b85c96de51e7b5710a71630108
BLAKE2b-256 5c31d88ae1a9db6bfd48dcc32a5b4e87c27cc2c27f7061587d8c0ff347bd7e1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-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.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d240ad4be99d3c2f1f6463d05b1b12e8df5af8e57863c935661bf5548628221
MD5 c9cbdbf35f874879cd97a3ad9e11f62a
BLAKE2b-256 52b6dc241a2ed813180aeab0b587c925854a97b700fbd63954bf1d9dd04384f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dgread-1.1.3-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.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dgread-1.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e10c07127478c62cdb9855889dc86aa978ca8f24ce022583120c8eb0c2f9765
MD5 36110d771fb42d3a6105d09e5dbdd259
BLAKE2b-256 1ef1383d46beac498ed1ffbea0b7f0703aa8a5df26e55c8dd363267ddbb2e099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dgread-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5af77527e7dfd3262c51c82bc9051b8b73dab7f1c848bc1e6189a99979dcbbc0
MD5 cba173924efae15d4d74fd03fcddf3f5
BLAKE2b-256 36fb0ccc1cadc1a8d451ac1861dd70762e35da9021a0b0d06219da3c00f2101e

See more details on using hashes here.

Provenance

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