Skip to main content

A library adding doubly linked lists to python.

Project description

py-doubly-linked-list

Description

This library provides an implementation of a doubly linked list for python written with the c api. It is meant to be as close as possible to a regular list in its interface, meaning you can interact with it in almost all of the same ways you interact with a regular python list.

Methods

  • append
    Append object to the end of the list. Set forward to false to append to the start.
doubly_linked_list.append(object: Any, forward: bool = True)
  • clear
    Remove all items from the list.
doubly_linked_list.clear()
  • copy
    Return a shallow copy of the list.
doubly_linked_list.copy()
  • count
    Return number of occurrences of value in the list.
doubly_linked_list.count(value: Any)
  • extend
    Extend list by appending elements from the iterable. Set forward to false to extend from the start.
doubly_linked_list.extend(iterable: Iterable, forward: bool = True)
  • index
    Return first index of value. Raises ValueError if the value is not present.
doubly_linked_list.index(value: Any, start: int, stop: int)
  • insert
    Insert object after index. Set forward to false to insert before index.
doubly_linked_list.insert(object: Any, index: int, forward: bool = True)
  • pop
    Remove and return item at index (default last). Raises IndexError if list is empty or index is out of range.
doubly_linked_list.pop(index: int = -1)
  • remove
    Remove first occurence of value. Raises ValueError if the value is not present.
doubly_linked_list.remove(value: Any)
  • reverse
    Reverse the order of the list.
doubly_linked_list.reverse()
  • sort
    In-place sort in ascending order, equal objects are not swapped. Key can be applied to values and the list will be sorted based on the result of applying the key. Reverse will reverse the sort order.
doubly_linked_list.sort(key: Callable = None, reverse: bool = False)

The DoublyLinkedList also supports:

  • concatenation with other iterables
  • in-place concatenation with other iterables
  • indexing and assignment by index
  • slicing
  • iterating

Things that are not currently supported but might be in the future:

  • assigning slices
  • repeating, i.e list = [1] * 5 create a list with 1 repeated 5 times

License

Copyright (c) 2025 Joshua A. Morningstar

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

py_doubly_linked_list-0.1.4.tar.gz (10.9 kB view details)

Uploaded Source

Built Distributions

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

py_doubly_linked_list-0.1.4-cp314-cp314t-win_arm64.whl (16.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

py_doubly_linked_list-0.1.4-cp314-cp314t-win_amd64.whl (17.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

py_doubly_linked_list-0.1.4-cp314-cp314t-win32.whl (16.0 kB view details)

Uploaded CPython 3.14tWindows x86

py_doubly_linked_list-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl (51.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl (52.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (54.6 kB view details)

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

py_doubly_linked_list-0.1.4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (52.0 kB view details)

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

py_doubly_linked_list-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl (15.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

py_doubly_linked_list-0.1.4-cp314-cp314t-macosx_10_15_x86_64.whl (16.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

py_doubly_linked_list-0.1.4-cp314-cp314-win_arm64.whl (16.6 kB view details)

Uploaded CPython 3.14Windows ARM64

py_doubly_linked_list-0.1.4-cp314-cp314-win_amd64.whl (16.9 kB view details)

Uploaded CPython 3.14Windows x86-64

py_doubly_linked_list-0.1.4-cp314-cp314-win32.whl (15.6 kB view details)

Uploaded CPython 3.14Windows x86

py_doubly_linked_list-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl (43.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.1 kB view details)

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

py_doubly_linked_list-0.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.2 kB view details)

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

py_doubly_linked_list-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (15.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

py_doubly_linked_list-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl (15.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

py_doubly_linked_list-0.1.4-cp313-cp313-win_arm64.whl (16.2 kB view details)

Uploaded CPython 3.13Windows ARM64

py_doubly_linked_list-0.1.4-cp313-cp313-win_amd64.whl (16.4 kB view details)

Uploaded CPython 3.13Windows x86-64

py_doubly_linked_list-0.1.4-cp313-cp313-win32.whl (15.2 kB view details)

Uploaded CPython 3.13Windows x86

py_doubly_linked_list-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (44.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl (43.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.5 kB view details)

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

py_doubly_linked_list-0.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.8 kB view details)

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

py_doubly_linked_list-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (15.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

py_doubly_linked_list-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl (15.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

py_doubly_linked_list-0.1.4-cp312-cp312-win_arm64.whl (16.2 kB view details)

Uploaded CPython 3.12Windows ARM64

py_doubly_linked_list-0.1.4-cp312-cp312-win_amd64.whl (16.4 kB view details)

Uploaded CPython 3.12Windows x86-64

py_doubly_linked_list-0.1.4-cp312-cp312-win32.whl (15.2 kB view details)

Uploaded CPython 3.12Windows x86

py_doubly_linked_list-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (44.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl (43.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.4 kB view details)

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

py_doubly_linked_list-0.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.7 kB view details)

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

py_doubly_linked_list-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (15.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

py_doubly_linked_list-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl (15.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

py_doubly_linked_list-0.1.4-cp311-cp311-win_arm64.whl (16.1 kB view details)

Uploaded CPython 3.11Windows ARM64

py_doubly_linked_list-0.1.4-cp311-cp311-win_amd64.whl (16.4 kB view details)

Uploaded CPython 3.11Windows x86-64

py_doubly_linked_list-0.1.4-cp311-cp311-win32.whl (15.1 kB view details)

Uploaded CPython 3.11Windows x86

py_doubly_linked_list-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (42.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (41.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.8 kB view details)

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

py_doubly_linked_list-0.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.6 kB view details)

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

py_doubly_linked_list-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (15.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

py_doubly_linked_list-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl (15.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

py_doubly_linked_list-0.1.4-cp310-cp310-win_arm64.whl (16.3 kB view details)

Uploaded CPython 3.10Windows ARM64

py_doubly_linked_list-0.1.4-cp310-cp310-win_amd64.whl (16.5 kB view details)

Uploaded CPython 3.10Windows x86-64

py_doubly_linked_list-0.1.4-cp310-cp310-win32.whl (15.2 kB view details)

Uploaded CPython 3.10Windows x86

py_doubly_linked_list-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (44.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl (43.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.8 kB view details)

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

py_doubly_linked_list-0.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.6 kB view details)

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

py_doubly_linked_list-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (15.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

py_doubly_linked_list-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl (15.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

py_doubly_linked_list-0.1.4-cp39-cp39-win_arm64.whl (16.3 kB view details)

Uploaded CPython 3.9Windows ARM64

py_doubly_linked_list-0.1.4-cp39-cp39-win_amd64.whl (16.5 kB view details)

Uploaded CPython 3.9Windows x86-64

py_doubly_linked_list-0.1.4-cp39-cp39-win32.whl (15.2 kB view details)

Uploaded CPython 3.9Windows x86

py_doubly_linked_list-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (43.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl (43.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.6 kB view details)

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

py_doubly_linked_list-0.1.4-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.3 kB view details)

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

py_doubly_linked_list-0.1.4-cp39-cp39-macosx_11_0_arm64.whl (15.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

py_doubly_linked_list-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl (15.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file py_doubly_linked_list-0.1.4.tar.gz.

File metadata

  • Download URL: py_doubly_linked_list-0.1.4.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for py_doubly_linked_list-0.1.4.tar.gz
Algorithm Hash digest
SHA256 16fd5ba64d946c1e812c8a491b4fc7cae1d3c25bb5cf9ebcf84c5ecacb3de22c
MD5 8378090c0dd2fb9840fb71dd26c9c816
BLAKE2b-256 9b60bd2140cf2b325010e647ebb59c00497d6b3ca714f597ddcf0f22e2ddfe8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4.tar.gz:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e7e3ab6946ce998e20aac66eb57d8e7bd29ce5a115fa61dc4603c4768afdcca7
MD5 d465a6fdeae834f116400f448fb9d129
BLAKE2b-256 7cccf1df1dbb5b5f6de96d38610c3e979e56d753d968fb02706a296075ac36eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314t-win_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5b1b4b2d6753c72cb75a5f34dd43f100d11d6f1cd35966fd43ec4a3c6a21af87
MD5 b732f9b6f7f57730d650aabe0cda63c2
BLAKE2b-256 819f7fa255bc87a55ea669d34e533271ebcca82aa70dc5b1df0ca6d87cb2d8aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314t-win_amd64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2c3ae5fa5ca4bfa27a9b0782ac3e414aee2c92c5cc8b09e3ea8ff070b8a08563
MD5 c28fa900294104d42f62eba3ee49e08a
BLAKE2b-256 0c621e6a151d1e23890008585fe7cdabaf1559ab0cc9c1c65604d15e22ae3460

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314t-win32.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92188350efadc9bbd664d7a25ca6b39c0f23d9aa89adde30094914c2b38a5d7b
MD5 8bb68fce6c7b7712422dd5114495819b
BLAKE2b-256 15b4516a6d311e90ccac38bfe672752c31ee1415e2d1a313e50c5ea98e6afa34

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6bad4099711e1e8556f067fc6be7c890c9bba82d06cbe006871a75de9449cdbd
MD5 a95de78a2603fe27e5d7d2f04ec4f358
BLAKE2b-256 622971ebed4e27a0c2a359f634e14a018adf7b2b83ad0982c918b61788b2ecf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2ffe979fcafaf386566779a575c58873baae1a6cbd085a4dbee29928ff8ed0e
MD5 a294d5f8c78a8066a6c7e3a982fe06e8
BLAKE2b-256 f45d88cab19576f9b30f77ad688f445b30bd69f0f926097b2f8bd072b54d675e

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 76dbe05b4923fe070c31959bff3204ca50167c74f4cc356da5a5560c49884c67
MD5 68a68875eda9cc89a11608e322114dbb
BLAKE2b-256 0acbc90d343595e58754d75d38572bebfa5ae688a38e6df1db3973e95bbab86a

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcc21af4b7ccd96de6329f84a13ad0db6dcbaf2015d2f7da78b67499b9a0e827
MD5 bbf14470305e6b037cc741cad9d478a2
BLAKE2b-256 8e4be40b88e307a3a2860c16a0c2906914d29b9ad18c84581400af3b49da6778

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6e798c776afe8f2f3028fead805311f840a625f121aeb0eb9e6fad69cc585dcd
MD5 213184e632617a2f41f797a6ea9c83ad
BLAKE2b-256 52ec3d8aabcbcacbc459120cddea5bcdc50d31ca787b61d400ca8da4da1ff35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7537e5575359751e6232fc59186ea7649506fe02d45620dac364c86902a8e625
MD5 28bae971c5c3f2543870aed4c2d2a2b0
BLAKE2b-256 2b910151b1fce197c14c85f6fea06ec518449389e1a7c2d3b40c0966413b2096

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314-win_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f5ac9dc0d53b035e33bc9ea2f049b8dc2d46799e6dafd95022d94f0b6eeb99a9
MD5 795871d978344530905f5e5df8e0fd25
BLAKE2b-256 76d042ede33c6fa465ed4ef9e52b32162b08a762ba6ce1b5bf346d1ac240dfd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314-win_amd64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7bbaf3ede209ed69c4baf341b07bd0b1d2a15572f23f945b6894d3beb1c64dd2
MD5 bf426dafb79a727830e27dbb9e6d922e
BLAKE2b-256 d070e59a50ca240c5126ef20a1bf1bca7a7d4d53c0493bb4bd41d5defd76685e

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314-win32.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62a6f6a1f79ca0777523b7044e9bbf457c94df219c894cada8886b2cc7e20207
MD5 4000408c0820d855ce892d3b5d11be26
BLAKE2b-256 da250a95f72bbdd4bacc89afa4868d191be61a0930e97b9f961f0629025e7125

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0177c4644293e9520ee056455218b7630ef7c12a55fc1d4c838becd25da9bf9b
MD5 42887c58a3fe98eed87a471567f27454
BLAKE2b-256 dd2faed87c58a382f3fa38bb2e44652a1a59853a50541a970f4948c05aac8833

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ab6de55aa8e063c6e44e908a5db2dd6a91342f0ccb3a2b9a21db9d9b437cac5
MD5 53359decc21ac49ae5ce5d9f16867dfb
BLAKE2b-256 8acce7e26586fd0f70e4b3371425323dc6a8407f16bd1af71bcdbdb9df858c9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 47fd4ff1fc2bed5fe57abadc9e4fa838b88d8a59ac4b81c546fc3eb89a4b076a
MD5 3659b7b7438a834f473fc9ea53e0a948
BLAKE2b-256 97b8092ec47947cc1105522fc192d5af8921ef417328fc78859779ba4199a48f

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9dc5616f7447185b4cbd049c8f0977479937b968f98a482a54611ce29712d6d
MD5 76396fd773a9faf41c82ed728e81a287
BLAKE2b-256 5e081d0e304384d6ace609ec38f41978ef31e6817fc3ca7a56294051ede57aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3339c5191feec7b4b94ef778988594db8b2380b3ca14c22c30d90112a50f467b
MD5 7037443fb478d34e995f64df1f8d396a
BLAKE2b-256 343becfa357c7b614807b0e10cd192297ed99b9cb6e16eb1d9aabf271739e44b

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9ac574c7f35a47ec7422789acb569b531c52bf1082bf2b73535819a9fd445afa
MD5 6db5f976bf4e169c84c38fd82d9cfef6
BLAKE2b-256 f8c0cbb0dab74ea69fc2a2174ef7cd19bc7c1139ba7e50982837487215f4bcff

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp313-cp313-win_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 422f3468d073c69ca411ae2ee21ea9669030c8c63692eeb2abe4bd0d6d2ed17f
MD5 42d5871996b41482aaf560ad61755cd6
BLAKE2b-256 800fee582f4135c60ee8a5f643de27fcf4bc15090917c8cfd8e4a2d060d74673

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp313-cp313-win_amd64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 097a37e4b5bfc4c839bbfc0d6ccd7351dc1d8878a17c26798d70896d8b2d4455
MD5 52cb8264174847e1bd93bb3520453421
BLAKE2b-256 113df83ebed4c4ff8cf3e47bc261a7d227612762a83a68b5eaaddf91b8678605

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp313-cp313-win32.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e648a2a1c5239b57f8efb8c971c5452fba238e8e710ab6a8fd9a9f1a12b80fba
MD5 8efbc0fd13554c89ddbd07b287b73fd9
BLAKE2b-256 5ee03cdd69bf2dc1f2505e7be1aa4e370ee845580f7f7d3f622328540ea16dfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a86c3d72c545146de29ee753868d3f2e0f6cea8421355023cbda5d5a12c4df3f
MD5 7d9ecc17959850b935ace6e080c31668
BLAKE2b-256 d369723b0faf3ea5163458e7e7764b5c491def4d065394872da1923a95cf1c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 724b1eb5286340c9dd16da92dffde8663e9cee5a60cd4942aabbbce73ccc19ad
MD5 e717e0909b0bb5dc6c3535284740e146
BLAKE2b-256 7b7ab04ded5a960b80f2badef0f0a30050f9fe1a50deee038e69a46ff21a2721

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5cb19daeb992f59ec9365dcccd0d2905ca3b7579df21f85d3d47840290681c36
MD5 6b2d44b4b1a754cf3e5588a8dc5f7c6a
BLAKE2b-256 9979c579cfee639a15db7170433faebfec76ca7e08ae3c8c54ee6f5f91433f2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e8a388613780eb2ea8d41e618676a4df5531baaf4942d2187a4a3159156b882
MD5 16982735ed57fbcf3b90d7ce5dcbbd31
BLAKE2b-256 c54b87f69a7843583784c4974e771f09beaaf3c6a0d52641cbd9ef7914286342

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 413f9262044fce700b6fffc8b23424a86ef1a32f44265fa71a36f5906b9bb055
MD5 6867c656cbdf1dfba5743e8ba9f27264
BLAKE2b-256 9e38376e0e1f4fd65402e5fb18bf2ef061574ba992bb937d42f0c2e49d6d60a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cc3ed0f229d9e1c299bcb7c723d825b80556accf73b7b3f22f8faebf398cda4e
MD5 e7f05b23b013dc1247a63d8c8ae89f95
BLAKE2b-256 88773b9652848286a3469bc35ea589a068795bf1244c2ec85bcf0463300e3d33

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp312-cp312-win_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 04a42d21f4f9a87e3445236036840a62a64874202292cedc353c5cb9c53f2333
MD5 524c52b27dd767a42ed1123103fa06f6
BLAKE2b-256 698cda7eaf45f1f27c87d4ed7803902c425b0c756cab33c10a0abba6ab2dbe9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp312-cp312-win_amd64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 92cec470d720bbd5c8cf23eeea01a119c841cf70b963aff56af18b7ec39324cc
MD5 3b157fe663bbb96450926884870a97e2
BLAKE2b-256 09c85377c1a101943721f8a01ebf626a515a034678bbc720cdf0d7780a89cbf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp312-cp312-win32.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 112e9026621f0c839b0e2ae5dd5535e7f083a333e5f1cc0a11176c8c20ad943b
MD5 bfefc72a507c900a13c054eac5bb24be
BLAKE2b-256 1d82ed61a4404c7cdcdddbfa32f88829e92e99167cfb27d4457ca52b207e2ece

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a232ed2aae5406cded49bdef079a914901be17f80fd29a8b4b54d25176bc1fca
MD5 94fb9eaaecc35beba29bfdf05a52cb69
BLAKE2b-256 fdcf3b5cb51d697b84fb9770020d7a2333f1c0ded33fd3d93b661b2c8fa8c5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 487ae6527bcbfdfb8631540aea7ebb420dcbab274ff46776ac3d2e4d203f2b70
MD5 088fab6dc42590817aafa20963223594
BLAKE2b-256 a164b87423cc1088fd7dad815a4137ab6936421c9c48e0ce1c0349349d9d914c

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 49ccb20f514a3b7f4c5976fd1cfafd9f2360e2225f3f2f3fc0391021e621d8b5
MD5 5b48e0a475dcf5360bfb47cc630bc8d7
BLAKE2b-256 143046d1d7a997f4746aa22d4993ae929bcf56f59146e1999d68c1adcdb1b4c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4e38eb00e8b06e0ecc600101e16f101c31d59d3fd841c29eb9fac401b15feef
MD5 9be5e2ce422d4a9b92098737e4a83e7c
BLAKE2b-256 f8aacc9be9dd3d6c0e79f6020b2b5e43a8e6f5d2063dd23a6388f91ca6986d45

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 eb3cb184ea2bbd915d7594577508694691968dbfda27ea841f581de29018f845
MD5 1dfcd18721b696af1f3aec9b498dac3c
BLAKE2b-256 44dc772cd24b267a29c8db53cccf89193eb6c3105cd645ff6a562049bb8ae275

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c61af4810cd0f80c1ef429b393f8f9bbc5bc86ebb12a1149f75600c851326801
MD5 eef0ecadca899aa332dc7f544c03d75a
BLAKE2b-256 c86fa738a5cb6ec2d54911facc9762a119365a10de77ad276fbff2b3d32e71c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp311-cp311-win_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 554e3093541d6b2b2670a672467552aac00f972391bb905da2bb0e000ca1d353
MD5 5af7f357b301a251aa6615f1a3c5fca0
BLAKE2b-256 a261f5a0b78076ab0fc1cf19702d45c6c3c29b8ab2016dc09dbb217e309b1884

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp311-cp311-win_amd64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6f64c3c4374e5d8b85a867ddc14310171549d8694b77bb282281881db9a842f0
MD5 167c6dbcb6d35b660f4d977901df9a40
BLAKE2b-256 1a53ce3ef41b6269f3c5fbba03a3eded04ef2d78d715a87552ff6737b9c91e82

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp311-cp311-win32.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55e523b3b1231b4d6b8d58a9158d037e663e1b11a4462f944afff203d34a4004
MD5 279a733acc10e4910c840d36525661b1
BLAKE2b-256 661303001b77a52309b74445f3ccb53f062de15f218b7b5ee2b68c40253d3f89

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9891ecaed00129ba46a7fc921a6a5676345af534c8b58c0d09e68f628f4fba1b
MD5 5d012c8e1526d2d7d5d6ef6f2896bdda
BLAKE2b-256 031ccca4798adb9a69feceafc504688ef6095c2875a26037895d3cebfcc58f5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b42f4060900abf108dbfb7eee7d8a0ba04b6008e14aedbbfbb26376368f5e02
MD5 37ac68df9af6c339109ba5d78e0cf1e6
BLAKE2b-256 5169faa277b833cd668ce032f68ce861f21bcc034d8273692a1a9b4c34f8246d

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d06b875b7735d483ba77943f3fb8769855354a01a682b81ee97b00e4fb8e84a7
MD5 10d0ced610e8ca1494c958893feca29e
BLAKE2b-256 b3a335931a64dcf5c44ffc45bfb9ff7b37f615c01316a054c3a22202aeace368

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc4cbc18e4213ebe12b25effcfacece963e7b172fbdc6397bc8b867df259f2da
MD5 7f35d35352e6faa5b1cf9271429fcd6d
BLAKE2b-256 5c5faf5ea474118a745599cd92d7c173d43e2989b2b0fbf356cef9bac3769e77

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cea25ea8469ae9df35ee0a4324178e71ddfdb820568fb28e216a5f1edc002e97
MD5 06a00a9baf372c8ac84a7f04b2ce89a3
BLAKE2b-256 8055797aee3528479e920950f55776745fb71d763a0f506b1e6e64ec5dc72496

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 92726803a4d39ed8837bbe5cb2fe9256b3b08c5bc6cb088ac06edb922c09e2fb
MD5 f1511eecf5b433a94f1fa83d0740762b
BLAKE2b-256 22d8134eb7b6eb6a8cb92803c3a057c8717c6633d37dc71753a398921c4407f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp310-cp310-win_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 644f2779dadd0696b9dea039550211256602efefdb884600e17b7edfdd98d2cd
MD5 27b59c1cc60b5b7a26392167c105f800
BLAKE2b-256 fdb276da715eb92d82a4b0f9495aebcdeb9e230166a2564e4477ba89c1ce9609

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp310-cp310-win_amd64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bce9b0510b175bb9316e90cc23ae43202612d95dd98c169c3ab24f61f3a1df07
MD5 7002b5fb9db350740859284ef0935f02
BLAKE2b-256 0951471ad59d904486029f821b77e379b5c5e979d362ac48d34a405125a5edd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp310-cp310-win32.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2addd8e76795a473a1fb227e532c57ce5580ebbed6a0a1f0575ff11b387423db
MD5 91077aec9e2eff3afb581ebf9de988c9
BLAKE2b-256 7bf4a2a2a0d2b8cc054fca7fb8c32dcfb0793bd099f87c0d4d00db12f82756ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67e81575c94db06b8ee7c17e14fa3caa691bf801b56cb91b70cd8c78387729e9
MD5 2c0241abfc90097cdcbc1e4ca8afa606
BLAKE2b-256 d7997453d963096d88132b77a0f10e171f4836a8d98c5ee3d5d891f9a4a1b118

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae12693b07730ac2d35a56040731b808f8b859eeb99c9945edfcea9cf1cc977c
MD5 59a9484e4be840b536698aadd050b348
BLAKE2b-256 7ab49bc0a4bc99703fdf23990fad7910a1f8a3fde4f9b2f68ce65c3ad7561896

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fc971435c0002048ace4467e72b3c72b6ef845673c6b83556512292f2c21e776
MD5 d73afbd98a1e142f0be70908cb1b2a12
BLAKE2b-256 9f7dd93bebe5c223875007bc3f2339de9b647f9e3ddb044aedca7c3fc51f1b46

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 805229bf05b7d5a0dad8644320e15a0c192fb812c0c897be95d48b9bd0525fc8
MD5 8cc0617b45b73225440812b6bab290f3
BLAKE2b-256 24cb29cccd6c6e971a524a425f3c7525ca60ad66365a396c79a6cf76c92260f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aff10cec6d7f229125d40e7a8eecfa63e7697c8ec1d82a66eebe0e31c25db0c9
MD5 da1698006e90256a565fd5272bc24135
BLAKE2b-256 cec44c1ef09b5afaff955c53117b3c56c756f764ca5a7d5e7cc979a38bbe3f01

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 ba97af34a035bab9a3dc3766a3c05cb49e951fb5a32f53f7d8754133ce98e5c4
MD5 eb51956f789c7f9619af5175ac8fae3e
BLAKE2b-256 8ab6d1bebb5ad7b9b592cdb91591c55eb81d080d444ebd5209c3b2a8657f99ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp39-cp39-win_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a473961b7e90b2e4d0ac6331815024e5cb883bd82cf9777ec7235faccc68e576
MD5 75ed8e82b7a20bfdce26c69bb94e8a5d
BLAKE2b-256 ec623d227b8e2eeaecaebd782784de511df13ae887605fc6019d1c02cfa53db2

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp39-cp39-win_amd64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e8ecc2304dad1fc30c28161bc719c564ff56ab95169d5a246170046f20cc13f8
MD5 ce6f46129a1661405bf590051bda1768
BLAKE2b-256 7dcf0ee8e5102db7615d14f955239b5d35b5220e9b3c70bb396b8b35e939feef

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp39-cp39-win32.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3fdb78b2eb5655e41a50f35cfaf555c5ec649849cc6723e2ba7c61b1aef8869
MD5 cf0f90542368ff75faa05c324b739844
BLAKE2b-256 d95afd3a02b01f678ea13092bc5bcce09184f40be0472521b621e221a067a994

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0da05ed6d677df7db7fed22eda37c7b264bf2b415d1bcad3a1b4063b153239a7
MD5 f683808006a9f60c1d5aef0509426353
BLAKE2b-256 8e83f7356999eb3ee67c306c6519ea010ea21628f0db8d14dd7252f30b68ad9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6279f3075240616f3308327dcf82be759ebada669a654c9ca2697a71298d3672
MD5 b1e2c75736dc58c3384b6160bd98834c
BLAKE2b-256 617da52b2d0eb2d6b9a8b8b1d62be054b740faf8a923caebba93a3a3324a535f

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2308b2478c2b92baabd927f6692e6a137518c52c71df1bd9cfd225b7caec5b1e
MD5 d16cd25cbbbd8c6de8fc73de457f3318
BLAKE2b-256 c933f8585e1044af4f32b4453b68bd6da5ae42ddf73a631003a47a427e6c4311

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98112044ae46312683af5cf67ee102f8c474e42e90f99749ea1fde8a368b359a
MD5 f78e6cf1cbb8308770d6528a60468576
BLAKE2b-256 c307e3671291f5607d341adf13eee6a261119e8032b1e77b5b7d90de5e579923

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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

File details

Details for the file py_doubly_linked_list-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 453d33f168aa4be593de19f36c91ffcf5e20b74b1f13b8b3873305a67c25694f
MD5 1413323f77804feb59b04b944aa14eb5
BLAKE2b-256 d0cb356fd1ef4cfeb8bd93574b615f66238d6bf72d6c4ac8528aa49adc9ef797

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_publish_wheels.yml on JoshuaM176/PyDoublyLinkedList

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