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.3.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.3-cp314-cp314t-win_arm64.whl (16.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

py_doubly_linked_list-0.1.3-cp314-cp314t-win_amd64.whl (18.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

py_doubly_linked_list-0.1.3-cp314-cp314t-win32.whl (16.9 kB view details)

Uploaded CPython 3.14tWindows x86

py_doubly_linked_list-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl (53.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl (54.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (57.0 kB view details)

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

py_doubly_linked_list-0.1.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (54.3 kB view details)

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

py_doubly_linked_list-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl (15.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

py_doubly_linked_list-0.1.3-cp314-cp314t-macosx_10_15_x86_64.whl (15.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

py_doubly_linked_list-0.1.3-cp314-cp314-win_arm64.whl (16.5 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

py_doubly_linked_list-0.1.3-cp314-cp314-win32.whl (16.1 kB view details)

Uploaded CPython 3.14Windows x86

py_doubly_linked_list-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl (45.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl (44.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (46.2 kB view details)

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

py_doubly_linked_list-0.1.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (46.5 kB view details)

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

py_doubly_linked_list-0.1.3-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.3-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.3-cp313-cp313-win_arm64.whl (16.2 kB view details)

Uploaded CPython 3.13Windows ARM64

py_doubly_linked_list-0.1.3-cp313-cp313-win_amd64.whl (16.7 kB view details)

Uploaded CPython 3.13Windows x86-64

py_doubly_linked_list-0.1.3-cp313-cp313-win32.whl (15.8 kB view details)

Uploaded CPython 3.13Windows x86

py_doubly_linked_list-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (45.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (44.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.6 kB view details)

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

py_doubly_linked_list-0.1.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (46.1 kB view details)

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

py_doubly_linked_list-0.1.3-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.3-cp313-cp313-macosx_10_13_x86_64.whl (15.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

py_doubly_linked_list-0.1.3-cp312-cp312-win_amd64.whl (16.7 kB view details)

Uploaded CPython 3.12Windows x86-64

py_doubly_linked_list-0.1.3-cp312-cp312-win32.whl (15.8 kB view details)

Uploaded CPython 3.12Windows x86

py_doubly_linked_list-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (45.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (44.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.6 kB view details)

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

py_doubly_linked_list-0.1.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (46.1 kB view details)

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

py_doubly_linked_list-0.1.3-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.3-cp312-cp312-macosx_10_13_x86_64.whl (15.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

py_doubly_linked_list-0.1.3-cp311-cp311-win_amd64.whl (16.9 kB view details)

Uploaded CPython 3.11Windows x86-64

py_doubly_linked_list-0.1.3-cp311-cp311-win32.whl (15.7 kB view details)

Uploaded CPython 3.11Windows x86

py_doubly_linked_list-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (43.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (42.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.0 kB view details)

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

py_doubly_linked_list-0.1.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (43.9 kB view details)

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

py_doubly_linked_list-0.1.3-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.3-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.3-cp310-cp310-win_arm64.whl (16.2 kB view details)

Uploaded CPython 3.10Windows ARM64

py_doubly_linked_list-0.1.3-cp310-cp310-win_amd64.whl (17.0 kB view details)

Uploaded CPython 3.10Windows x86-64

py_doubly_linked_list-0.1.3-cp310-cp310-win32.whl (15.7 kB view details)

Uploaded CPython 3.10Windows x86

py_doubly_linked_list-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (45.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (44.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.9 kB view details)

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

py_doubly_linked_list-0.1.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.8 kB view details)

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

py_doubly_linked_list-0.1.3-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.3-cp310-cp310-macosx_10_9_x86_64.whl (15.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

py_doubly_linked_list-0.1.3-cp39-cp39-win_arm64.whl (16.2 kB view details)

Uploaded CPython 3.9Windows ARM64

py_doubly_linked_list-0.1.3-cp39-cp39-win_amd64.whl (17.0 kB view details)

Uploaded CPython 3.9Windows x86-64

py_doubly_linked_list-0.1.3-cp39-cp39-win32.whl (15.7 kB view details)

Uploaded CPython 3.9Windows x86

py_doubly_linked_list-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (44.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.7 kB view details)

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

py_doubly_linked_list-0.1.3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.5 kB view details)

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

py_doubly_linked_list-0.1.3-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.3-cp39-cp39-macosx_10_9_x86_64.whl (15.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for py_doubly_linked_list-0.1.3.tar.gz
Algorithm Hash digest
SHA256 213f76b43ad4f34c3519d8f67db39ef87dbd625c90b9efe512505c96a390f073
MD5 707165409de6a1638177f30f1e43389c
BLAKE2b-256 25b998db7cea8a48856bbb960dfdf39716df97329d3496f0e0540cced1b61d1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 31f3309707fa1acecb41d89ef16da68a601fd616af764afed62496c5fab8e874
MD5 e553a65405503f2637c1000082a29399
BLAKE2b-256 a80f4e468c5a3497de602a6fe2c7c05799801babfb0dd7dbf0e8c4665e693928

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9ff58fa1c7ae63b6cc3197570f868804013fe6b50a26d6e04cbc15dcd548e6ec
MD5 96ac9aa62fc0f63c31f06920caf0d64b
BLAKE2b-256 034fabb20e62f625c85d252f57a230fafff6bf0e83735dda1b99dfa78129e090

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b14028746ae551852f38cfeac2d86eb4e760fd782690379ec949c7d257ab04d7
MD5 da583bc8c4f58701bd33e1e0d38418d5
BLAKE2b-256 4bf496d030f0a9b49ce4f5e4079f886f51b60730bd71430aaf0a0f610c257cf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11ccd8cda7f55fd18369a067954185c8859a8164dc0d48180ff749eada7425ed
MD5 3900ae820606ead69f20c72c626f95bd
BLAKE2b-256 bfe5fa184045c580e6119abf3d79f21fab2b373284317d9ef3fc9cf7b9e2bfef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6014ea1c114cdd9cf38b2af986eb94fac65acb8ba4288c38067ede1eb20f91b
MD5 bb1d40a0d6f966eba4f853592a579c82
BLAKE2b-256 df681c5b4b4c942d09b54d535548170c3a9fcf883d4a0cf4358d09d467a0cb55

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01356fc857833aafa0fc44c0c13360a66bcce24dca7e9ed3a3bdd00de76cc5c1
MD5 53c524f158e265eca20f66c88072438e
BLAKE2b-256 f30d7a7a0f2fc8c41d94e5420337a866b24074f773a54750bcd7e57199049b8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 209c2adf45d34a3a5b3e1a6a07ffc2612911501c395df9d500d0510b2d08d3c9
MD5 161275654e3afba4698cdc57f593ff34
BLAKE2b-256 e8f5be28bf8c7a96970307221bb52acf1eecddc1e11e58160a3e5f34c2c93375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8e0cc066a5e634c2a44ea11967a3941ef27224af6e9247900a60725f3aa0943
MD5 880bd1e5cbfa404d136170587eff0b3d
BLAKE2b-256 0b07f19d97868a2913d114d338e08dcf6ac91499cd007eeb8987846fab4ebfe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6026eacfd9aa4ef025bb9afe3765c404e5f0389498626cfd11048798b1b7d9b9
MD5 3921eb7632245ae0c3ee832e1ae4d9ad
BLAKE2b-256 1b1e9225ecaad9e75147a64cdb500fb2af5c9703a114f96d2c345e8205b8f81b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bdb2975c8c84bb6c36278662fcfd86147cbbb2837326b4d37e56cad97ab95c59
MD5 f847a6ac9f60033b061b7e801d06ac85
BLAKE2b-256 de6aefc998b6b865bf1a3dca23299c3b3e20746640c23e920a567d94a92423e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ed8e0e2f0e180a5e2d849e01715b6de95d95eb981af8b8806a62d8c4a2cb0849
MD5 fb8b5173dc07da32693bbcfce9991607
BLAKE2b-256 4f15406ab87c8a5b4915ce0bb8ebeeeb23f40a325b2bd32bc52ea3b19a4c21f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 33747e72f73e0e7bc448b2c0f2ba3e8409a18b83c0e1ce0813ae777c7c3e654b
MD5 f8f5d5201c1aabdd55a5d89b5016bf14
BLAKE2b-256 482783925732bef932f1b7d61fab14423d8fa59a563ac5a42bcbc868467a6083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a04fe301d984d1742d681cde8b077fdfd36b61f0ca65a051965d5d9584b42947
MD5 f8486a064934db2d0c83339b192c8220
BLAKE2b-256 3305a9bf3e75c0b3f24430bfeb09980571da1ebe855aed7877cbe2cc069254b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e7fce7542d0751b789bbf93eb466d3dcee7add81e800f5769d991585a167f39
MD5 d376a914b72270bf69e8e5f8088e8490
BLAKE2b-256 a2ce655721f7ef47ef02d9968a1833a0f4b764ed80966d5b057a9e5bb4e75fd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfbc6c4f5ef179bb510e0b2e28d266c8fb609b4ee19b7378c9ee0274af37dee7
MD5 6a58e2c4b032b6cdaa7a9dc52a4e6e2f
BLAKE2b-256 0038ba785a6a1a97b2aa37f1ec2c06b763270479bc9ae11aed4d64628b7a6baa

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e3ce4304342194ba2e24200986b95dd386f09e4b06eb438b738fa2f379eb8c75
MD5 ab718022c0e1a7905b9a3c80715afb20
BLAKE2b-256 9e4128d2921a21fbc5895eb1a289b47a998e07b2775eedd190899419ef4a7a87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d831a382d794332b0a35b1c226813855b1280b2be69df2511e68496a6076518c
MD5 f95350cd636a7fed37f456cf06fbbea1
BLAKE2b-256 98b28ac5f434017ef49f8a8bb0d279357433f08bb46ce593d6a4454c1c6413b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1d482ec3782360c3ae7c55d378a980560305867d0a2936f44bd7d840ec131d5a
MD5 4c13f13083a984ca1aa8e9285d89abd9
BLAKE2b-256 91fd0b93f669be6903065afa715ee9dddd541821ec3c7900393136966c131ef7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2149b0ff0c14cd2f91b827c06899e7aeb90e731dc2c081175443daf40d7aa498
MD5 3fe360f64e1536dc71d19024cd2c7c14
BLAKE2b-256 fa3007c68ddd0198f8da952b14e45ce4be1015432a5d70f405acbda364564777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 22c26504bcad50644402185173fde51deb100ec2e508cc24af0cbf0bc8224472
MD5 7a491fce7b375c1d4a6853a4ccccbd64
BLAKE2b-256 98b374415751e769205d4262246c04ec052066b82528b7303d660865edfe07e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f652601f7b4bf4a77ec500300a830c89a4c90d97cc1146d2cd3d2d9339101ade
MD5 7703d0dfc36d40345ecf5fa85d2d62d6
BLAKE2b-256 21da732a0d5aa980dcd2cd3bde16f2c304edf160c6f53000ff130b680b8934d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f818449ec14e51dd0e139a41baef18689ef31a6bccd90a5139848a6dc5f25de7
MD5 fdb55fa861d06ee3df8c56d9d515c3e9
BLAKE2b-256 fbe4a4db98901cd861058d3f0162a55cc23b287ce0d902735aaa162cd3225aef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 175472a6afad0dd5e1bf326e477aecc67ed3f891d2bf4da675fc85c7012cb510
MD5 1d16a4b15d4bb0ff2dd5a8e5c90235a4
BLAKE2b-256 9e0588575bac53e97773548825d1ca25c86ec830b02b506ef937bf18ccad816a

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab057abcf8d7c190f7ce313e44d00f2244c9743e1140be268d54396169b71205
MD5 cabd656724063593983994d8920ae82a
BLAKE2b-256 62ecc188ef362ba0d2a4e9071aff4d69a5a3bde2f8a282ebc8e49d9aa4efd4b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b7a6c2661f287cc48f970c0bd59aa4a04c26b9626db7355be3244a98e88ff7cc
MD5 64a320118e70894209bee254744f2082
BLAKE2b-256 3b0293b05e5b719b2961ec268a8616a0a70dc40145ccd7f9022e3f644c9a3b2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f23829567c37acafa1766b36b9b142d4a011fbe5256807f22a3ce426af44edd6
MD5 f98b08b5f9f595386531270a51d8b799
BLAKE2b-256 c06e3300da2d5661f98a54bb5f2eb486b9330dd39d0d52f95a3048af7d1f9665

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 005fff211c90d5c6bbb8d6b6a95aa1fc4bc5e66b819520e93fd40d66c82cc250
MD5 b7f7bbeafa634b2f981553342df62d9b
BLAKE2b-256 080e6356ad87ed6482b6ac82f355b31bc287eadb072cd63b279ebade67f5f1dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ad4f205c9f62d97f849caa1504a4b614b19cc58c4ad2f8533f184f1e0d2b189a
MD5 140b5e62a08ad9d47034315184b574c2
BLAKE2b-256 2556f38b358a5ff593fa204aa4b86b869e4573fcbe13ef83877d12180dadfa13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1f509f7cb840d68562a5d4b6eeb8182c18201b91aee17595aad9e10e9f7d6104
MD5 adb05c80750f7bfa55479080a996eec1
BLAKE2b-256 3a645433320d76942b843b123f8596c27c6b80e6ef7307a08888b9cddd70a685

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bf082adf15e75200aff75b6ba0163405a08e56d047128d57249b90808b0acfeb
MD5 1211b859c338c72701129eabc60ae5d9
BLAKE2b-256 62e4283a6591960ec242f687d9ae2203022f69a85da131a94f78e0f888b51cb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 745fd50b0db7fadc337af9fe1ed5058c0d52913ea93c63335a8f7e43d50c86a5
MD5 5b59fc27eb3935ee614183a4abeddac2
BLAKE2b-256 3c62ec9cd4fb873a33637fbfcb0a1e3ddab01359d92b77707a2c0a097d528908

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d461e421777defa7f081946924df7f7c531cbf09ec9cff1eb643e985094694cd
MD5 324f06f1ec9c5b150340dad645f29a00
BLAKE2b-256 216a0f36162e33d44a2d8699571b359644ad2bfd3855d582eeafb232bf3e954b

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8bcc0588acb4fad00f0b26c68ab35e3da94c29bc538de0e119e783c7ce400792
MD5 3db2ec24d4f772fb62ef30fcd9de5368
BLAKE2b-256 4b3f3acefb1c2122f3486fb70de0d3277d18a67c9aab06fd6bc0ba6c5c1bc261

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 afa604ae178f6eea583ea8c3181cbf4b3fd4d45a20a86b5bbf115afabebb91f0
MD5 174d44b94f6c0fc78010b6e549420f8a
BLAKE2b-256 87fd50a3027cf7ee5913b58625f386968dcba7249f62e19b1ff9766906ed3cd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d3c2d2ab75b26f9b59190a60ce7540ba785e05c4f2c328b0b6d5d45e0bdbba7
MD5 0609d91f50d70b4b7626b5df2d8d3bb7
BLAKE2b-256 cd8dcf70cfa7efe1a685ead6c3e3b748e1bf9625d0d47797ce2f99e0b880581c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8c6bddb86603f2d96777004b6786b4bb3cde24eb0ec03254b5ab48c79d628cee
MD5 259c8483b6c468b3918e2ba68ba51737
BLAKE2b-256 7bf2984b9424385a2c12ebf880e51238aff9164ff8ca65b3240c2072e29ff466

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5c2d99561a3d4a956ee0865f7ddafa94d61203227196cc85914beb736c500ad1
MD5 a05e04534ea724304e87891341060e9f
BLAKE2b-256 7a130b1d75b303c3bc997a29d28a002cda04414ffa1b916181b166fdfcb8478a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c0e9406d98cfa0e758b25a65717e77e8c5319b393bca03db6237e11220e05375
MD5 5cfcf823cf6e2bca736f25a69d3ccb2b
BLAKE2b-256 ae0c724b6f3cd630896316582485602de77c9a5aa8851e110fb4b55d29b47b32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 21b3af91ff7b2d2a2820ae026e69667a884342843fe5bb5b9953d39920a40074
MD5 e995b4f5dd5c71007fa062847bc6b583
BLAKE2b-256 8f4bfdf8a676e7bdab0c7909ae0e65a8c52f3b27f2eafd660eeb3d16ab689d00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a192feb8caf329bea3eb856774d3e2fec26f86dc1a1ac130393142517aa92178
MD5 204044f74373e29d713f01bf0baaeb6f
BLAKE2b-256 ba1c474212a1e514c2bf4288e43c568be5fd848f306b2f47051a3b1419534a88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3df11f9d6ddee052f76533b081c501560bacb694c5d1f572efdeae12a25e2b4a
MD5 0aaf466f8bcbb8b4bb3fd5f78e96f0d0
BLAKE2b-256 f5eb3b9657066471db8770fd2d78cd4bbcc49853ff31565084ae6d189c66da63

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f35757d43c60485d6b86eec2c5a17f451579bcb4deec96f63bbb90126694667a
MD5 b05274fd14283240c7c60d37a75fe015
BLAKE2b-256 e132f65992192d06f5abde680fb94848e1f064dc5f60fc46da2d4b73ec6e17d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ae8fc040bb48076d80c2b0710e07bf51f2ab535168d17f96b56408db5c723f06
MD5 8e88eab6fe9378cfb7305204fed1bc18
BLAKE2b-256 f1a75b49b425abbcfc2887097fcb8784b769b97a3bc71aa2f886fb9eb92d0e67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4ee37c19c4899111618ec4b996373a3bf8383a741b3cda2c379c54926e3b4c7
MD5 8ae010a4bae17b27e4c5c50385c5eb32
BLAKE2b-256 b969e58f7898e85c7d95d4d5bcc6acec461e88116f129218f2a5055ab89f6d09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e8613792fbb5c4b695b86876c2706259598ffc73f9072c55e5d6d60032b43c5
MD5 169d727085f34ff5e35cf362708b51d4
BLAKE2b-256 bfdad9fff194879c4a3bfd8accb2434a32bfa8ee2b8d38b0b7938edc6b051cbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4c386e5431b8f8012b37571e1c02b274431aa1a061128b50a739b646d8f634fb
MD5 5c9eac5081fac457e9b1663e38e82b79
BLAKE2b-256 31083ba6e08a5fe9672e35dd5f353659878eeb22d85ae28c6a312c38e1f49db6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0c008eb0ac4be9010ef4c24ecd5c8b93994b9f22417a521eb63f6d278c4b5799
MD5 2eac9bc1a4b2003195ab02b0824c2a51
BLAKE2b-256 d8daeaad5464fe0f9944a5b808b53dece2b1b2de5b512e19d8724c21f5b05bc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f48a0f9e93508202f4769f0d67cfb6885dc4aa719735bdb0907c44f441d8af05
MD5 37295e61b4aa85ce96bf5d9a2353b89d
BLAKE2b-256 b8ac9271a88b1d27864051d1e6143411b4989a5e9806f4bd7b955a3f5eb9b3ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3279da1deeefd7e031f080f9ced6d7796aea0df98b870aac6488700edb582247
MD5 413bcdda16b502b8e3be2a61bd3f1073
BLAKE2b-256 b0822790e9c87acdcde6c4eb8bbf4435ea491d425bf2ead4859e1aed65535cb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91e86488651f1d02d0deb3e30c0fbda335674d20504abb83781241c9e6bcd823
MD5 5ce7fca44fd6661552c8b77803bae7d1
BLAKE2b-256 c6c60b2c52dccf6752e2fef9fe05f0a9d6ce1cf2168f6fa6db773884b7b8e046

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 780e3eef0b99576d3545f9bb56c77978ed67d829b550b2f3ad66fdc440158d72
MD5 2d4d705ee64a659740a4474ae19690f7
BLAKE2b-256 967443c3b7cba55a379bb2e53c7524b8f7fd6843dd9aed99e0beb1df290855c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d51e77e97d7d9ef5e6ef70c3084ca60bccd8eed75d857f6bc8778d4fb5ee8cab
MD5 6c29dd76583909b129017ea2a36132c1
BLAKE2b-256 c19cbce97bb78fd272896ed9b55d838d92a2ceeeee20fbc97c136f5c3d909c19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed0c05978e9dd5aad49f185bf854865c86374cc3b155e64aa74f1c89caf5c23a
MD5 92cea01529bc1c936fcb58bb8899ac09
BLAKE2b-256 8481492a7004f533830274eae60cb4e9cac34be45e70d326b226a6132a13bb42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf1550302b30fc9650e19c800242ce3fe383466a87c2c6757ef8e5d5b49f6c32
MD5 1ef64a9fbdd367419a93514f20557488
BLAKE2b-256 8878b60e7cb1bb8e785f836476d1855cc52a5f4100fc5f2d68dc9a43840dd284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 1caf62f2e616b46604d5372e1c920375dda3ab87033216be7628893e267c1fda
MD5 6f9457a1ac34f22c273543475bf78d95
BLAKE2b-256 675a0007897788f1e402d750053221feed65ccf73a118f1972f8cb2c116530ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 79628dc8b501d44faf50e24ee0d403fe502d070a6b59b378a3f6a99f77d9d0e7
MD5 b3dd7111d2cc195d57c2b67e9070596b
BLAKE2b-256 edb86bca2c5c13ba5b30697a3db1abdfff53add77da93f74fae8546daf7c2201

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 70561b3a5fdbbc5ca80f2589addabe9b7e838e6431657037034b9df8d03561b4
MD5 d380a265f881da89604324390ac1ae35
BLAKE2b-256 b072684dc60fd563543d9d4d110b0f80f2ea229bd7b0c900e3b174a1e0d12400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c37d24f551a4d4d77d70845dffd41cc7efdf850b6dc6ff5da9909b1bb4ed9aff
MD5 f7a04c58c1b958af1d8800fdf6be8514
BLAKE2b-256 addf9dcd4f1d6d1f8fddf4ae8667eb22661caadbf3641311df5e092c6b1afbe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d61b83d1cca65814d3874fff97aab547ffb3c1c20f2a6c7360e368d1a6895cbf
MD5 b05f00c6d9f39fd902e9d5ac764211a3
BLAKE2b-256 13bedf46379a2b00df3be935fff26622440f1a2cd2586d8b2dc03c5b6cd89a39

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b3e03de24e707145c6639f2b30047d043e454ca01d67b0cd723b3537aec0db7c
MD5 5075ef04c0df846a3ff166d3c7bfdef6
BLAKE2b-256 d21e3d104cc424ad021aa19a707971bc05825f11381a0099a1f81bba6fd031c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.3-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.3-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.3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0d8d37424c0177d64ca01615a5b7970b26cc3a915da9f6d475509c376a9c103d
MD5 76f654ff3ad043165b691fe5a471a726
BLAKE2b-256 03c41c28269dc68922249136ba318fcf25ad4501aabf721393942b456bcd2aa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4789ab6416f1edcd60bfc571e34c2070125f91a55161f79d2d4afeceb5b91e6
MD5 23709a0c85d4ffef4226922c48fbd8fa
BLAKE2b-256 c72b669ecf369106cd49ebc7fb78eb4c0258e8a86e4d8c58472163b027480d16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d11b98ca65c6a4a3c47fdac09b0cdfcb7c4c59f1438793da53222ed412c6dd8
MD5 35832462409be97ea36b3a563c1c69af
BLAKE2b-256 41012daab333b788a9f2182f0a256effd076ada6169f6b98e22ac72675045085

See more details on using hashes here.

Provenance

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