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()

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:

  • sorting
  • 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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

py_doubly_linked_list-0.1.0-cp314-cp314t-win_arm64.whl (16.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

py_doubly_linked_list-0.1.0-cp314-cp314t-win_amd64.whl (17.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

py_doubly_linked_list-0.1.0-cp314-cp314t-win32.whl (16.6 kB view details)

Uploaded CPython 3.14tWindows x86

py_doubly_linked_list-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (57.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (61.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (63.9 kB view details)

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

py_doubly_linked_list-0.1.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (59.0 kB view details)

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

py_doubly_linked_list-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl (15.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

py_doubly_linked_list-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (14.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

py_doubly_linked_list-0.1.0-cp314-cp314-win_arm64.whl (14.9 kB view details)

Uploaded CPython 3.14Windows ARM64

py_doubly_linked_list-0.1.0-cp314-cp314-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.14Windows x86-64

py_doubly_linked_list-0.1.0-cp314-cp314-win32.whl (14.7 kB view details)

Uploaded CPython 3.14Windows x86

py_doubly_linked_list-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (50.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (49.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (51.7 kB view details)

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

py_doubly_linked_list-0.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (51.3 kB view details)

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

py_doubly_linked_list-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (13.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

py_doubly_linked_list-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

py_doubly_linked_list-0.1.0-cp313-cp313-win_arm64.whl (14.5 kB view details)

Uploaded CPython 3.13Windows ARM64

py_doubly_linked_list-0.1.0-cp313-cp313-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.13Windows x86-64

py_doubly_linked_list-0.1.0-cp313-cp313-win32.whl (14.4 kB view details)

Uploaded CPython 3.13Windows x86

py_doubly_linked_list-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (51.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (50.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (52.1 kB view details)

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

py_doubly_linked_list-0.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (52.2 kB view details)

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

py_doubly_linked_list-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (13.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

py_doubly_linked_list-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (13.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

py_doubly_linked_list-0.1.0-cp312-cp312-win_arm64.whl (14.5 kB view details)

Uploaded CPython 3.12Windows ARM64

py_doubly_linked_list-0.1.0-cp312-cp312-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.12Windows x86-64

py_doubly_linked_list-0.1.0-cp312-cp312-win32.whl (14.4 kB view details)

Uploaded CPython 3.12Windows x86

py_doubly_linked_list-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (51.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (50.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (52.0 kB view details)

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

py_doubly_linked_list-0.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (52.1 kB view details)

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

py_doubly_linked_list-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (13.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

py_doubly_linked_list-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (13.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

py_doubly_linked_list-0.1.0-cp311-cp311-win_arm64.whl (14.4 kB view details)

Uploaded CPython 3.11Windows ARM64

py_doubly_linked_list-0.1.0-cp311-cp311-win_amd64.whl (15.3 kB view details)

Uploaded CPython 3.11Windows x86-64

py_doubly_linked_list-0.1.0-cp311-cp311-win32.whl (14.2 kB view details)

Uploaded CPython 3.11Windows x86

py_doubly_linked_list-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (45.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (47.0 kB view details)

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

py_doubly_linked_list-0.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.5 kB view details)

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

py_doubly_linked_list-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

py_doubly_linked_list-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (13.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

py_doubly_linked_list-0.1.0-cp310-cp310-win_arm64.whl (14.4 kB view details)

Uploaded CPython 3.10Windows ARM64

py_doubly_linked_list-0.1.0-cp310-cp310-win_amd64.whl (15.3 kB view details)

Uploaded CPython 3.10Windows x86-64

py_doubly_linked_list-0.1.0-cp310-cp310-win32.whl (14.2 kB view details)

Uploaded CPython 3.10Windows x86

py_doubly_linked_list-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (44.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (45.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (46.8 kB view details)

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

py_doubly_linked_list-0.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.4 kB view details)

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

py_doubly_linked_list-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (13.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

py_doubly_linked_list-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (13.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

py_doubly_linked_list-0.1.0-cp39-cp39-win_arm64.whl (14.4 kB view details)

Uploaded CPython 3.9Windows ARM64

py_doubly_linked_list-0.1.0-cp39-cp39-win_amd64.whl (15.3 kB view details)

Uploaded CPython 3.9Windows x86-64

py_doubly_linked_list-0.1.0-cp39-cp39-win32.whl (14.2 kB view details)

Uploaded CPython 3.9Windows x86

py_doubly_linked_list-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (44.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (45.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (46.7 kB view details)

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

py_doubly_linked_list-0.1.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.3 kB view details)

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

py_doubly_linked_list-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

py_doubly_linked_list-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl (13.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d30835d9aa81ee947fdb7bc7a1d78a186ad74eb311c191d063f9e7c9bf915b0c
MD5 21f75b82ef47fb7f55c2c9ad2b1f6762
BLAKE2b-256 6adeed8763e3f2cdc593e92712796304a1e8871dc3015f4f912ba852242783d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 07f5edff072136dec163481747928ec2fa199cb25a42f6b412a975d17e052e32
MD5 c026a47a6cf6b2b9f92ee6413881d1ae
BLAKE2b-256 195880f0e5f2a3aaf426ad515f8044a73b54b78055ed7b7b204deb8fe2420e35

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e1bc5b2b8f0749ec7f97096ea7586e52bdd941a396a2f0a05f104f096262c230
MD5 f659f90f3054f0f714105c00ca6fc54f
BLAKE2b-256 4efa789b47e62d36eb3f4f7efe0bc068a4779f6b60465985ef249c4ba0088e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 984250cf7102f34257c5d753cc76be9a9012b3011ed89ddba284c24d26cdd220
MD5 85341a9d5fdf5f5d62dd0fccaa447712
BLAKE2b-256 dbb4bdd2cfc3697909dac68e6d8c73467a16db7a6b5923130a37de64727af216

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa876ed4d080e726dbdbd4cebcba97f54150365e27cdbea733d6f7916c4539e4
MD5 2a8779a61dd29ef88f00a0c182adbaad
BLAKE2b-256 cb4c693bb701cb9f57335467a9a37d9dd4d37abd00c8189dcb80c0f970398482

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 868b42b4ca0bcd81271ff1d0315866a65f2ba944f5a0f292d61ba1d5083276c4
MD5 a0abe19c2249e7dde359a07f7a2b19ab
BLAKE2b-256 831251a7c094b029a31d512871877f6fdce56f6326ba64df80f44a654509a44b

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 980a3b5201a7527842dc1c16ed03eb5b5fb5603ba5ab54aed33c34518feb15cd
MD5 c9669bb54e960e1e7e176797142c8331
BLAKE2b-256 2992421f4e467ac402571dfa48c59b72ec160f667d094b678f33a665eecd17a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7f55e34ce1d3ead19524f4842659d03314c12ef28dd08dee6ab2f0a85faef06
MD5 a0e93f5377d15ab3e1f857e572564fe7
BLAKE2b-256 7833a3acc5b5fb189a0ab97caba9507e6520da59055ed3f8d0a2c270b0b66782

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8afdc6f11a9a67a0eb564c9e88b786a628d7e898b4d948b78c48728558bc494b
MD5 64fc6ab03af77115723a70b920985127
BLAKE2b-256 7b7a7063befed1f2a60e81308426e11b1ca391f83ace94ab6a33ad7f1689f205

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f56ebadbd0f42a7aac1d4c82b82c9c716fefcabaf8f0b1cc374bb059620e7c8c
MD5 d1209c585d9446dff146a088c32c24a1
BLAKE2b-256 f897c6de2a4733e0f8e10dc0adf95baee6f27680afb3cfadc54305c27503341e

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 335c9af2cb858254486385efa372f934c84ec804d6a810f020136f9ac5171deb
MD5 d7fc3c131afebaf4d8902d063f1baa81
BLAKE2b-256 8767a3b66da267bf6b089abb5f52b88259444256dd1d09b9dc258b0ea1a44490

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f692a9f2c5a0cfbcb4e77af90834716761b0a6359306dada54c27dab73fd1084
MD5 ea4ce26919823fe7fcd22230663863b5
BLAKE2b-256 3cac18ff821903209001e532ddcaded72d79f6aa798c0a8e8efbe2a377a0fe2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddadb8ba1950583872a683a7e3fc02ff1648cc03118420615a03d23fa62c31d6
MD5 208e6e104a259d9f60384ed8e3b3455e
BLAKE2b-256 144e57096d0df6131bc0011131d2f78bd0d0c342a9166dc237d6d88e8feade52

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3821b6e3e5042848e7afcd9fc9d71e598a173facf64638b55bc9dbc95944ab8
MD5 ee9d1729562dae6b2713d2162c9ceb79
BLAKE2b-256 40c58cd216547949fac75d36e1b3a41299cedf96b5df321ed3dede8aa0c8cef0

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad64cbf0b098b7347e7041505457a8d15b356b2a0d63cb5059566d533f6a200c
MD5 c42ff60bf46d6bbb76d210d73ad15d6a
BLAKE2b-256 3070af3c2c4922483fb2d92cd47e6ce304ef99d470522d4f528a74aa1d8990aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 03f274d6f314cb0d150f0e6165f9819811713a6f45e6e4748cb0190b739e2da4
MD5 34b1494a34169562c34809f1aa90b337
BLAKE2b-256 63d8a6c86186e5e6e27b2ea81a0837a174df3f4d57c56be1c812dbebeb8f2cbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bae827bf0b9dea9a19638c308aaa2e3463bd2ef64418f93ac135253709528ac
MD5 ace42c35b4bef7bf34eee4d893214d8f
BLAKE2b-256 2ffc4773523d3cfe3ae614dc15a196034dd5cbbf7e5bb91bcd3697c26bf2e1a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2e44f669f8cf06fa44713649e727a573c40972b636958ac54230711aa0f634aa
MD5 a19d2022a4f61589d79fc19fc43e91e9
BLAKE2b-256 e19eff02caa0018ff5f319ec73c602029e1abb3eb256544b0e81636d553ab8d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2522d26a17a86e439a733f6f1244704456644ca602343c2a48e2ce4ac3cb79ef
MD5 96bacb39c1a77cca088a4c64af1ef744
BLAKE2b-256 0b67e9adc1c2b6e66c20353a401ef9713fb8680c67fcb15fa4c3923ef6da38da

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6a95172c48e4da8efed9ffc486421b370bf7ee25fa1783a2135042c2cf0b987f
MD5 975ad9d9b04e91f9b0a855f99992e9c3
BLAKE2b-256 0113a83c6875414bb0d7ff713c7c7122d562c39d89732be5eab7661dc10d7b0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c4eae2a0f7a84d40ad67db7771fff389ce6be7a9900f374e270813c1439a8de2
MD5 ba325a808c951c2eb49249e55a9ba55e
BLAKE2b-256 b09573f77b2d7013fb5c5694bf7db4f0065951b5de518bcbeef97aea20c5f7ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb95dfcafd49ade55299fc5fa3fad5d1d3e929457cb48f1f2a0e405b62bf7d0d
MD5 f280f17c94e4898e96bfb405f347cd59
BLAKE2b-256 da8b004c791f7379a9255c8bcf0bf63f34f7478034dd421a616da6bedd8816e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d86ddb502ed1af50e5e102b00be64365775dec5f7a4baf4b6a00a49545c2c157
MD5 220dc28387dfdee3e20d653adadbc56a
BLAKE2b-256 7f96546cff4fb88a2f0cb5329d6d9a98de2975608e16ad82caca3ae722ec88b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4b2fa5792dad4f5bc3eec051669cf2317db3ef58fe2669bfe6a14b2acfa1a4e
MD5 d580492e12de5272a1ae55fcc8f1f357
BLAKE2b-256 12068821e02b0296b43163dbdc2dc428a4eddbb808b2dfa7434c4a1ac0129762

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c64bea2816c51c600044767982f46c49e16cc544a97ae92984f6d08f0f46215e
MD5 1a1b654535ccc1b345a9c0e6fef4fb57
BLAKE2b-256 817b198345114f2e679f6964d618bc44ebe02afcfeae022717ef11ca2a035cf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7786b9affaae391dab6728654f39ad936c503ff2d401c12f5184d73a6611527
MD5 cb9e7563c4783c7642ca796c66461ef0
BLAKE2b-256 0b27fa5ec7bb593c34e960680d6bbbee4491bae464507841815c2bd4a9c154ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2db4a4460389876e5f0e6e1c6d08f1e71e4701fa1595f72a194c27fa94525427
MD5 527a84134935d379fa52ca9f8b150884
BLAKE2b-256 2d7a7044b92126386de2e3e5f7adff52dcf3933ac006cb5780c51fabf1bcb7b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cf1935b547ddbb8396df0b6494ed24abe66ec08b40cda8970e9524df01aff46d
MD5 f8f2f53f8eddb327880a355b8f1eae03
BLAKE2b-256 a21cdd4865e078b2bd043cdb482a8a28ee03f6feac0c4b11ca7aa0a22a1b1e7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1bddba9f0b06d1f32b3603ff125acf3d9433de7ae8d03049b245e01d9c5d98a2
MD5 deef248362e56b88e8e1dcfa9f3395a1
BLAKE2b-256 d68fd760a953c60ec1d0f276e27e7ee8f86ab75442c68ad6d117f35d4060f96b

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6e8e21444e211113573164685549210dd807faed8716e2458d5918bb65c6b222
MD5 a3c677fc47c9890f6772becce9bcdfb2
BLAKE2b-256 bd8d7a8856ed35aaec39267f7117e9f4ab53a680c648aa076ba8c4a5cbb442d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae986221b89914bab7b302450c967f61deb167e143182060dfdfcea66004e700
MD5 74be2c1aa545deec0db6e629e9e92c87
BLAKE2b-256 610b89ad8ff3587c2ca4f72e79e6a9dc3100844e0bd12cb34135262e7b26587b

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 016f4bbfefd62ab2921ac50d1659f81d4047aef4d19594705adc57dfd5e14ae2
MD5 9cf93ced7d7b6a7fb7a3d4761eb60b9d
BLAKE2b-256 2b59fe11204a770d63b56e57593ffee616558f73386ebbe723db5d9e8f43f5f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97b3d3c2937205d1d5ee4eed19ea40c7cfa29c159a3ce13302e2f92718dfc682
MD5 d7345ada7ed1e1449fc855c39d0275ab
BLAKE2b-256 08cbec1b81b274e0fa2ad5fb688a87dbdb62c92a5536cd44e56da8fae8f6f604

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b10a24d91264e4f41e78f2a827d1d5eb412ba8c95603a7aae4a66a716f008e0a
MD5 cd1e0e67c3c76e592dbfb53c152796ea
BLAKE2b-256 1d03bb8df1733c7bc3cca4ed39accfc170be434cee5912d66a3356727c1dc1a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5de768d6722b15e47b7493952b272c8c9f29486995df69b648e7324db6f2b14e
MD5 763070fc5c18a691f7e59eaaf4423a93
BLAKE2b-256 f1df6b595b44f26be726e777a020e9eff9fa130135fd1ca499c93098152eee34

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e8fbc196468bc10ed49cb4d59c44e1961cb746ca70ffd3d68a69c6a1e929e8f7
MD5 aa214a23d968956ada4bc4f71c8bfcb6
BLAKE2b-256 c151548073f4232e44885bf5309385f421b3fce98c14d585b207aa772464e9ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 19fe2593f109c8d691083a1582ed0bb29594ce6fa68036a97772100ccbbafb68
MD5 115b0514ecfb56502a42a828f809a535
BLAKE2b-256 593b6feea10ae95f450af9cdfd14c4b9219dce3723786215572e028269db740c

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 040581b56631189926f0216c0c7b5c8d20b748e77665ae8232b517576577a06d
MD5 58d7c5d299a78d31721433479e813253
BLAKE2b-256 5683a3f91202f119fc842942cda32d3bd897dce3491f560b689e0443806b072e

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 eaeea2010ed12512879b2cd6605d9d5531d410495807f66069efbe56b1f5a53f
MD5 c51ee1e6bfab992c8865e6baa507704c
BLAKE2b-256 b4f0e6394c1f5e3809bc112e7f34468ebe1e6e0492b06d24dc8841f5767fff49

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 099dd3b0159a69eb01fcace8019d66818cf40e159252b79d8d4d8c7bf142ed05
MD5 17903f25b1119d419950428ec60235df
BLAKE2b-256 71ebd47e1d9de469f34a895e164d2ef5a621b3d1bdf91382e14baf659d481c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 698592943a55f4734921cf96c4445a378f9e84edaff5376d866e09e5a0cd1985
MD5 ff0761bed168dee25a71e8beddabd520
BLAKE2b-256 8bbc8d1f0bd315a58ad197f1a62351dcdbd49d0329505c636b584e485a1a2c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d802d2a08d7230ce3c05e3838c967582a884597a7334d32c1dd3ce3dce01ed2
MD5 bc05cfbabd54106cb072f872cb282385
BLAKE2b-256 aa62713e13e614ec746ce8f3c673b130dfa1adda71b603788540151e8aea23e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0d6edf0f6409dde8c9faec9968f955303b1a62d3df3463f9ed31aacfd66382cf
MD5 a96c9e06bd85a3008e1799b6177217da
BLAKE2b-256 e1022b520ea91e130e13f59145f0cff4008f0fdf21455a86338d498cff412966

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce8e94a25442dc5b97bd54c94d36ea18f9ca22b02da2fc258eb339f58a5fec02
MD5 f1396ee52e695229a6984a0fe10a5ead
BLAKE2b-256 ce99e86f08f8ab1597e84d817181e0f2211d8dd6d740769a99f5bfd883af6fb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 135ebda78497a489ae2f8d84bc7f902840b0c3c0a43d52352cd537a12ca0a059
MD5 64cfbe577545127bcda8c38f5ca0bbdd
BLAKE2b-256 68ad9500bd811b25f655ca9391db4646c125939c73474a67b84be72f5786bda6

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2fe62b4278bc5ee0f5666b9e6de931c106ad90802cf805b1c4c80450d68b1979
MD5 bde4670eaf7914e0a925e431f6045e2c
BLAKE2b-256 328fd801267bdb4057f5f7cbdd30e53ac07774e951c0b5664f396a0af7dc4b9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1bec88ff42168df8a95ab5898198d34849dccadeadbc2f41815260a9274b2a1d
MD5 2341271f4efd947e2f2139ebe67dc323
BLAKE2b-256 41769b0c0f65d2aa9a0e35b510785e0815be4a5e2ab9f1ed89358c91dc4f4709

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f72d84e7cac13405d7cd21a26e80a17aac8a935b5026a3bdad15d3b97c6387aa
MD5 4c73ebee3697237f2bd151676b124d22
BLAKE2b-256 25c82eafc1ace3dc6da025b7e59e2b8b42f8b01c776ed755b1bd37482249da2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6854a20969a763b599abe797588ac5dbfa0fc16951adac4348623b45c889c8b6
MD5 98bc71ff321292af05e47e11d7475a6a
BLAKE2b-256 3f2994f7fb0f606ef9d07ac79c767f02fb3798962d966f60844cc263b9beef76

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7bf5559bff0f0621a9c68ac0fc4c58c267a2463f3beb54b881131195bab6b88
MD5 990f49dba4455165b74bae75e4fd30cf
BLAKE2b-256 7c4590816586c4c8667c23447d0802bd387b09b19b116df43629f350889492ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9d85bfa267ba0d5c8dcd24e50b5cd623911356da6373844af4b272bf0f026a8
MD5 ab2f74ebb424cb580293194443cb8bc0
BLAKE2b-256 7e16a084fde9919b0edea76f41291d922716d83053624677be21e17da6e93d79

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 09cc4513fa95db58a0284f1e7e39fca5f0c9c42204628ef08db3c4e587b1853b
MD5 b707b869f0ddd5e1fa382d7c4a253c96
BLAKE2b-256 00b02160dfc2fbb040cb649586b36203071ce6eb7be237a9e51ae2aa3d0ca66a

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bfac5c2b7aa1d8b5962978eced76fbf2ecd5957f0c8081c3c911d5d00058f9a
MD5 0098d153411655f94407cc585b47bd8f
BLAKE2b-256 35ec4509747dbf12d6c6335d90b134670e2bd73a760455763c21eba3b82319d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d5b85f5c02cff57ce5b40da477db4fd5985d1c60e1135b194be65eb19b4d5ba8
MD5 3f63aed654a118ac784073f210a9b5b8
BLAKE2b-256 4a8610f4e9ba6e06f17c6a7f721ef8781477103c23ae2bfcb4a0a42fe25e69de

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 e19ccc256e391d0a06dbd98f5de6f968174634fe25bd031f0bbec92a50be52e1
MD5 857c8629cf999df4ddefc1ba772df946
BLAKE2b-256 8b4dc867c61507ae59d5229da1d197fc7594df0edde06b93641b64d2cb917c37

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7dfd4f127f51843817ae8642d09163f7087d63f30c701fc5af92fa1198b3332b
MD5 9d9ad83e8218447b5a198f62312b6f95
BLAKE2b-256 581fe8cec44154bc91a317694fad584c0ceea6305be024c6a5f751a839bf7eec

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 237be29e719cd7a86789888189cc712c2a36dc9914b487c6543e7f3b51c0c23c
MD5 e673887691ed27c666db7d32286e5a33
BLAKE2b-256 e37a54c8a2408160a35b461d6d5878517a783047b17fe1615369d347c6273bfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe93855668fd1a96dd8c531fe3761c4037aaa1979aa21cfa045f22110b46f563
MD5 b80807ce1b0c6c0fb0d1830bb1421d13
BLAKE2b-256 7bb3eef7b413cf39d21371331c3b4940a3fccee16037cf0b9ee5fbd6a2b7aa70

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0711fc63716c67cf295938a45918c24eabac702bc97e83f27c07fa9342dbcccf
MD5 6ed30273fc49c1376f659ac29190f730
BLAKE2b-256 5f7bf2a5e344703162859468a87c4da509e764e75e8efeb6bfbd2a1cabbfe5e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5945c4e14257cbc80496211d3aa9c8a33d5824acf12c84f9251efc7b2e6fffd9
MD5 771784a059f4e41a1cc00034816e39ff
BLAKE2b-256 946561cff939d795350416307ddc4e653dbfeb647cc103ea15889241b8468abd

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-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.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 872de337bcb4834cb15b16ba9c688ba87c43628d3950872af89f07d43fc7ab2d
MD5 36971421433ef78fceebc4fda06ff16d
BLAKE2b-256 a5d200396ad014503f88f41d7dc3fb9d2f8804d0485ed9aa727200eccb966b4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae1dc3f8f7d02c5ff9431539d986579f3adba129cf4c27709211494c10c10dbd
MD5 efca8964c0bf3e90924e7c104a74f5eb
BLAKE2b-256 a0759be6c4c22063d0669ec81d36ed34c3603f3154c0292a1019d4678eaff566

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 765e13469158a7d6b2b356afddfa1dbc84e2245446af6d7f130c362cb1861e48
MD5 ada5e23ee90b22818f6ca136fb4fff23
BLAKE2b-256 90b1b9e99b05fbbb70b16a5762fda8bbeb3b0ea296c5fc369d7186102d08c6f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.0-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