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.2.tar.gz (10.3 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.2-cp314-cp314t-win_arm64.whl (16.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

py_doubly_linked_list-0.1.2-cp314-cp314t-win_amd64.whl (17.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

py_doubly_linked_list-0.1.2-cp314-cp314t-win32.whl (16.3 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (52.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (54.8 kB view details)

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

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

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

py_doubly_linked_list-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl (15.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

py_doubly_linked_list-0.1.2-cp314-cp314t-macosx_10_15_x86_64.whl (15.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

py_doubly_linked_list-0.1.2-cp314-cp314-win_amd64.whl (16.8 kB view details)

Uploaded CPython 3.14Windows x86-64

py_doubly_linked_list-0.1.2-cp314-cp314-win32.whl (15.7 kB view details)

Uploaded CPython 3.14Windows x86

py_doubly_linked_list-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (44.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (43.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.7 kB view details)

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

py_doubly_linked_list-0.1.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.8 kB view details)

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

py_doubly_linked_list-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (15.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

py_doubly_linked_list-0.1.2-cp314-cp314-macosx_10_15_x86_64.whl (15.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

py_doubly_linked_list-0.1.2-cp313-cp313-win_arm64.whl (15.7 kB view details)

Uploaded CPython 3.13Windows ARM64

py_doubly_linked_list-0.1.2-cp313-cp313-win_amd64.whl (16.5 kB view details)

Uploaded CPython 3.13Windows x86-64

py_doubly_linked_list-0.1.2-cp313-cp313-win32.whl (15.4 kB view details)

Uploaded CPython 3.13Windows x86

py_doubly_linked_list-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (43.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (42.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.2 kB view details)

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

py_doubly_linked_list-0.1.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.5 kB view details)

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

py_doubly_linked_list-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (15.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

py_doubly_linked_list-0.1.2-cp313-cp313-macosx_10_13_x86_64.whl (15.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

py_doubly_linked_list-0.1.2-cp312-cp312-win_arm64.whl (15.7 kB view details)

Uploaded CPython 3.12Windows ARM64

py_doubly_linked_list-0.1.2-cp312-cp312-win_amd64.whl (16.5 kB view details)

Uploaded CPython 3.12Windows x86-64

py_doubly_linked_list-0.1.2-cp312-cp312-win32.whl (15.4 kB view details)

Uploaded CPython 3.12Windows x86

py_doubly_linked_list-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (43.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (42.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.1 kB view details)

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

py_doubly_linked_list-0.1.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.5 kB view details)

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

py_doubly_linked_list-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (15.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

py_doubly_linked_list-0.1.2-cp312-cp312-macosx_10_13_x86_64.whl (15.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

py_doubly_linked_list-0.1.2-cp311-cp311-win_arm64.whl (15.6 kB view details)

Uploaded CPython 3.11Windows ARM64

py_doubly_linked_list-0.1.2-cp311-cp311-win_amd64.whl (16.5 kB view details)

Uploaded CPython 3.11Windows x86-64

py_doubly_linked_list-0.1.2-cp311-cp311-win32.whl (15.2 kB view details)

Uploaded CPython 3.11Windows x86

py_doubly_linked_list-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (41.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (41.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.4 kB view details)

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

py_doubly_linked_list-0.1.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.2 kB view details)

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

py_doubly_linked_list-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (15.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

py_doubly_linked_list-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl (15.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

py_doubly_linked_list-0.1.2-cp310-cp310-win_arm64.whl (15.7 kB view details)

Uploaded CPython 3.10Windows ARM64

py_doubly_linked_list-0.1.2-cp310-cp310-win_amd64.whl (16.6 kB view details)

Uploaded CPython 3.10Windows x86-64

py_doubly_linked_list-0.1.2-cp310-cp310-win32.whl (15.3 kB view details)

Uploaded CPython 3.10Windows x86

py_doubly_linked_list-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (43.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (42.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.5 kB view details)

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

py_doubly_linked_list-0.1.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.2 kB view details)

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

py_doubly_linked_list-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (15.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

py_doubly_linked_list-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl (15.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

py_doubly_linked_list-0.1.2-cp39-cp39-win_arm64.whl (15.7 kB view details)

Uploaded CPython 3.9Windows ARM64

py_doubly_linked_list-0.1.2-cp39-cp39-win_amd64.whl (16.6 kB view details)

Uploaded CPython 3.9Windows x86-64

py_doubly_linked_list-0.1.2-cp39-cp39-win32.whl (15.3 kB view details)

Uploaded CPython 3.9Windows x86

py_doubly_linked_list-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (43.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

py_doubly_linked_list-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (42.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

py_doubly_linked_list-0.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.3 kB view details)

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

py_doubly_linked_list-0.1.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.0 kB view details)

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

py_doubly_linked_list-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (15.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

py_doubly_linked_list-0.1.2-cp39-cp39-macosx_10_9_x86_64.whl (15.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: py_doubly_linked_list-0.1.2.tar.gz
  • Upload date:
  • Size: 10.3 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.2.tar.gz
Algorithm Hash digest
SHA256 46197ed0da0798b3c80f772a43bf5d8220fad5c56dae60534d39aaa209de6de1
MD5 56ff8471619e3f6f9ab455c25f8d1118
BLAKE2b-256 4f5210c965b878de6e92432b7a0bd5739647a9c6db94ce13c960643404016aaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9085c74a5b34c2ebdf53e69bbb2174d657e0a958299e717b400e3fc94e0fbb70
MD5 f7ccbdd95e7cc63c9ff90e99ec664952
BLAKE2b-256 af7b32a06c6f6254438f605a2ec31c9b87fbbe16755a78db56e9a54252c38598

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 219a966bb6e39a24156b87a3fc6978945b78ea0aeeeb228fb0533115b7795983
MD5 3927f218fe610e284ebf458c1a9105d4
BLAKE2b-256 e78a3cad5add9f754ed832e3f043863ee1fee17be7a9e01166b910a3f9e0eb8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4fe017af7ea6d0ee1937d5ad3a9655173094db71c922157658f950db21dce488
MD5 0148244c04b7a207c18931f2547d4889
BLAKE2b-256 4532e4945bb56a9ace22de07d20e1e255829a5dc6589f131b8cf41d06ed37d3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79ce32186cbacb9a17d2db184f211ed2edf987873bff26e4711b2ad8216149bf
MD5 2a7c8aae7c688202fece1bd135454012
BLAKE2b-256 8adf634078493eb1e2909e87fe7f4af13c881770b9875b481a96dfd39bbfadb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59cc06cdcd0da45f472bbf330e335343091b70c98d788ff503d350b456cea636
MD5 ac96ed3eedec2e09e529ccd5be48005b
BLAKE2b-256 5075a5f14ba0e0908003a8b823cc44db7c74ae10252f50df4d18e440f884b3ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a0fa91901626c186cc65568452ee2b2dd55ffae39ea460507c2f1ad7d937127
MD5 8e5c8649957d3a1056335ce51c34bc31
BLAKE2b-256 ec82306b1d65b4b2fb8dcdc498d1887d8190ae01e50ba0d38a27b91594b90efe

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 41382da6ff7d618a7a7ce2eb4bae2ab54ed5c936a9cf4c8e5993fb30cdeceea9
MD5 3e3ead658c633a77815c59c8bd4edfba
BLAKE2b-256 fa072a35d219bdafd8a42fe712cec8e26811fabbeb2903d2ea18cb3041c57dae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2db5c65ec712fda82c4eb76b01397d5b8d76082854872757f670f9f35b49839f
MD5 46b24ce8bb43010de85244caf395de3e
BLAKE2b-256 029a38b5b82de8b5252a9852b05c0fb3a74f9e4795e2b965c21796bf3fe680ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d4d4f81a49cf133b425cdab82724a1d1a9d3985fd74e5abdf9cf0edb4c8aed2d
MD5 3f1a22dfa174c3e346a0c852b41f7cc7
BLAKE2b-256 079b39459ef40cc5caacf09a37eb11d7228d2040573ead15d5b586597624958b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 14fbc75cd8784da9d1ff715991d3d92d20b91338a3606653f2e952533fb92a4b
MD5 fda3b20adf753aab485dbb78cdf2e5b2
BLAKE2b-256 9e509a43cbb42c05dda1b8b3fb111172fecef827f24987746df7614f1977d326

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9dea828cb7c716e98c54c029f0d15c014ba8df4fd83f4d7d540077faf3e9f7b6
MD5 cbaf2fa626ab3f582b99aa32f2327013
BLAKE2b-256 33876515e43bf1deb2e40c517ccad5c67f01a79147ced3ad5c95fcce9a26ec3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 973c97e1ecd7006a7df0c0d85b2b842661169f75c53e1966cefb2b5848ac7044
MD5 dab2fad6b37aa4f96cc71b061076159e
BLAKE2b-256 e5d65e06b9c51eda3bbfe3ee5114c409e12a61cebb9645c652d07c90a8ab3451

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd9c2f2775965c2a524df3428284998f865bc28cc10fc40306ca7fd1ddc20592
MD5 7d04d08422e528f2737b96104676dadb
BLAKE2b-256 5f5302ae25992a2fd458ad5eb671540138dc0131a7e894cac5115a28bd6a4a9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd95b5ffce0480b393b35f683767d0a3398e09dae60a9084947ab6da0d674bf5
MD5 7f80db9f82067307eef73f5d2b067aee
BLAKE2b-256 cdee62141a6c285a0726d1460c021b6a672fe099e9cb98bbffb3447325ad14d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16f951d96392f4d19725c45aecbcd2f6f79b5426a241f819feab041ff314f650
MD5 ad97473478c652599255fa80522ffd72
BLAKE2b-256 533981e55e724572f32cc45a55684aa9ae1fe22767082039f61ca53b5b18b6bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c0f0762e1e7729d7e62ab4c0a3193fe8f33f3f72dc7f8b9cd18fc61bbca8477c
MD5 8a1df2dfc68b3be1e30f2f90f83d564c
BLAKE2b-256 b683d3d9d1b76b628a2b658b4d43006affd277ab589b263bfdc391315da8801f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a07eb2bb172381bcbea50381ebf9a67522ef3c814da7bccab8bbf65a217aa120
MD5 46b997fe891905dffdc2d4d643a8c841
BLAKE2b-256 35b18fb725939916ba195673a008066fd9e772ead20cc4409ae00a39c4200823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d55b9b6093263e2e7ad6754e9edc6f184ea94d676817b7fbba66233a8dddf76
MD5 5ed4b448b0db7083123351afc56ad463
BLAKE2b-256 a693da52dfeaa464c8650b95a8a0f965d2524cc153dcaa6954492b1c9a956a33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 507807e627f6500052854c4016af1065fe4e79ca726d7017460dc24d71bfdf08
MD5 59248154ce2739baae1e643e24944eb8
BLAKE2b-256 35cac814c9c288a2df33fe1d21a50f87f21ffc2e69a46e69e7843f7953fb11d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 33d725bbedc8aaa125c91167826c411a70d50b3fa1b9d267c280db3b0cad13d6
MD5 37145429474f91b3ced2eca13e3cfc1b
BLAKE2b-256 116455c8a7c22f86940b3ade51fb9741d846d7e37bffda4aedd605f2bf31156a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e99bbe1a9dec09a4d7d1e1837d3bffa6d63653c5bba0517ef9ee9b1967fc598b
MD5 f01b8c324f037e370b3a79f01c8e597f
BLAKE2b-256 4112823dd2bdf8e7e61c83e31c03e652ca645ca6fddf7ad4f708d4d3bc787d6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccd10b3a7553ad58fdcc4bbf68314a0eb2a67a60c8373a964d676104b54d068a
MD5 e678d60ca808fe9fbe1d9e7cf87be1c8
BLAKE2b-256 fd096305cb8df869fc7c4b6566a50464c0154181efb7ace2ed08575b9b8d7f5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56aed2b9fc0c3d166e9dc47e09ec3e26fb726ec19b252bf9f487cfef8e00d335
MD5 29200cf34dc7d017f69b11924e4daec9
BLAKE2b-256 b4ff5fa6ad9d3123eac08f7ba91e7e068b5a1c9e19bf51bb8f68096f4077167a

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e1d212401e4b56e65f5a7d1eb328b844b0bd4370c18548ff747e3a9042401ab
MD5 a78478bdee69114400eade22972352fe
BLAKE2b-256 a4c96e4057c6546245f628148dc1677518d01f2fe672509968feb0707e45f5f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e7430ed210b38eaebaa07328e14a2951a9b4a85b88c3b72f4570294db85e460a
MD5 5f0ddbc01a7d315121fc0917de40225e
BLAKE2b-256 23822e87c1d71c50c00fb2eb3e9f7cb61dbaf8a277b3f771496d732e3e3e2e84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46a08502e91e6e97762816cc8340b409ad4cc39c4f43ed2caeca8eb57185aed9
MD5 5361d878ea4e234d4857ab75e65b5188
BLAKE2b-256 6fc03b30098a6bfd74a292e6a85d4c54078c1392f75774690967f0870f709e72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2882fb26411274646dc3c1aa2ac239a2edf4da280321b653dd1f870038ad08e4
MD5 2ef878f65438f09a1f4a4dfb3eeefc21
BLAKE2b-256 517bf165a5ddefa7fbaef4b5b92b411819d93a89912e4bff0443e87c3e225c27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a73005cac1697b6de14095dfd543005720c7462eb18f16283ef4652a274fd378
MD5 cfe69d1003206a11559f48d19552235e
BLAKE2b-256 0d6da9bf494929a7a60a453928ec2723d3b7127a2e81acc86abffc0abf51e307

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ae42cd6efdc9819734e38639e9d805d3f19071fb1ba663c8b01336809eb07aec
MD5 8fa155b9ec9479571e65bf35214292bb
BLAKE2b-256 82646948dbca1cc560eeafcae5668e47d5e71aa63234848642eaced36e1911c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 279a6feaefc057d963f1ad6cd5e251e2397ef91b6b34e05df20a9106fb9c7d0f
MD5 69894a762fe84d957967b8e989ebcccc
BLAKE2b-256 ca5e05ef27a508947eae6ab205227ba638442d72e4717537251bcbcc40139cde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb08f0429937c4197ac40e446a9546ae983a54e65099c2482b4606b49a821ebe
MD5 759c862130d488cbe72f7b07b97b3757
BLAKE2b-256 aab5f4f130874c4335143ab234b02a1c91edba1c472a72029bf3ae5e6cc80df7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f14956fe34deed664b73ec199db1c9337496548ca65bd0ae9fa50744537c0d1
MD5 349c856000122d603883b315709b4c78
BLAKE2b-256 ca62cef0195797ed37e8ff7298dbe61f1a065bf3ec5c6189d856ebc9dc50c294

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 987fb3e7ac99666e376b6866edeedd32bdc28ffe3d2aad187295ad9ed4e6ee56
MD5 cf80f5c925871741b0533e21275e9a1c
BLAKE2b-256 9ecc7e80c9137ab13f773e37778f005144697d2670a3f0d0a15a74d8f4db6c98

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2b908d6bfa92e37b7c0b1e82e5c9b3430865b1f0a18cc43a765b4b9323659833
MD5 eb2cf9e948c6953fac10a022e559b225
BLAKE2b-256 b5643d8328458953457635e0dfee1187b2942433ea00c85a5c1e47cf8373d70f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 574a4fa233b1cc780519f6efae48ecfdddb3bbccf7efab7b513cfc9d91f9577d
MD5 ec4863b27292e791dfb823d1fd389071
BLAKE2b-256 a1841a937386291b4fb5766fcfff3f3d198ea68ab1bab1be27eb52d41f4ccb10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bccde34bca7dfb017527311a3f1765e9a6f7162981b3529ad00880ebe3bf101a
MD5 d805750dfb11d5e8bd1764ed0a6afa81
BLAKE2b-256 d0ec5ce091fa92c33a5c6486e695de6b3c4b18d96457eca714be57684adb4ab4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6ec81ef0703e2c907f131c9062c5b39ba0ae5952f46b635b362236049e0621bb
MD5 be497f56ea8a1e88888c73a766b403ec
BLAKE2b-256 a97a777158448230d48a154b91cd08d6da55218041a77e07b94792ad74690650

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c86de941f95daeea7fa311db043968d44f9f3e9ebf12d4d40e26c589ec0ecd20
MD5 e7d5ff590dad6bb4e177e725827f763a
BLAKE2b-256 5845d74830fc4dc29703f20f47c2e8484c9daf97e5bcc61edca6a0f621846949

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 75bd4808dfce1939df9e5654a7520cf77e3723daf1ca898afbe39f6754c3cd08
MD5 859908e9b5af11e69d77e7c6ef26d55d
BLAKE2b-256 3cd4d43546e7f09c191b10dd07631f1721c23260780d51d36476052eb6431cff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9fdb6a28750ad2978d73265cc4cbdf9a7e43550fab580b4d72885938d200669
MD5 fbc4834c49c5b08b4342518bb32f4e4f
BLAKE2b-256 90dd5db386e54f40665653b5b0a14fdb0fb6be29a91f1a5bc489e7779c058a16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e999ee346943dc89e136ed576805228d9508f497b8a74ce893f0ed48b58d30ae
MD5 921ea2f3b911ad2ea325285be5ec4ea6
BLAKE2b-256 a95b7542641502edc4d19c5e33b0e146f2805cdffbc0444cdbe56de602eb2572

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21ec2a94db406601db88306802efec8d79b25066dcd17722b9b40a0e8962d17c
MD5 18fd63b76326c7205ea528edf2b61f24
BLAKE2b-256 9ec0bc266a1e57016591a3f0c8f0001299927576c981973f1de8469af2b3b304

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a5fb4d433525ceeeedf6bae85cce9f845ef47de31c48008dfcfc22d09122ec19
MD5 fea768fbb75c93c33f2f98e190f19acb
BLAKE2b-256 e2c343611659fadb4c996e6d7b696dc53a7ba84abb9403cbc0d1a64ebfd7f719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a313a84514032d0a37ee22c974f6a99a37215e4c7870638d247e0d0cd752ca8e
MD5 7e73a29ad6652ae01f39e0afc3aec881
BLAKE2b-256 b1b789328a934ab89e99cd378fb3b7fd1ff554299165b49c33c71483c6fe9919

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a63de6b6b83bb660e3bc46000430809bf9a32904921d42801eff93f9ff4846de
MD5 49402dcf4262d1978067f096e72c3590
BLAKE2b-256 a00e432bb94afcaa30a5f470b012f756098cf88eeee257617551e3c0c5c400ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 20bf45cd6756771b43bec2b762228fdd4d2553177356cfb73751b24c82503d9c
MD5 a6c8da675d95862ac9d22f5e24806216
BLAKE2b-256 4cfebf548e13234324fdd9aea6334a13702e5d7bcfa20b97df551a1a0f4a0124

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6ab6e08d8e61d6e8b15c676e5991b89039769681344a97ffd922df408cd9ac4b
MD5 b2f019291fe05126b9853f4194f8b060
BLAKE2b-256 fd067e0aa4fd0c61ae268c2af0ced0aa02a5c3142f390c1ad9d912199a3a2b51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1ea6a5a151c6c0fcf302d707183efac5be6f810998a9b52622c0ea4c2b7f88bf
MD5 7f4bcfb14179e98bdbc773ea1a1e2fea
BLAKE2b-256 898cb53ceaedc582520830f10cd9a9566a06e01f671185eba4a5817a20863b96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea00afcb443bd0c11dc16161e1dcc30554b0504faeb7c289a9a13b3365fc951e
MD5 43afaacf65e3d9fa9f44753a3f8a9b49
BLAKE2b-256 0e525f8997da5337fc2dd9de8cce35b73b06c919a09a70b1e97da5230751578f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbae6b5f1ea69d34901b9b37133aaa6d1d8bde3f6889b7ccec3e59d3a2b0e0ae
MD5 ff5667c913baf2b5b946eae4051fabd3
BLAKE2b-256 72bd19466e459f45f61b90d26e15cb186fa31a6dc112e8a47d0de0e10bf695f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3347e79f45954ae157e88d78ae1af005f1823fcf7f5a0607f33252bea4c8d5b2
MD5 3cfbff84d3010fdbfea0fe10e7c67012
BLAKE2b-256 fbc85bd3b307664d0c65d1642c6d5524591256a397095ceb2f3315dca673e072

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 816060fb1b59cf194a885b3d4438a6208ac5189ba43ecfcd65f488a44d86ddad
MD5 99178e7fb6b0f13042bd9a019f3ea9b3
BLAKE2b-256 3811e895a06ee366a35af8824552bfc093661c1fd0149f99053f19cb0473c4df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e2a9b1f2f929b11e79d77d37bc4c4deaf6c3ffce56a90d260b17e4a1469aae7
MD5 ce83ba8f68ce8dfae7f3b3d648c3a84c
BLAKE2b-256 7af53ad42db1d30275852168eb8c23d956fb24f68b4f7a2653a95e9d58d6cc84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 972892f58439ef441ac55ab941730eed8d238255926f3926de826ec7751241e8
MD5 67d9ed055a08a9ea30c312696b7c62c6
BLAKE2b-256 68bf77262c423d94c088b330962a5e2fda778031da3367053f4c03593d3678f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 e718bdb4228b5ecfb64109c7b6d83ca9b09588e00d37457e9fbe79a91446e084
MD5 b98d98ae75c603251ebf44917249f751
BLAKE2b-256 ed90a7cda0e0abbe2ab8c433490844118fd8e51a1785943d98d1df5712d3a62e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9b6ce41796cab073bec0e36452b00268f1da578e70816ae13a5089960198f589
MD5 cb41124e84f72c08fb3dd219ffe46db3
BLAKE2b-256 e3e1f7a4904db79ecaae2a6e201a3abd6c16df20ba11f22c59d847024d58acde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6692739b78d1ba1060d7aca7d805515e9c6e658991aa05f2b72719cce7b1497a
MD5 127644ebf79b6cba05b041fe6bd967ca
BLAKE2b-256 a21a2779d6829344c780be198444ff7658b663eea02d8dbaad028bf9717e2f63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b8436a0024c07f7b2b810a220c9def6ac79b71fe072ddec293861719cd4ba2e
MD5 162e3f63b4e791f0a1483ac04abba0d3
BLAKE2b-256 15b7f4180a216d47d2eb5bc74beb3747fa161750c249ed0775e2fb8e8bb8ff38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2ed2bb6ba57bdc788e51e5ff857aa75341ece8f71fe7bf8382c4e90bdbbe819
MD5 b19c1220ff57818b049fea9f971738b6
BLAKE2b-256 c620cdd0c3002e57e31eaf4cdd49ebe9a6560520359180e98144ff24bbaa2e5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ebddbec35de3a467afa228634e75bf546a74a50e4a5cbf6ad7f9cdb6e33f8d5
MD5 bfdb168908949627cc1015c96b78f69e
BLAKE2b-256 6e767ae10c8bbbec359fcc1499d8fbc39d3fe5139215ab38ffffb845263019ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_doubly_linked_list-0.1.2-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.2-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.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ed2dddd42d529bca13e7fb633a9567c2c36bb302b25e1c13cbb92707f0d05267
MD5 2001751fef754a695b056c08ed6af29f
BLAKE2b-256 56a5748ceafea2eee29b592c0512b8212e5fa9c44c6d108d988f5b7b0943e754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d51d633b1c0dda95eed216328151d502672ef735f1803608e26f1f8bc0453749
MD5 84f4a67e0ba18f54e24f35cfb1b7c36f
BLAKE2b-256 10ea7b9dbf7e037dc25b662e05fae144244d1d20604dc24a8fada64fc20e9092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for py_doubly_linked_list-0.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2608cb60082edb8c86ec71c7e5abbd2ec923441c115b02424173f50a48c9e408
MD5 40e9c444fc54fc13101da73622ff2cc4
BLAKE2b-256 6810ab3f540ed908b38cee0810c4ab5a158a05f2043d4b7170409f61dfe140a5

See more details on using hashes here.

Provenance

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