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.6.tar.gz (283.5 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.6-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

barkeep-0.1.6-cp314-cp314-musllinux_1_2_s390x.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

barkeep-0.1.6-cp314-cp314-musllinux_1_2_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

barkeep-0.1.6-cp314-cp314-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

barkeep-0.1.6-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

barkeep-0.1.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (337.3 kB view details)

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

barkeep-0.1.6-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (357.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ s390xmanylinux: glibc 2.28+ s390x

barkeep-0.1.6-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl (352.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ppc64lemanylinux: glibc 2.28+ ppc64le

barkeep-0.1.6-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl (354.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

barkeep-0.1.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (314.3 kB view details)

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

barkeep-0.1.6-cp314-cp314-macosx_11_0_arm64.whl (277.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

barkeep-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

barkeep-0.1.6-cp313-cp313-musllinux_1_2_s390x.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

barkeep-0.1.6-cp313-cp313-musllinux_1_2_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

barkeep-0.1.6-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

barkeep-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

barkeep-0.1.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (337.0 kB view details)

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

barkeep-0.1.6-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (356.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ s390xmanylinux: glibc 2.28+ s390x

barkeep-0.1.6-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl (351.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ppc64lemanylinux: glibc 2.28+ ppc64le

barkeep-0.1.6-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl (354.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

barkeep-0.1.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (313.3 kB view details)

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

barkeep-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (276.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

barkeep-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

barkeep-0.1.6-cp312-cp312-musllinux_1_2_s390x.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

barkeep-0.1.6-cp312-cp312-musllinux_1_2_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

barkeep-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

barkeep-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

barkeep-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (337.0 kB view details)

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

barkeep-0.1.6-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (356.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ s390xmanylinux: glibc 2.28+ s390x

barkeep-0.1.6-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl (351.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ppc64lemanylinux: glibc 2.28+ ppc64le

barkeep-0.1.6-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl (354.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

barkeep-0.1.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (313.3 kB view details)

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

barkeep-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (276.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

barkeep-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

barkeep-0.1.6-cp311-cp311-musllinux_1_2_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

barkeep-0.1.6-cp311-cp311-musllinux_1_2_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

barkeep-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

barkeep-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

barkeep-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (336.5 kB view details)

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

barkeep-0.1.6-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl (355.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ s390xmanylinux: glibc 2.28+ s390x

barkeep-0.1.6-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl (352.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ppc64lemanylinux: glibc 2.28+ ppc64le

barkeep-0.1.6-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl (357.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

barkeep-0.1.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (313.8 kB view details)

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

barkeep-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (276.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for barkeep-0.1.6.tar.gz
Algorithm Hash digest
SHA256 2d742d1608861a39040ebddf645fcc7c948f8429651e850b31942ac54b9f1eb7
MD5 677fbc73b9cc722c7c2d2134dcbe2083
BLAKE2b-256 866e7d04a6cef6174ba7aa0d4e99eabd11c82f55d7454bb08e270c6ca2699aa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6.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.6-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c67352fecda4f934aae6b10b41736c57a38f83050c1208c66a8653b63ad250fc
MD5 ac28a890caa182fab59ba6a4a7df039a
BLAKE2b-256 1c436d28cf54742665cda8b87649dcbbef9de825bd1229fc10c4691e901e36ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp314-cp314-musllinux_1_2_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.6-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5ee9c185b487bbe11bd74adfbe90d9f591fe959a8ace36c63b2010155f2f4955
MD5 bacfebf213c1e75668b40e995fbe8958
BLAKE2b-256 585574d2cfe209cf6a7264178fb25bd597403661c09e7c316b7253ec8e75359c

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp314-cp314-musllinux_1_2_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.6-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d5925bdd0dc48c534fbab8f045b7aaec043f713fc34f0a4cf03c5f2c78703150
MD5 2ee7a04cdcbf040f4d1c3c98cd399221
BLAKE2b-256 9da2c665ff0b59ee43a200fa3aea9d93e621ecf71ea482a0f4cc172572b71f37

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp314-cp314-musllinux_1_2_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.6-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbc52a381cec4533ec65f5794631edae7334bbce16f828a8d4d3910a2f564e2e
MD5 612f48a5e0d00638587f2308afdf6e40
BLAKE2b-256 dee3d2726f399d97faa723c2bb906bd56dbbbe5c724d5c08953b9da7d2cfbe34

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp314-cp314-musllinux_1_2_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.6-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5df4e85bc6f0c37e8f70e968c2113d831fc232e878d81c566519ff64eedf406f
MD5 7e03a45ebd9d27b89062b3ffe4b2e2fb
BLAKE2b-256 d100532cc1eba6451989b0619df70cc4f06b63829a7bcf0fd8db9791e4436e6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp314-cp314-musllinux_1_2_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.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac8a6288dc7a1bd6d42d3b37cf4164bc4254fa94853a1f69a1fc5224ecd4adbf
MD5 f9c063a5037bbfe6188f98cd3608a42a
BLAKE2b-256 168f33ba807a0f4947bbe1de4dfb6cccad6d66fae7fdf9526142cdc64518c5a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_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.6-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5685212d19c177440afec9d98e6c55b1ef9e075d2170576c766937b28de23e22
MD5 8ae7a29c9d6b3a51d3802901ac5487c3
BLAKE2b-256 7821b713bf65619368968f4a48e9b664b4f3232429358641beab55752eabd936

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_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.6-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 aef17fc8ce5ee63d4ef8417a6c3cbb9cea76e1f69f9de765bf99bba96afa3641
MD5 e46f5b01671b81351c8bc5b70fb7329f
BLAKE2b-256 8b7112a377baa871f13add55badbe69ba66ed46832f91a6e2818bf8791b16d71

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_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.6-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1667e1cb1c850bb1035e67c56e7c3732b6090a88fe4efe50d16cb2916757e2c9
MD5 235f5d97f4c7b35839f9a1d4261fe670
BLAKE2b-256 08e91c048540273c38d9bd1f8e9e5e0d03740504718dde626b8f9ce52b88e1f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_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.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0627912ac6f9d24fb64000a066b5b9680e3a4d28c58eced106cbee1a88d0447
MD5 67b2347750af6aed471fdbd5fe1c2b2b
BLAKE2b-256 e5d5b8f3a6af017c348d605ccc3a4949287eb799cb9ea59bca426be9d7ec9cd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_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.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a081637a4c95e73f6e79f94de95266ad1fd0384045f7a03bbce5a2e8e6b0c694
MD5 5278e7db0156ed9db6aa40a739ee30ee
BLAKE2b-256 79de0e6d218e7938c72ad45a5c23163a9b6a4b1bdc8e9cfc18ce4eef2647f46d

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp314-cp314-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.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99c39648cec919ba22cc92aaec43045c58e89a2254c38c1ee15b0bf6f0dd97bf
MD5 27f78bfd148e91b3d697985acfd1756e
BLAKE2b-256 fa07fea67ccab91d68ea371a3d155ff535e6894d6b2d874f6e10505af4737d11

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp313-cp313-musllinux_1_2_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.6-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cd1761bf52cea8675cb2814b60b88bf0156da1dda1c80a172cdb4f63d6d64853
MD5 476b824a99140e2797be1c466aae83b8
BLAKE2b-256 1c0c55b118fd86d8a3567cbeae0062bdba96c23bb6c10c52af00a1189862202e

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp313-cp313-musllinux_1_2_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.6-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 878ea0afc24b5670a6df989742d27e20168364fcf158c22017d5201c777cbcc6
MD5 3f939b049a8b600bcebe79058dfb5563
BLAKE2b-256 6a8e778bfa5858ee5896c5e28eb54ba10427d586c77b944cf4fc1c37973fe3f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp313-cp313-musllinux_1_2_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.6-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce2774668aaba49dc0ffcd1405418da9f567e29b1e735e851e69dc213259a43f
MD5 92f7441e58c6f314185e31c291423368
BLAKE2b-256 d36a8f617bac7f31f859a30a3ffda70515a84ba61a9182b75dd89d2997e232cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp313-cp313-musllinux_1_2_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.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14879fdb44c99a615bf33e88dc3a823a37dbe5868f88089cc1cd988e76b1f034
MD5 607c504389daa5ceaa3ba08c654161d4
BLAKE2b-256 18975d6c65a6367f3bc23f581bcc09d31599c200d4122c1d88f7b3354b115fba

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp313-cp313-musllinux_1_2_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.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60493bc1f22e9d6331450a04aa352b33272d48bcefc1a208cccbbdc8cfdee568
MD5 f2eb386ca8236d593718bdb2736d905f
BLAKE2b-256 7e5ee939b55fa1ee956023280223f77f2c8f3f39d90fc2c7ba0caed43940c3ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_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.6-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3b89a5c5248dc4dcde5fe200c57a82028ec13a338f719f756794bd18511fe518
MD5 8aa3cce3e40969d3b58d1f3f93b9d1a4
BLAKE2b-256 29673c01c5d8fb15f52268e284afd2c51df27fe1141a3be3e89ce5606538152b

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_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.6-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6ce6cacc532d72cc955c7dcb1716ec3ea59f415d1a9e9dd3e2d39bad8c4ca6b9
MD5 9dd59165d6d28036ba3e22c2f638259b
BLAKE2b-256 508dd5773df20ee9123c56f28edbed7a3f46a81495c1aa20e8c02390e2c3ae17

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_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.6-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 82f57c77077da452da0af6d8a56ba79eaad1170caf62835b4fe284bbbda1884a
MD5 47bd5b18b3ce39e9e08e7fc7d3d70739
BLAKE2b-256 915549fd14086694110d78b724f13829f771ec7f533876be43a34b9c246a0dfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_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.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ba861fbeb95c22c4405aa10c0cc58fe8e47d9fb4af8abd4549959d57e3c4a6e
MD5 35bbc4768d9ca888fd243a393ccf91e0
BLAKE2b-256 b149d10b7b42c71721f88b6e97b5fd4be7ffe549e3322aaa176b0c809c608c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_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.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d857cb26003680d3ee527aad1a9a358c60fe7015f06a42513104641704b4bfd6
MD5 21c23764dd1731a56e50bb630dba873c
BLAKE2b-256 2267215ed9e28f15d9360fcfc64e819ab9026e2d23159853b2ae02bcffb6f9e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp313-cp313-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.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a5be3e76e420680ae4ff03d809d432431deb33758b9ab656b985008f6a527f1
MD5 2c2eb3a21daf4cd2cacd92dcfe79e7df
BLAKE2b-256 6a507d6d314fb482b65dee381536511e625592356640299a7c843610ccfd4fbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp312-cp312-musllinux_1_2_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.6-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cd29c7b12925beceb7256946c167e2c7b0ecd75d84814aafe00fb9835fabf1b3
MD5 4a89193247ec45b3202fcebbb0d20f38
BLAKE2b-256 2393c6e833f5c229e5e38d8b3af277ddee97653be7f201f0865b2df5fc4b90c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp312-cp312-musllinux_1_2_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.6-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8352ac0046e62584844c44208c3eee05dc9daffcd1508aeb6a830dec8c5f9e9d
MD5 c66b14d4fa54a52616a45d102c7266c3
BLAKE2b-256 e64bb6d80261a987e11399c5ff6238132b5af1f18d7bbe6e8509042b0caf44a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp312-cp312-musllinux_1_2_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.6-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8aa8b7174bd8f83e7224545acccd2714568c795432e782ad62c62fffe733fd1
MD5 6e06400d0d1b23f5fb8d4878aa1b0f6d
BLAKE2b-256 ae6f0f3b36913a9d1984d46d30bb700d4d205594447a6f1045e487d556479db6

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp312-cp312-musllinux_1_2_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.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6adaa024ff310c5037fd8c475c9d9e1878065d0842f819b7921d7140e01a64dd
MD5 eb4483f488fa8ceb9c2cb83b496c55b6
BLAKE2b-256 b235cbefeff52b4a1f900be4047021b22e4a46a9cbb6db26fa4632926f4c0e20

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp312-cp312-musllinux_1_2_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.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d24a646cecba982b9b1aae7b90b5e8e034dbb4021fe106b45e790b801c0cdb92
MD5 791b5ff658e5922c454cd3e85c0dd3b9
BLAKE2b-256 8cc388b18a10cd85c8a185b66787b49a3327ea215a4850004183298342c85afe

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_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.6-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 68e3631fb9883ddab08ad3e27dafffdd55ee0d1a31862d827968d26f27167a43
MD5 878c93f0aa4c19081ed58f71345fbba5
BLAKE2b-256 87ae2fc46e2db674ca6004777116942260ee3ed6c0440bd6cb07c8754179fbc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_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.6-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 19b10ebf59bd13c6490059fdc65f1ccd2e2c43e08f5639c8feb2915f066c56fe
MD5 edc573b8dcb5ece475629ceab9fb5cee
BLAKE2b-256 fc25d27c6e35ef0b632e0caf4fae2274c42d3b84882eeb28be0d73b3b6ab2af9

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_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.6-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 49169da0b376cc6e026257c224138545b039d7cbba52c1fab81fc6b7c6a52fe5
MD5 19e0f9a9b927d1a5481d781f342911f3
BLAKE2b-256 614fb411a1961872adfb94b2217de3be993c728a3746aee71ff9b1c0f5a9513d

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_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.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d009771de02039a061857388005595ffdd2b99a335d15a36701fda2fd615a65
MD5 5b98fa102093262a366bb27f5117cb04
BLAKE2b-256 bcb3999f27e7621717603181005a4bd5cefe49e467a70e6a526cb27ea2d2aa41

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_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.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e023866608d06d79355feee9ed20b662c48cc5c15ffb754659cb31edf269a581
MD5 646c63ec8ae84a21cbee7ade32e4eebe
BLAKE2b-256 e0491551012fee7b955be5a993695cba26e8f89bd1cb50d4d5e0bb98c4d259cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91a40abb951a24c190d7a4ea1b95571b5367d4c20e30784270dbf764f76aa801
MD5 54eed728f7d0fc6b7b8ab16216ae3737
BLAKE2b-256 9f5aead57a3b257afe84afd345485cc0987ec1871caf5741457af90a5ecb5d78

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp311-cp311-musllinux_1_2_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.6-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 28eeddb70a456112bc203297045ee59c1388b59f5d100ae5dd6b628069dfa7c0
MD5 f88b595d99bed95089465394b6e90516
BLAKE2b-256 7e573f62ce233c17c92b904b122e9baa633bd2965cf6efafb48e0545b396994b

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp311-cp311-musllinux_1_2_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.6-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4da1ed30d23b4ce4a67b8b3d447b5aa4e9a311b6f9e622c20e796a4c593123db
MD5 4cd66fc0ae1d4efa9db86a0a5909540a
BLAKE2b-256 9480f791dc57498f970582f7cf5b36969b816eb61570b15635072f28b7a7fc7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp311-cp311-musllinux_1_2_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.6-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e076ae5a2234f2b9bb4e255628cdf1ca31e6e8c495cfa449162460307c9c6746
MD5 1148fcbecb6ecdf211355ae03e339138
BLAKE2b-256 fc8a1404683cdb0292b474691a2de09cad7d2b94eab6bde9850ef06d5579584e

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp311-cp311-musllinux_1_2_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.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f65e14def1a431841c99692bbbc2d9b0b7252f925cbf1e6a385a759cc885b5a
MD5 0ef2aaa600ef0b58184c266d54a6bc0c
BLAKE2b-256 b02d771bfe8da8ed114707299e593305c6edd03ca2f972c8aef54e80731ebe06

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp311-cp311-musllinux_1_2_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.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f4f8d9972291e0c73a05132ddecd5851f971bb27091b1f49ef9125802eadaa1
MD5 717676345c5b326e7c270f70c45acb56
BLAKE2b-256 f4c62bbf1fa773109f022819406272dbd6f56e0d928c9b6395b48d0b60aa33ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_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.6-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3b52fa8d2141b8f81be2c7f918e40de0f9342bf5ef83f69562eebbe95c565260
MD5 5a2b0276ed9bc4bda91d7029326c5d11
BLAKE2b-256 22398f8e048514e2f79940f85958c2811aa5834d89070b1383608a06a0e6e40a

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_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.6-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a669e871c28aa6c15aade3dd4c74dd31a64999381252fe021e6b783f55aca4bb
MD5 1b2dc7eab301c202edcc73022f829959
BLAKE2b-256 bd03ba585e81b0740b6ea68d7cd93b868413a675acf2e5d1d21ba67ff63c3dfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_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.6-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 cdef60debff22b0a644c283971a317e702be81b8c39c61f45cd1c0796bff3bb9
MD5 7dcecfec90224a9b4dd7882d9195b923
BLAKE2b-256 a0a514f576c8c48bd1d30fe0ec6184a6629ac13b519097a6b669b5dc073437eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_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.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f04b0c0aaa6404f1b50551c8b18ec5b585d71d40c53c66c84a86dc505a907911
MD5 2763b001e21ca7d328460e8fd9fed637
BLAKE2b-256 d72b29ae090b8241bfab22caf26651a1b26a26d828496b4c074e0fae071c905f

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_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.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for barkeep-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ccbdec336100bcf2b046adcc5607874843aa92032035bebf9d4e5a25f0584cb
MD5 b470247ac9a12734b6c0a463775ab9f8
BLAKE2b-256 b7b808dd770103d052beb2065621498c9fdd8496fc6399f72ed084de54b25aab

See more details on using hashes here.

Provenance

The following attestation bundles were made for barkeep-0.1.6-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.

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