Skip to main content

No project description provided

Project description

Small, C++-based python library to display async animations, counters, and progress bars.

Build status pypi

Installation: pip install barkeep


  • Display a waiting animation with a message:

    import time
    import barkeep as bk
    
    anim = bk.Animation(message="Working")
    anim.show()
    time.sleep(10)  # do work
    anim.done()
    
  • Supports several styles:

    anim = bk.Animation(message="Working", style=bk.Earth)
    
  • Display a counter to monitor a numeric variable while waiting:

    c = bk.Counter(message="Reading lines", speed=1.0, speed_unit="line/s")
    c.show()
    for i in range(505):
        time.sleep(0.013)  # read & process line
        c += 1
    c.done()
    
  • Display a progress bar to monitor a numeric variable and measure its completion by comparing against a total:

    bar = bk.ProgressBar(message="Reading lines", speed=1.0, speed_unit="line/s", total=505)
    bar.show()
    for i in range(505):
        time.sleep(0.013)  # read & process line
        bar += 1
    bar.done()
    
  • Combine diplays using | operator to monitor multiple variables:

    import random
    
    sents = bk.ProgressBar(total=1010, message="Sents")
    toks = bk.Counter(message="Toks", speed_unit="tok/s", speed=1.0)
    bar = sents | toks
    bar.show()
    for i in range(1010):
        # do work
        time.sleep(0.013)
        sents += 1
        toks += 1 + random.randrange(5)
    bar.done()
    
  • Use "no tty" mode to, e.g., output to log files:

    bar = bk.ProgressBar(total=401, message="Sents", speed=1.0, interval=1.0, no_tty=True)
    bar.show()
    for i in range(401):
        time.sleep(0.013)
        bar += 1
    bar.done()
    

    no_tty achieves two things:

    • Change the delimiter from \r to \n to avoid wonky looking output in your log files.
    • Change the default interval to a minute to avoid overwhelming logs (in the example above, we set the interval ourselves explicitly).

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

barkeep-0.1.4.tar.gz (271.9 kB view details)

Uploaded Source

Built Distributions

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

barkeep-0.1.4-cp312-cp312-musllinux_1_1_x86_64.whl (839.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

barkeep-0.1.4-cp312-cp312-musllinux_1_1_s390x.whl (886.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ s390x

barkeep-0.1.4-cp312-cp312-musllinux_1_1_ppc64le.whl (888.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ppc64le

barkeep-0.1.4-cp312-cp312-musllinux_1_1_i686.whl (905.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

barkeep-0.1.4-cp312-cp312-musllinux_1_1_aarch64.whl (817.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

barkeep-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

barkeep-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (345.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

barkeep-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

barkeep-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (366.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

barkeep-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

barkeep-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (274.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

barkeep-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

barkeep-0.1.4-cp311-cp311-musllinux_1_1_x86_64.whl (842.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

barkeep-0.1.4-cp311-cp311-musllinux_1_1_s390x.whl (888.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

barkeep-0.1.4-cp311-cp311-musllinux_1_1_ppc64le.whl (892.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

barkeep-0.1.4-cp311-cp311-musllinux_1_1_i686.whl (907.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

barkeep-0.1.4-cp311-cp311-musllinux_1_1_aarch64.whl (820.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

barkeep-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (350.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

barkeep-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (343.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

barkeep-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

barkeep-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (365.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

barkeep-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

barkeep-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (274.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

barkeep-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

barkeep-0.1.4-cp310-cp310-musllinux_1_1_x86_64.whl (840.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

barkeep-0.1.4-cp310-cp310-musllinux_1_1_s390x.whl (887.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

barkeep-0.1.4-cp310-cp310-musllinux_1_1_ppc64le.whl (890.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

barkeep-0.1.4-cp310-cp310-musllinux_1_1_i686.whl (905.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

barkeep-0.1.4-cp310-cp310-musllinux_1_1_aarch64.whl (819.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

barkeep-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (350.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

barkeep-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (342.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

barkeep-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

barkeep-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (364.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

barkeep-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

barkeep-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (273.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

barkeep-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

barkeep-0.1.4-cp39-cp39-musllinux_1_1_x86_64.whl (840.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

barkeep-0.1.4-cp39-cp39-musllinux_1_1_s390x.whl (887.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

barkeep-0.1.4-cp39-cp39-musllinux_1_1_ppc64le.whl (891.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

barkeep-0.1.4-cp39-cp39-musllinux_1_1_i686.whl (906.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

barkeep-0.1.4-cp39-cp39-musllinux_1_1_aarch64.whl (819.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

barkeep-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (350.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

barkeep-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (342.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

barkeep-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

barkeep-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (365.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

barkeep-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

barkeep-0.1.4-cp39-cp39-macosx_11_0_arm64.whl (273.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

barkeep-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: barkeep-0.1.4.tar.gz
  • Upload date:
  • Size: 271.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for barkeep-0.1.4.tar.gz
Algorithm Hash digest
SHA256 b334aac698477add4bca90cc5864dfe37cb56a49c6723753d73540ce0da6294a
MD5 5ea38902d17f760c41df40a83d66bbd2
BLAKE2b-256 d83061f5949b317940eb9a9bf7ba5a6f679a73c0c5599f246dda87cce03f3d31

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7ed4c4ac8ea026e6d510faba6431ef76eb8f330825d8d4b32b6caa8498ac4502
MD5 5997a27ec019dcec50d43238b7d64913
BLAKE2b-256 2a3e00a5022da700036a31538357b154b0a0e9dacd84b6b69946b7910e0a473d

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 30e3d401093bf1ef117f243107ec4feb0d68167d05cf0aab06cdae6f7e13ac36
MD5 662e5736ac9ee446dae4bb90ccc4ee51
BLAKE2b-256 224dbd46953b1a6d35bc558b8556346f69dffb098d325ddd16e4815029d4a6f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp312-cp312-musllinux_1_1_s390x.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 3d273de9bb5a7dbef7eb12daf66864d52a540304370555a2ae828187e2c67cb4
MD5 9881cf1b3bcd6b51d6e812d8d1d13af8
BLAKE2b-256 567b795e14bf9a5c8ec23d70530f4d72978038e0ce50c24cca51cdb9e8fc947d

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp312-cp312-musllinux_1_1_ppc64le.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f52f5fa5b2ca685abae66a2758df228f8e7275a2a7b12ed7a774e10ab6fa6198
MD5 616cb06f4fa2f490ac81bd97faba1ee6
BLAKE2b-256 d1e64599aed29d6a165e290a11e2c1ed91de1dfe37c1ac36f7f98cc37c8efe60

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp312-cp312-musllinux_1_1_i686.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 769afeac3fcd24b14561643cb40848a43dda8d7aa60aa14e6934c6b8fc18081f
MD5 b02c4ba06232a89592ce0b624c795535
BLAKE2b-256 4a55847aec42e4a62944edf6b1c1ff0dff5341a6404ce85944631a3b3f0920cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d229c701b9f2e3491e9caeeff933d0fbe2ebd93b11b908d937f1e1aa06980800
MD5 668fdd548c1200e28f7ec20c0a10f2ec
BLAKE2b-256 6dbea0fab521b4c2cadf3caf3e19552a97fa465fdacf23a337dad7e35a2ab4b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6325a2a4671120de2152f06fc62c4848ddb1420e89226a6a159e5fc03dc03bc
MD5 ab09a0dcccdf80325c85ce8770596e81
BLAKE2b-256 0044d270997eb948b8e31b8138e0adbde486755d31c0f1fbf7d1b9f297f47a82

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 647c2f9fd2dd47ef6cd5f660d34b6ae6239f3abcc9d0d846a849c494c630b7b9
MD5 9fbad73931c18dbc9714253bb92c7272
BLAKE2b-256 e86513339b90c0fb1e1614fac92f4f4294d037785aeb40eff737c3aa612a7213

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bec9b5f72d94db3a7dbc999b03ee5c54213ed06e26d03da5d5e305a7a1ad7b1
MD5 dfaf8809f7243a2780e6dc2ea2d34e55
BLAKE2b-256 38a921cead0b69ff5d2d323af518fc5b6982d73d23c5ade65948c1f34a0f2b95

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c142dc25de365df04a92e37fab445fc274ad32f71a93b0ae5523d8599609df77
MD5 a903723f3b1bf6413caa708e115934cb
BLAKE2b-256 59ef56260f7d3e13d2007c718de6d444b07ac6e4361d6aee73252ca066224be1

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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

File details

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

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ecfa05be830382aeec9a9c7b01597be0b67ab88af4821f7df6fc9e307398983
MD5 2ef2f158e8913f738d75ab3a5fe4531f
BLAKE2b-256 b88fbbce7916d99c451c99cd5bf5a977219e5cb81a5b829053267fab4d03976b

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58c4ef2aee7fb9a91a543bd78f807401b04f21bb0e6544e2b3b9078eea1f0225
MD5 228240fea023a1fd9ae995c87b30ffde
BLAKE2b-256 eece93e976860afa40ba5502755fe1489f96bf3af2ca9f6dea5c325fa13abc19

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 61bb48f4f8c182e9efd76e41f6143d6150cc8199feb58bb2c2debdd87276fb74
MD5 3465849f6352addad6f957d3e5733266
BLAKE2b-256 688ffedb6a82a72e3c38ae6f2a7d104c466ae19a082318298d0eaf3093360162

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 777f8d878edba97fb30f43a0320914a0a39363ffb7840150eea62dd59e5cac12
MD5 9311117e0c419f44bece560b31e3b413
BLAKE2b-256 354fee9827248008ce93147b2b2c778143dd372dc7fecf169eaa42b3198af717

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp311-cp311-musllinux_1_1_s390x.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 2311f9912157324b915a1b4460318b63cc835d2a815a6ce1fe95483c9c36bdd6
MD5 bcb14ad6d079a68d3871331ba35915e4
BLAKE2b-256 595966517f867b127ae963e3e5fd23fa8a5aab9f4af1fddb30ed7c5da8a1c793

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp311-cp311-musllinux_1_1_ppc64le.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f9b9cdad04e09f42825aa6b4e5a4bf140680c05e6b7c9cb117a95f65dc5deb8d
MD5 0a2e4d496667b7483698a069156f7afa
BLAKE2b-256 3a83fa34ba48c3510f1e20366965efa8f6782bc408c9d4140eddcda3d5ccff09

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp311-cp311-musllinux_1_1_i686.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3e4d0ba6062ea32d8dd183cd11e054a4fed0c3785819d9ed800fd1bd0bfdc366
MD5 c505ba009ebd9e9245b9a0dbd985a68d
BLAKE2b-256 eb5044fad05b4b9d8e7d7b5461a5efbc1ab8b716d7f100f0ecdcc6cadaa98de5

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18dc35e656defbe7c1fc50a9f002a2f1e505097d4fe02ac8f6215dcd7998f17d
MD5 3283c3e1ee783772deadc3e0a170eba9
BLAKE2b-256 e6c49a38e375863b25fa185b7e469cb2080d09f49cda8d1d16d58c28b22c269d

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87fd6deef4b46621d7ca9024a2cbc7f0cb72d41a2e09f829a8232101d0702902
MD5 211a5ea32c4573670451471315a40817
BLAKE2b-256 61d8b02420ba89eb87f772973a07f750e9247a4b1abcc64f8b41602a4a38a219

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b68c216962a6070962bf5244c90eacf4f6d1b6f58b5810cec7936d061390934
MD5 c8c8c0fdba9f040f2bf5a9f1780f082c
BLAKE2b-256 016c2ed2ba82f4fdeb1d1727eb832367e83f2681caf412963e57fd9dc291c9d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba70288f02ad139e10c8bde517919ca48ac09df9ecf682f4df731dbfe9f08744
MD5 e5dbe6d4ded774f12bc6a66749cf15d5
BLAKE2b-256 94bc0c2ddedb1c23dba2cf289a1f295efe29d8e62000dc703b939dedd193fafd

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffaaf5770824765b21860b3cece533f96c51ae24e185ba200b2427c879d0234a
MD5 f849fb00e01c839a9d4ff49416af589e
BLAKE2b-256 a3da5dbbfd70d49c0e3b38e3f01660a33b406d2cded6c64940c942f67304c075

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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

File details

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

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d299de384f714f884bbbd793b47ff5f02a7dc8bf16548bf41cc51c8cc3203f76
MD5 67415edb4f5080ead158f23464a0657a
BLAKE2b-256 91b839a8f24a97d2405ccb97a443a41cfe71ac58c72d1b459c9aa4c33bb062eb

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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

File details

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

File metadata

File hashes

Hashes for barkeep-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 826b9de883f73b2052385a45270a3de019721e926b9fd8dce4610ed3fad15f4a
MD5 ca6beee418e194ed9324320fd2bf007e
BLAKE2b-256 40d07c1141f705448df3536e9065e7d9a515a2d25af3ee22a90147c677776174

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7e6bb617cc7fe4d8876fb7c8a4f887d0cc77b0e50dfa87e3d5494d939eeb2694
MD5 d5eafdf429bf934cbd583added55376e
BLAKE2b-256 1cb513576d8033ed82db5cc3cf73b5bc25fdde71a65cd6e0ff70e379db9192a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4e8d02a5517f642843aeef181da8dff702fdd4274b0df968155b39f87878673f
MD5 d242dce598db90adaefdc2b97bd46502
BLAKE2b-256 4f00ba0571f86bb75709090042c547f3ee72df32d7f00eff1849b7fa9d3473ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp310-cp310-musllinux_1_1_s390x.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 2cbb15a7696c1c01e559691dcaaa867b0a2e437092d259a4f5cb440c6b336481
MD5 196a876282dc732dcd3cc23c3b7bde82
BLAKE2b-256 6d4c799e8aee22ea2ed986aa9f0fc3ea7ad34c40ea1f1243155d21838a29150d

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp310-cp310-musllinux_1_1_ppc64le.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2e5bddd9409f9fd01ba6dcbd68a602010b96b1b2ed0a3c8f0582645948871d9c
MD5 a7b93a61e35ab60db2bf4290b1a2b4e3
BLAKE2b-256 e0e14ecc7f741c17383a6a648e805b68ab92dd52fea995759622d3c10ad2d522

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp310-cp310-musllinux_1_1_i686.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c08f38269052b60ab37552a965665c87485e0245ae4b55f0743a2328170711c6
MD5 1a41ed289d0f04cfdb5dfc920855c9b1
BLAKE2b-256 08584e93027150c688755c8adff74e5668b29cb59698fb795d2163d4c2e8b959

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4aa96ecbe4eca0aff68a74c1b582912c1bde170ccbc3bea02dc535139db8898d
MD5 ec095f07680b555d8c630d4eb3fb59d0
BLAKE2b-256 19b25c07ba8875c2e999596c478a2c12944d395af0cc24e73870ac897da71491

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 434a6ff0bdc9c7f0eb4f880fea8cc00b20c9d5752423d8be969e4f719cdd70cb
MD5 2f1adc325b2f90d25918c30f986a10c1
BLAKE2b-256 24a98c49b8bbb3d55484c728c18a924cbf21893a13b0001517c145683e8408bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f5f4720c93025677212efd3ab2835ea88124bf4dc41cbe8e23ba013b7d5e7fa
MD5 9e50ba050e7e8d2b7ba1f3121ee3c916
BLAKE2b-256 3da5c1cc281f37a63e392ba4d8c8231d286205117760c15f4e1d37d049349137

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bd796b8625ef227126a156ca45b83dc77a6b7389a6432e61625eb45adefd292
MD5 ae75bfcf70f7eb1b996e8c19a8e36880
BLAKE2b-256 86eea356e6279f6f488bb44fcf14c0d7130c1020be037c7b8a389f7d23eac498

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7171cecfa6f2cd651f56739469423752a0a11814cfc0fb05f74230829ead4ca9
MD5 ca621d61014a6e8e8ed83af1f17f00ba
BLAKE2b-256 9e2b551b89b7f5b55c2d789c180dbfb85a82d328f809192fbe058364d8c6d3c9

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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

File details

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

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dac26234e271b69bbca4012c9f05c821501041860bb8ec2d91c2439e429123e3
MD5 360f2da20d590394f815db1beccf34c8
BLAKE2b-256 1a704018c3ef9f9e040b582fd0502abb6b3b779e6f66ac9005b5bf5a60ce332a

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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

File details

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

File metadata

File hashes

Hashes for barkeep-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3a9cbd32e79ccbdc9142dae82cd7840a8ae5acc83a3c3dda533a9bfa664aa16
MD5 1324652d627cc8c3d432cc2ce7f7d786
BLAKE2b-256 acac83436d95966f56545ad58a049c3d1c73d2af04409284167c7d27727c6386

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 801837acb715cc2563b33015b95624858072f7c2674978c8077b88dfece31582
MD5 23e82809ee0cfba201f681538690279d
BLAKE2b-256 ddb3e072f162ab57e26d06789b7a8fb1478ce2e6bd0b60c6924975fb7b9906ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e0b095c05444a0cf2a1cedecb41514276f3e11da0279cec9a1c5081a2efa3a2f
MD5 ca7e46f432ba7bafc347075667946113
BLAKE2b-256 883956356935e522f7c98aff3701d708764891c31949757220b6766b1a8c4b92

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp39-cp39-musllinux_1_1_s390x.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 01d594f8b70c03ad056631e616cb581d39b83e436d7e6c5245270ab1e5a6db87
MD5 4f5cac0f6f91033272680188622d277e
BLAKE2b-256 603fed9d09009a2394c73a95bead91c6912ce3cf3b4d6a49c8a6d026a05e5cc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp39-cp39-musllinux_1_1_ppc64le.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8627ed7ccf6ce8bcb61df1435a758a3aec102bd3c720ae5b772c047a5cec976b
MD5 904de4c07c6f398766362ab193f538e0
BLAKE2b-256 b7b17e900943ae1b3f66668260c85e3f7744580bc3abd88113daa467a8c65479

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp39-cp39-musllinux_1_1_i686.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5a6444adac122d770f6cfd34f6d38c936bfbe66dea72d726e1d9d5745e19bd71
MD5 8b269ef9972450c4d809f38f8fa9af2f
BLAKE2b-256 2ef8660eb6136436998b5f39121972e1776f7732177784e975086a0a0ef9a848

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3108940db7230da153bf61d183d2680a0107105e56b12ff992359d9b49ea0956
MD5 3cf036e9f2441e8e2e7a67f3a9cca3e6
BLAKE2b-256 4776282f74d93e6acb99240e00f579598113fe5a30d4d9da0193b040202e5763

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3fd069ea5702f5a380672b7e3ea290f7f18d99a30280483e8bc7ca67b140fb1
MD5 6982d0fa37c103ae8ebd4469bff59936
BLAKE2b-256 b3c593ba5ec6bdb64fa6f7138e0ca4b3cc2dc2a8d43bf42aa1ea563a7d6ccadf

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9ac058d9702f2d604e1b1f915a611e804eb43330b6cf888f2d8eaab9da7e3b4
MD5 152ff6445022281c1b0fea6c3780efd8
BLAKE2b-256 46e50b04bdef18ca8b7ce1a0b9f109ae0a73d13194093f4c49d338af63cf8353

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40418e5e4b7324db5bcaf4ef2240a109e16a9b47cc64b698d7e0a1af4817e4b4
MD5 bab223eeaae894d425d72246f615d269
BLAKE2b-256 7181667dac29164030e3d369ad4cadeca93e0a901295fd348a0947319030410a

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on oir/barkeep

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

File details

Details for the file barkeep-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d649de1b8ee759c0fbc63bb38ba25a77961ccf59f082c617bf33adf8c39584e2
MD5 96764b459ceda69a86e2c86db8ac7066
BLAKE2b-256 41a32b0f267dcf9b5a83c213691bf792799cec10c13d9263f3042061dc7977c5

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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

File details

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

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c18845198827c722955f33ad357530e7022735effcb7501861b1d67a3b1145e8
MD5 535122b68d6ffe941953966020be6b93
BLAKE2b-256 fac28d354d0cb3f56d9f7f58702552270b650bdd1004389e2f518dd706bc8045

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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

File details

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

File metadata

File hashes

Hashes for barkeep-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66f8fac7ee75636e52badd78454abd7a3944bce3cbd9cc15e7359514b7441aad
MD5 e436a93f3270d779d2fb3e038eede3c9
BLAKE2b-256 db88f5417078edfa062272d36a0798c869578c4d5e70cfcde81f316ac9c69832

See more details on using hashes here.

Provenance

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

Publisher: build-wheels.yml on oir/barkeep

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