Skip to main content

Acoustical simulation and computer-aided design of didgeridoos

Project description

DidgeLab

1. Introduction

DidgeLab is a free open-source toolkit to compute didgeridoo geometries. Traditionally, building a didgeridoo is a random process: builders know how geometry influences the sound, but the exact sonic properties can only be determined after the instrument is built. DidgeLab helps by first defining the desired sound and then computing a geometry that (in simulation) achieves it.

It provides:

  1. Acoustical simulation — Compute resonant frequencies and impedance spectra for a given didgeridoo geometry. This is similar in spirit to Didgmo and DidjiImp.
  2. Computational evolution — Search for bore shapes that meet target sonic properties (e.g. drone in D, toots in F, G, B). This is inspired by the work of Frank Geipel (Computer-Aided Didgeridoo Sound Design, CADSD).

So the first part takes a geometry and predicts its sound; the second takes a target sound and searches for a matching geometry. To the best of our knowledge, DidgeLab is the first open toolkit that implements this inverse design.

The software is a Python toolkit rather than a point-and-click app: you use it from scripts or Jupyter notebooks. There is no graphical user interface. You need Python skills to use it.

2. Related works

  • Frank GeipelComputer-Aided Didgeridoo Sound Design (CADSD). DidgeLab’s approach is based on our reading of his ideas and descriptions.
  • Dan Mapes-Riordan (1991)Horn Modeling with Conical and Cylindrical Transmission Line Elements. Foundation for the transmission-line acoustical model.
  • Andrea Ferroni (YouTube) — Didgeridoo acoustics and playing; e.g. DIDGMO explanation, backpressure, cylindrical vs conical bore.
  • Didgmo / Didjimp — Existing tools for didgeridoo sound design; used here as a reference (DidgeLab’s impedance spectra match when given the same geometry).

3. Getting Started

3.1 Installation

Prerequisites

  • Python 3.8+ (Conda or venv recommended)
  • Optional: Cython and a C compiler for the fast simulation backend

Use Pip Package

pip install didgelab

3.2 Documentation

Here is an overview of the available documentation. The best place to get started are the tutorials:

4. Developer Instructions

4.1 Compile from source

If you use the pip package, you do not need to compile it from source.

  1. Clone the repository and go to the project directory:

    git clone https://github.com/jnehring/didge-lab/
    cd didge-lab
    

    (Or download and unzip the source.)

  2. Create and activate a Conda environment:

    conda create -n didgelab python=3.8
    conda activate didgelab
    
  3. Install the package (from the repository root; this builds the Cython extension and installs didgelab):

    pip install -e .
    

    Dependencies (NumPy, Cython, etc.) are installed as build/install dependencies. For a non-editable install: pip install .

  4. Run a quick check (e.g. a script or notebook that runs a simulation and prints a small impedance table). If you see a frequency/impedance/note table, the installation is working.

4.2 Unit Tests (pytest)

From the repository root:

pytest

Tests live in src/tests/. To run a subset:

pytest src/tests/test_geo.py
pytest src/tests/test_KigaliShape.py -v

Some tests mock the Cython simulation backend so they run without building it; others require the full install (including the compiled _cadsd extension). Use the same Python environment in which you installed didgelab.

4.3 Building the Python package

  • Editable install (recommended for development)
    From the repo root:

    pip install -e .
    

    Changes in src/didgelab are picked up without reinstalling.

  • Regular install

    pip install .
    
  • Rebuild after changing Cython code
    Reinstall so the extension is recompiled:

    pip install -e . --no-build-isolation
    

    Or pip install -e . --force-reinstall if needed. A C compiler and Cython are required; see Cython docs for your OS.

  • Source distribution and wheel

    pip install build
    python -m build
    

    Outputs go to dist/ (e.g. pip install dist/didgelab-*.whl).

  • Tutorials in examples/tutorials/ walk through acoustical simulation, shape parameters, and evolution.

  • The didgelab package is documented with module and function/class docstrings; use help() in Python or read the source.

4.4 Build Documentation

API documentation (pdoc)
Use pdoc to generate API docs from docstrings. From the repo root, ensure the local package is used (e.g. after pip install -e . or with PYTHONPATH=src).

  • Development — live preview
    Serve docs locally and reload as you edit:

    pip install pdoc
    PYTHONPATH=src pdoc src/didgelab --http 8080
    

    Open http://localhost:8080. Stop with Ctrl+C.

  • Render static HTML
    Write the API docs into a folder (e.g. for deployment or offline use):

    pip install pdoc
    PYTHONPATH=src pdoc src/didgelab -o docs/html
    

    Then open docs/html/index.html in a browser or serve the docs/html directory with any static file server.

5. Source code overview

  • didgelab — Main package:
    • acoustical_simulation — Entry point for running simulation (Python or Cython backend).
    • geo — Geometry class (segment list, load/save, scale, cones, volume, etc.).
    • conv — Note/frequency conversion (note names, cents, wavelengths).
    • fft — FFT and spectrum helpers (WAV, harmonics, fundamental, peaks).
    • visualize — Plot bore profiles (2D cross-section).
    • app — Global app, config, logging, publish/subscribe, services.
    • sim — Simulation: sim_interface, tlm_python, tlm_cython (TLM = transmission line model).
    • evo — Evolution: shapes, loss functions, mutators, evolution loop, checkpoint/loss logging.
  • Build — From repo root: pip install -e . (see §4.1 and §4.3).

6. Licensing

DidgeLab is published under Creative Commons BY-NC-SA 4.0:

  • Share — copy and redistribute in any medium or format
  • Adapt — remix, transform, and build upon the material

Under these terms:

  • Attribution — Give appropriate credit, link to the license, and indicate if changes were made.
  • NonCommercial — You may not use the material for commercial purposes.
  • ShareAlike — If you remix or build upon the material, you must distribute your contributions under the same license.
  • No additional restrictions — Do not apply legal or technical measures that restrict others from doing what the license permits.

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

didgelab-3.1.0.dev0.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

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

didgelab-3.1.0.dev0-cp314-cp314t-win_amd64.whl (247.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

didgelab-3.1.0.dev0-cp314-cp314t-win32.whl (242.2 kB view details)

Uploaded CPython 3.14tWindows x86

didgelab-3.1.0.dev0-cp314-cp314t-musllinux_1_2_x86_64.whl (520.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

didgelab-3.1.0.dev0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (518.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

didgelab-3.1.0.dev0-cp314-cp314t-macosx_11_0_arm64.whl (249.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

didgelab-3.1.0.dev0-cp314-cp314t-macosx_10_15_x86_64.whl (249.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

didgelab-3.1.0.dev0-cp314-cp314-win_amd64.whl (240.8 kB view details)

Uploaded CPython 3.14Windows x86-64

didgelab-3.1.0.dev0-cp314-cp314-win32.whl (236.6 kB view details)

Uploaded CPython 3.14Windows x86

didgelab-3.1.0.dev0-cp314-cp314-musllinux_1_2_x86_64.whl (510.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

didgelab-3.1.0.dev0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (509.0 kB view details)

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

didgelab-3.1.0.dev0-cp314-cp314-macosx_11_0_arm64.whl (242.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

didgelab-3.1.0.dev0-cp314-cp314-macosx_10_15_x86_64.whl (243.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

didgelab-3.1.0.dev0-cp313-cp313-win_amd64.whl (239.8 kB view details)

Uploaded CPython 3.13Windows x86-64

didgelab-3.1.0.dev0-cp313-cp313-win32.whl (235.5 kB view details)

Uploaded CPython 3.13Windows x86

didgelab-3.1.0.dev0-cp313-cp313-musllinux_1_2_x86_64.whl (514.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

didgelab-3.1.0.dev0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (513.0 kB view details)

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

didgelab-3.1.0.dev0-cp313-cp313-macosx_11_0_arm64.whl (242.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

didgelab-3.1.0.dev0-cp313-cp313-macosx_10_13_x86_64.whl (243.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

didgelab-3.1.0.dev0-cp312-cp312-win_amd64.whl (239.9 kB view details)

Uploaded CPython 3.12Windows x86-64

didgelab-3.1.0.dev0-cp312-cp312-win32.whl (235.7 kB view details)

Uploaded CPython 3.12Windows x86

didgelab-3.1.0.dev0-cp312-cp312-musllinux_1_2_x86_64.whl (519.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

didgelab-3.1.0.dev0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (517.9 kB view details)

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

didgelab-3.1.0.dev0-cp312-cp312-macosx_11_0_arm64.whl (242.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

didgelab-3.1.0.dev0-cp312-cp312-macosx_10_13_x86_64.whl (243.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

didgelab-3.1.0.dev0-cp311-cp311-win_amd64.whl (241.2 kB view details)

Uploaded CPython 3.11Windows x86-64

didgelab-3.1.0.dev0-cp311-cp311-win32.whl (236.6 kB view details)

Uploaded CPython 3.11Windows x86

didgelab-3.1.0.dev0-cp311-cp311-musllinux_1_2_x86_64.whl (511.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

didgelab-3.1.0.dev0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (508.7 kB view details)

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

didgelab-3.1.0.dev0-cp311-cp311-macosx_11_0_arm64.whl (242.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

didgelab-3.1.0.dev0-cp311-cp311-macosx_10_9_x86_64.whl (243.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

didgelab-3.1.0.dev0-cp310-cp310-win_amd64.whl (241.3 kB view details)

Uploaded CPython 3.10Windows x86-64

didgelab-3.1.0.dev0-cp310-cp310-win32.whl (237.1 kB view details)

Uploaded CPython 3.10Windows x86

didgelab-3.1.0.dev0-cp310-cp310-musllinux_1_2_x86_64.whl (495.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

didgelab-3.1.0.dev0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (492.3 kB view details)

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

didgelab-3.1.0.dev0-cp310-cp310-macosx_11_0_arm64.whl (242.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

didgelab-3.1.0.dev0-cp310-cp310-macosx_10_9_x86_64.whl (243.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

didgelab-3.1.0.dev0-cp39-cp39-win_amd64.whl (241.4 kB view details)

Uploaded CPython 3.9Windows x86-64

didgelab-3.1.0.dev0-cp39-cp39-win32.whl (237.1 kB view details)

Uploaded CPython 3.9Windows x86

didgelab-3.1.0.dev0-cp39-cp39-musllinux_1_2_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

didgelab-3.1.0.dev0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (490.3 kB view details)

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

didgelab-3.1.0.dev0-cp39-cp39-macosx_11_0_arm64.whl (243.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

didgelab-3.1.0.dev0-cp39-cp39-macosx_10_9_x86_64.whl (244.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file didgelab-3.1.0.dev0.tar.gz.

File metadata

  • Download URL: didgelab-3.1.0.dev0.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.1.0.dev0.tar.gz
Algorithm Hash digest
SHA256 0f5b7bcca5fd4013f990be603af71688d070f90810df4b73999d3e29c97ad088
MD5 5915e76dc7de0788af93bf82c86d0a79
BLAKE2b-256 e90d36255cd45288e89202196455f097aa731c663011beeb0a17c34ba2bde01e

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0.tar.gz:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4f7b454a666c0089b18349cc14c4d5124ca825b2aea448dc198914700e309afa
MD5 8ee82ebdddc32b3ce81526522a7f7721
BLAKE2b-256 06e3aabc2ed7cf45b917d926eecdabd58a20e23f21b4fbd2e98a938f42db30c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314t-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: didgelab-3.1.0.dev0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 242.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a28071582bb8787f8692d7473993233878d45e993c4c93793651b1965d81fc28
MD5 e5061361079f88058db09ed0122b5a08
BLAKE2b-256 b077266de32ee60337958009e1df1d1400ee38a13694c295ba7c4657c594ca0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314t-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9edd524d01a12fb6de84c43cc8122cc069cea02c94f32ce8a332eb49e8e7629
MD5 c4e111b838245b71555d370b12bff0c8
BLAKE2b-256 d07f834aa6f9f99e314d6defcaa27e2765baa1c09ff97570c23093fbf01c8b4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0df1ca7aede6f1d518f3354087cf521cabd2035e2e5c760e59e56a55d19edc26
MD5 75ca3a6bd4ecdab550d6638aa8041dfb
BLAKE2b-256 2b79c46771d81eeba378079cb19f95c5c52f1f0d2fed951cac6d048d5ef875c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68f7549da50d62327adef0af6a8da2f1fc2ad332a73e40856d562c0f9fd808f9
MD5 ee68c51c5e20595bf365a9ac65b8c1d5
BLAKE2b-256 9ccbc02a7193ad9bbc19683e4c090e925bb7adf7e5ae9c1400d871b0c04ead3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 59396d2b91cb3f22869cc5adfe034cda7182047156f91bc4dbc5aa67804add0a
MD5 cd2da167be6bd11b7b14b4008308a65b
BLAKE2b-256 3e3fa73605c0171a09daae57da0ee834b42859f56b96ed344d9e91dfc703a6a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 588c107f3df934243c60a54b92b98d24b4a1c5d15c414cd01e2d596edd8eaffc
MD5 938d65151f241d4a491131bc4edd2901
BLAKE2b-256 04840db02dc209aafe1d2805c465f1949edba82fee594a2a8b268c3b2f533f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314-win32.whl.

File metadata

  • Download URL: didgelab-3.1.0.dev0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 236.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 968af7e88b9e3b4c569ffd198ed5f671842624d6aadf8217ae19c3cae0f144e0
MD5 33b9695854a958633258aa07ef1d3e4c
BLAKE2b-256 491de49819c4d17a7ac10bafafb461dc618b4240c6ebc5b0b1023ad16f6f6042

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 852016a718d6d6d35780bf2a3388ab0a90af3e721c2fd22ffa4ac57205a6f3a3
MD5 80c045a48608eb7c3ccdf4dbace72f3c
BLAKE2b-256 4b3890b013c1db72d88e3602490479237a3e61f054c19b579de5252ceae42e5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f1a0099e5e2d7374cacd0818eb655c1e05f1d6178cce4cd4284213b8e3ff2e79
MD5 c0acb45c76d9d416ba53f0f4ec84ede9
BLAKE2b-256 6e0f90a2575bd5ca903efc2e6e0d7f7c6cfa6f5369c6c39acaffad73b7812324

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 102bbf5ddb84d0ed69bd750794815e353b6493f3fd679ca8240ce2fec00e4f85
MD5 663fd4f4c13d4a61a089a881182903f9
BLAKE2b-256 3372b103ad0699acf013734f6bca9112cc663308fc1be117bd4424eb8366b1d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c5835a9d365a2960e40197960e137d0b9b54e9480742cef8549d96934fd7a2e7
MD5 14026f4bb979353fcbea61d0fbcb577c
BLAKE2b-256 390c4d9d7a7fcfefba8e41fcb6caec6e4cba670422a4ec27cd69c81bc185e243

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 781710fb1d9eee7874d7aa3ddfc7ebabb8373de74acee3d3fc39a4df27a14741
MD5 d0a76da45bb3a86510ce33ede5c2b1a0
BLAKE2b-256 03986a2dff1a44f0f1674be472f7bb0e8d30e42d55b7fb8e6e2c7a8d5ec9d727

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp313-cp313-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp313-cp313-win32.whl.

File metadata

  • Download URL: didgelab-3.1.0.dev0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 235.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.1.0.dev0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ef82133d10675bec08d077683fbc11eddc47fa1332e357549e329c494e8fbc7d
MD5 0fd197c90b78f97c96cd5c639c40af71
BLAKE2b-256 9e63458eb5388a95fe526dc3624a1b54b2ccc1da457184a45c7c011ecb40a6fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp313-cp313-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c949e83279ca394cf84dddef1f6e14bfe636b9bb80f2dac595483ee29f20655
MD5 a97c71f7593efcb5cac6bc41f7aecb40
BLAKE2b-256 6aab76c2c45ab8920bbbd33cd218657c128f9b5ae15155b468ff8ab2d87a0ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f94a55e0831763cca3a475039a476119a49d235ec27f3d9da63382b91e5fd0a1
MD5 395a516a9ef948094165207dd6162e24
BLAKE2b-256 94418b60f65dd1fe8be298cc1f82cf0e3c239c1ab5b595d3f69456d74ef8290f

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31cd6c51bdfbbc4445011bf290210286e3bd40233f4228b45b4322c6ad1ba9ab
MD5 0bd64b130e5751e78514108a38184edf
BLAKE2b-256 1815708757a2663bd29e96c6cc15bc13c480ddaa2647aedf2cd0c3384eae80b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e0b555987107b901fc3d4e2d65ba560e94c599124aa16989206278e53efb0526
MD5 d2fcb1b10a8b798f189f29f279ce29d6
BLAKE2b-256 a6eebb68a6ae13ecab79a3f0df6857b530d77ade001d062ade4dbe22fb6f2ae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bcbad0170736a8e8bf58cee84aa94df4bc1fea20eac17f2704b3b1320df86bc9
MD5 26e5ced71b08111c0d122b4ea1fd8b70
BLAKE2b-256 c28005c7444b8868aef4b31b6788dd1e24dcdb22ef645e642f2684b53f3f128f

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp312-cp312-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp312-cp312-win32.whl.

File metadata

  • Download URL: didgelab-3.1.0.dev0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 235.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.1.0.dev0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ab5404bd93796d0db0f94609b742be97a15c0fb112bdbe134ba3a42c7515f299
MD5 2091f45d0cf18ebcafcceb565dc2d33a
BLAKE2b-256 53b131cd110a4327995d8df9844d27ba213bc555b3a01610c196611bfcbba094

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp312-cp312-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 051ad0b0a29efb8d8bcb6f6f59a69385ac0e6a671727f2ae2cb8627cfff2515f
MD5 9b1e7616d845ee2aa46ea98d023e42f6
BLAKE2b-256 751ebef62fd61bf69b1564388dcda18f5a85d95a138648d2c7d360dbf9cf03da

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7bfbbdf401a0bded1223d467a3d65ebe1333664fc803ef6f338cc3e23ac4de07
MD5 3a6ab06c3d1ba6e38836ea99d3c0027c
BLAKE2b-256 7ae0afdefd4ac1fbc539f12f5886812149456b9bcad71f333d9d7750d9c2e565

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f05c9714d41c92f148505004eda839d35bd9d89c27bc64927cf1a2b8b4f3c59d
MD5 e89acd6494479c03845e6e2542d5462e
BLAKE2b-256 27c42af12d2f2ec05c50e68b6fc28273be5b569711082ad71b82de4378a79768

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3e84582cddb63815ca3852b5febd18777c2aff81b8ae514aab7f459e0caaaa8a
MD5 119d3c91fb70acbb74ab7fedeac1c117
BLAKE2b-256 887d5b35d3bf84b4ec8674152ae7975f4d004ea85d5d8331e5938b6fd3453aa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 567d2194b27f868dc07bef4496db8883edf102206e9ec5c61a3312c1060f5bf3
MD5 e946371388ec8fefd0b16cfdb8b4919c
BLAKE2b-256 cb2f436daca583ea242d53a12fc32ef559887a1052ce39875c715ca5a0c0e846

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp311-cp311-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp311-cp311-win32.whl.

File metadata

  • Download URL: didgelab-3.1.0.dev0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 236.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.1.0.dev0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1bcb45956469cd8d074569fb120a9544cbc80000804686d31e322b3da59dbdcf
MD5 26c776bac6928f4cc1dd4c1306dd191f
BLAKE2b-256 085ce01badfd878ed606e38e1e53f2e46e407a7fd57d5289a330514cc7d015c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp311-cp311-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebcc21117c4004ff60c8cd896f526461f52dc11fe562e44bded89fb69c1c5fd3
MD5 7cfcdfd3c4dc414b2d1483e3e1f0103a
BLAKE2b-256 f68285eaf8eb82fc542a35fd447a3ba78e5841348c425ba3dd7d7bbeae285481

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a9362d37e6d04f222018484527970f99d8c35ba9fa0a99a5e76a5c6e478698a6
MD5 18ceaf6d99270da199539ae1b0df92f7
BLAKE2b-256 1b0f7d24840f91a00b40e9479a0b44cc910f3b5584c1c55e0a9b4dace3622015

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74706579c8079930eb8c0ecafa94c2650d515ec6d79d1c4dbd0c0eea6217c744
MD5 3463e1fafa489a6bdd8cae3111b9d6a1
BLAKE2b-256 ffd9a90be26db757944ac163b60ef6a2dc70c5c851045c76910d0e8ca7a643f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e04def10fefe364bb8f9e385de8d9ffaa8f2abcbeef330cfeb11e29c90e3bc15
MD5 203ec927239b76ceb4ef840560728c02
BLAKE2b-256 feb4c9a2f8d0e4ec906bf59d4831d1cd55426531d63fce9d4492b32839db1dde

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aacfbf762c5742081414a79a1e9ceffde024f643bd46b10df52424ee7ee18b83
MD5 5af767b6d0a58203838a0e0ff5659a13
BLAKE2b-256 5bfbe8a7f3749758531a2f37148d77273397277dfb95ae0e508c1120ba706fd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp310-cp310-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp310-cp310-win32.whl.

File metadata

  • Download URL: didgelab-3.1.0.dev0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 237.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.1.0.dev0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 71657be498083f2a8e641e73d9287b347b213f0ed51584cd9e73b8366caa2188
MD5 0c799c0c0332d44ae78797c3bb814a47
BLAKE2b-256 a471b2b1be107388d73e2995d5501ce5206a6db2cd88407d672b1f61307f7b1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp310-cp310-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 893f447a1ff000a7df1779f5c62e02e300b991451a563c6ef13269592add9c5d
MD5 7cd6eaccadbd4ff3c79543374ebc34c4
BLAKE2b-256 ff63d3f2f0fd5e5c3177f53a3775d4052d8d0e0788a4172023b09b7d407d142a

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c3a65721db9c31a5c26916fb1dec8efab9d418b9cbf56c9dc9d8d053c6d5b926
MD5 50aa47a56f60e06fa421d07d807b49e0
BLAKE2b-256 83580c774a2a8c22091f974ec24e144a3f3420173ba34b201be96aa791aef891

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af8dea73fbca8102e7dacf246d450b7b4f8c9edd28018279a7518917afa266ac
MD5 21dbb9c357b50809b3e7cdd09efc5a13
BLAKE2b-256 c6bf14974236d6d3be44b4864db1ac72329aeb995fa377c2fac8d4bd650c3678

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 634a34ae66421b397c2c01cb72ccef50ece253cbf4a4e5cd52460db92ca6c243
MD5 7cabc1f0e24284d1e2e4783636d01ee1
BLAKE2b-256 6d88d83341314a334f8468854566d851cb5bf64cf8a2ac0a400dcb451e88d447

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 586dc0227b5d65f64a07ab46808435bc6008331970cefea85787a3e82d10b554
MD5 4c56a4ee1ccf0032f66fafd28872e207
BLAKE2b-256 03666473c8ad70002bb5ffee450e5b967c34f87e00306d88e3ff3ed53205b4d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp39-cp39-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp39-cp39-win32.whl.

File metadata

  • Download URL: didgelab-3.1.0.dev0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 237.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.1.0.dev0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bb569a5482243e22bc44edc1e6f87e96243c4fb7b2c1b497d17b8bc2b14a7394
MD5 c20546b19cf4076b0cf2c2a82c4c1f20
BLAKE2b-256 0e5f2c7ac0a04586bd6cfd608ba70e2fd5a485e5b5995988ea98a28e9fb61613

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp39-cp39-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9f77a3ab1e0d6efa237d50396497a75f44a5a88ed8d5475a70081b6c5efd46e
MD5 b30d26facb95c5fcdb8f21bba10d664e
BLAKE2b-256 bd92cb2a1f506b4a31773c0b9e747e4da11f8bc835e494838e8e6e88caa3f9da

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 647601ddb36387ea408fb63a174ca5b4b0d0b3d0e66660fa54ff595a30df9a5a
MD5 01c3943b0bbff9f1861c31bbb6358d22
BLAKE2b-256 4c5d818ffd57261c4c9f5a3c9ab48b6e1cc719ee6b596c84676d49532625370b

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2515acc84e5b7eb6aa1fd1148838cbc95302758236db8330da21c76f28abf29b
MD5 f772b6743785df5ff0a9ee5832ca1da4
BLAKE2b-256 4e1268230e188f61230afa15112c459ccf896977b94794164188edf2b70c168c

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.1.0.dev0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.1.0.dev0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c040de4a4a89138b37c49d3d88b9aa9b90cdfbf3cfc80c4de426000da91c4c0
MD5 a5b1b8ebcc83db89af9075d6c26eb862
BLAKE2b-256 b9b17e14f1ca269fd07e79e3de1657298901ce2aa5761e3908ebb9d01198c283

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.1.0.dev0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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