Skip to main content

bpeasy

codecov tests image image PyPI version

Overview

bpeasy is a Python package that provides a tokenizer trainer, implementing in 400 lines of rust an efficient version of Byte Pair Encoding (BPE). The implementation largely follows the huggingface tokenizers library, but makes opinionated decisions to simplify the tokenizer training specifically to:

  1. Treat text data at the byte-level first --- all text is converted to bytes before training rather than using a character-level approach (like in Huggingface).
  2. Always use a regex-based split pre-tokenizer. This is a customisable regex that is applied to the text before training. This regex decides where to split the text and limits what kind of tokens are possible. This is technically possible in Huggingface but is not well documented. We also use the fancy-regex crate which supports a richer set of regex features than the regex crate used in Huggingface.
  3. Use int64 types for counting to allow for training on much larger datasets without the risk of overflow.

You can think of bpeasy as the tiktoken training code that never was.

See the benchmarks section for a comparison with the Huggingface library.

Installation

Simply install the package using pip:

pip install bpeasy

Training

The training function is designed to be bare-bones and returns the trained tokenizer vocab as a dictionary of bytes to integers. This is to allow for maximum flexibility in how you want to use the tokenizer. For example, you can use then port these to tiktoken or Huggingface tokenizers (see below).

# should be an iterator over str
iterator = jsonl_content_iterator(args)
# example regex from GPT-4
regex_pattern = r"""(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\r\n\p{L}\p{N}]?\p{L}+|\p{N}{1,3}| ?[^\s\p{L}\p{N}]+[\r\n]*|\s*[\r\n]+|\s+(?!\S)|\s+"""

# returns the vocab (dict[bytes, int])
vocab = bpeasy.train_bpe(
    iterator,
    regex_pattern,
    args.max_sentencepiece_length, # max length of tokens
    args.vocab_size, # max size of vocab
    args.batch_size, # number of items to pretokenize/count at once (default: 1000)
)

Alternatively, you can also train using the basic tokenizer class provided:

from bpeasy.tokenizer import BPEasyTokenizer

tokenizer = BPEasyTokenizer.train(
    iterator, # iterator over str
    vocab_size=vocab_size,
    max_token_length=max_token_length,
    regex_pattern=regex_pattern,
    special_tokens=["<s>", "<pad>", "</s>"],
    fill_to_nearest_multiple_of_eight=True,
    name="bpeasy",
)

Note on batch_size: The batch_size parameter controls how many items are pretokenized and counted at once. A larger batch size will be faster but will use more memory. The default is 1000. If all your texts/strings can fit in memory, you can set this to the size of your dataset to speed up the process. If you are working with a large dataset, you can set this to a smaller value to limit memory issues.

Encoding/Decoding

To test your tokenizer you can use the BPEasyTokenizer class, which is a wrapper around the tiktoken.Encoding module, simplifying the handling of vocabularies, special tokens, and regex patterns for tokenization.

from bpeasy.tokenizer import BPEasyTokenizer

your_special_tokens = ["<s>", "<pad>", "</s>"]

tokenizer = BPEasyTokenizer(
    vocab=vocab,
    regex_pattern=regex_pattern,
    special_tokens=your_special_tokens,
    fill_to_nearest_multiple_of_eight=True, # pad vocab to multiple of 8
    name="bpeasy" # optional name for the tokenizer,
    batch_size=1000, # optional batch size for the number of items to pretokenize/count at once
)

test = "hello_world"

# encode and decode uses the tiktoken functions
encoded = tokenizer.encode(test)
decoded = tokenizer.decode(encoded)
> "hello_world"

You can also use tiktoken directly, but you would need to handle the special tokens and regex pattern yourself:

import tiktoken

vocab = bpeasy.train_bpe(...)
special_tokens = ["<s>", "<pad>", "</s>"]

# Sort the vocab by rank
sorted_vocab = sorted(list(vocab.items()), key=lambda x: x[1])

# add special tokens
special_token_ranks = {}
for special_token in special_tokens:
    special_token_ranks[special_token] = len(sorted_vocab)
    sorted_vocab.append((special_token.encode("utf-8"), len(sorted_vocab)))

full_vocab = dict(sorted_vocab)

encoder = tiktoken.Encoding(
            name=name,
            pat_str=regex_pattern,
            mergeable_ranks=full_vocab,
            special_tokens=special_token_ranks,
        )

Save/Load tokenizer from file

We provide basic utility functions to save and load the tokenizer from a json file.

tokenizer.save("path_to_file.json")

tokenizer = BPEasyTokenizer.from_file("path_to_file.json")

Export to HuggingFace format

We also support exporting the tokenizer to the HuggingFace format, which can then be used directly with the HuggingFace transformers library.

from bpeasy.tokenizer import BPEasyTokenizer
from trans
tokenizer = BPEasyTokenizer(
    ...
)

tokenizer.export_to_huggingface_format("hf_tokenizer.json")

from transformers import PreTrainedTokenizerFast

hf_tokenizer = PreTrainedTokenizerFast(tokenizer_file="hf_tokenizer.json")

Export vocab to tiktoken txt format

from bpeasy import 
vocab = bpeasy.train_bpe(...)

# saves the vocab to a tiktoken txt file format
save_vocab_to_tiktoken(vocab, "vocab.txt", special_tokens=["<s>", "<pad>", "</s>"])

If you want to use the tiktoken txt format, you will still need to handle the regex and special tokens yourself, as shown above,

Contributing

Contributions are welcome! Please open an issue if you have any suggestions or improvements.

License

This project is licensed under the MIT License.

Citation

If you use bpeasy in your research, please cite the following paper:

@software{bpeasy,
  author = {Gautier Dagan},
  title = {bpeasy},
  year = {2024},
  url = {https://github.com/gautierdag/bpeasy},
  repository = {https://github.com/gautierdag/bpeasy},
  author-email = {gautier.dagan@ed.ac.uk},
  affiliation = {University of Edinburgh},
  orcid = {https://orcid.org/0000-0002-1867-4201}
}

Release files for bpeasy 0.1.6

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for bpeasy 0.1.6
File Size Uploaded
bpeasy-0.1.6.tar.gz 932.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for bpeasy 0.1.6
File
bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ IBM System/390x Details
bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ PowerPC 64-le Details
bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARMv7l Details
bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.12+ x86-32 Details
bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ IBM System/390x Details
bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ PowerPC 64-le Details
bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARMv7l Details
bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.12+ x86-32 Details
bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ IBM System/390x Details
bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ PowerPC 64-le Details
bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARMv7l Details
bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
bpeasy-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
bpeasy-0.1.6-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.12+ x86-32 Details
bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x Details
bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le Details
bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l Details
bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Details
bpeasy-0.1.6-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
bpeasy-0.1.6-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
bpeasy-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
bpeasy-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
bpeasy-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
bpeasy-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
bpeasy-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
bpeasy-0.1.6-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.12+ x86-32 Details
bpeasy-0.1.6-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
bpeasy-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
bpeasy-0.1.6-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
bpeasy-0.1.6-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
bpeasy-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
bpeasy-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
bpeasy-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
bpeasy-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
bpeasy-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
bpeasy-0.1.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.12+ x86-32 Details
bpeasy-0.1.6-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
bpeasy-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
bpeasy-0.1.6-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
bpeasy-0.1.6-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
bpeasy-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
bpeasy-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
bpeasy-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
bpeasy-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
bpeasy-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
bpeasy-0.1.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.12+ x86-32 Details
bpeasy-0.1.6-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
bpeasy-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
bpeasy-0.1.6-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
bpeasy-0.1.6-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
bpeasy-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
bpeasy-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
bpeasy-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
bpeasy-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
bpeasy-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
bpeasy-0.1.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-32 Details
bpeasy-0.1.6-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
bpeasy-0.1.6-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
bpeasy-0.1.6-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
bpeasy-0.1.6-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
bpeasy-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
bpeasy-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
bpeasy-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
bpeasy-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
bpeasy-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
bpeasy-0.1.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32 Details
bpeasy-0.1.6-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
bpeasy-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
bpeasy-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
bpeasy-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
bpeasy-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
bpeasy-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
bpeasy-0.1.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details

Total release size: 75.3 MB

Release files / bpeasy-0.1.6.tar.gz

Download URL bpeasy-0.1.6.tar.gz
Size 932.9 kB
Tags Source
SHA-256 checksum
How to use checksums
59a6d88aa2de40426f24b01e5b59736bd69ae9b3857b035e2a08b9353687347a
BLAKE2b-256 checksum
How to use checksums
a38c41ddb83af3614dc4cb71ef570d7f85eb6251bdd8da7205702e897533700b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
937bbaf4bf6094a6cb449d9cc051d511a76e54744859e549817d39ba09798ed1
BLAKE2b-256 checksum
How to use checksums
76c98f8fecc39a1bfe26ae4c38bc40e9496cc6d0259055723ada051f63d8be7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
e9715af270cb12458ae9434a33e3fe6dd44b27836551311725f441cb0545d35c
BLAKE2b-256 checksum
How to use checksums
802ce123c7a9c1eb7bc2d14c896559d70eeb8ee9d9bf957fd9c44bec94fb1c0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
5c98b8420e198992c2ba0f3ef31b304abf3b84cb14e2a1be2ca4f561148e7ebc
BLAKE2b-256 checksum
How to use checksums
cf89bed50ab8eded00502d758b424fc540eeffb96c07837c350f2bda050942a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 949.0 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
ba7ce21de1a780c9ed20fb9ce4346a781c70f40f7b3ab5228858c06e1bb4fbb9
BLAKE2b-256 checksum
How to use checksums
00b0d8cec648aa7c90827bcae6c0a06d4428929cd33b907e6409dedaff9d64f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 952.4 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
d9c7fc267affeb52fc065cfb6ee28b9afc5487d1172e923d957620350eee12a6
BLAKE2b-256 checksum
How to use checksums
a6986bbc0d5683873d3beb354f1679074524bd71ebb852c3fa6c3defb36f9325
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bpeasy-0.1.6-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Size 990.7 kB
Tags Linux glibc 2.12+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
65ba2c06581894bb4ddc996cc350686b0fb717b5cba96a00f55a76ff16f15403
BLAKE2b-256 checksum
How to use checksums
ba2a5e5e919e2115165cfc801346c9e9aaf6db52525c045d23067dd8797480ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
65a9215f7277dd45e7e0d9afcbb45fcfd54f7013f420d86ea66ac82a2b539640
BLAKE2b-256 checksum
How to use checksums
37fee3da8004883aef65aaa132186564d6384718c90d2bde3856313e1171ae5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
91516027f5468e8cfe79b561ad69238b62e7a1782c37a557b1803c403b46f82d
BLAKE2b-256 checksum
How to use checksums
b948a06cd56c149bfd35d8d41dc6ac15fc24b9e4cdea11df7554a2a52885e888
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
b3960aeda58d9927994e694ad5dacff5afb30d13c7a123a43a7015f88c0b7972
BLAKE2b-256 checksum
How to use checksums
901fcfab9720fff2876827388f9cfbaa7acdc8d863b054caa2b6135d20816222
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 949.1 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
b5db8dfbab2a8ae61ae0710a24f922ede923b5ef0411d68b7993bcff80456cb5
BLAKE2b-256 checksum
How to use checksums
127a968f4c9b68da5a4011d7665f25df6d11f582189f97a93ba0c4bd0547eb2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 952.5 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
99fc6121b89db41392739299e6b3eea64ab6a1c3105093b32d3cf7ce60ce60a2
BLAKE2b-256 checksum
How to use checksums
6a66b77450033abb4ccf23d7a921cc66c9283e8022ee208e9098919a3f0416e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bpeasy-0.1.6-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Size 990.9 kB
Tags Linux glibc 2.12+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
c94bfc08ed4a402ad2009e0c54f35592e87f2c7101f6488ba5b79b2f42a50cd2
BLAKE2b-256 checksum
How to use checksums
76feefca56b726e9534e84b4df41bb0516215604d5b8f9434d75411f48d22d99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
86ed62496da7b1d2a0f2b1ae384e2c4e0c7b448417d27c45a9b2aa84c603894a
BLAKE2b-256 checksum
How to use checksums
345059e11715b0ec3f685e2232bf13bc67e1f9ac52e318ee761bdbd2ae2d9f28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
b88a514dbefe4fdec894db815a49b5459909f7106e55117e41bfcbc3ff7c19e0
BLAKE2b-256 checksum
How to use checksums
ccf5815ab39a9a8e0aeb181ab482020769d1848ff8ae1dbae68a2bf681e16137
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 949.1 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
730a4ae3d7a78c2f7ff7a9e4ddf3d5a5e300ea187ab9b0e9f265627ecf295037
BLAKE2b-256 checksum
How to use checksums
3fd9c54d25857af5481001d62be3e6d2a48912fe45b8b7b093ada88977a19ecb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bpeasy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 952.5 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
69565e5f4934532828a149e49657d3beba6123ff887c956755002f74c4b313ec
BLAKE2b-256 checksum
How to use checksums
8064a67b069ab45c464ba74bb882438568ab143323f00039bc7b03a95cc3e9e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bpeasy-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3c65744a341b5f666c7424c576a6b93bb7e09fa1dca80a200a254386422aa667
BLAKE2b-256 checksum
How to use checksums
f43099db034489397a57796c2c5a63a32bf93f62e2698422654f7b56ba85e3c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bpeasy-0.1.6-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Size 989.6 kB
Tags CPython 3.14 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
476acf68aebd8c527be6da1a8f18f5bd408fea5442bf6d806f185a8721328d63
BLAKE2b-256 checksum
How to use checksums
ce0c2ef15efee7383e7bc7ddd7a406718c41edb640604e6063e45ad9018b0f76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
dccd269deb6d25f498485470683262bcdeb3cb5d1a815e94b60b2feadcb94b3b
BLAKE2b-256 checksum
How to use checksums
39c20a8b4471f5673a96124e417a7d5f9ea7ef156191ae67bbc1e3a47f5ed786
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
806958d662a9e207cdc1f7cca0f01b2abd71576809dcb24fb1cbccb81568d3f6
BLAKE2b-256 checksum
How to use checksums
61cdc7487a7d55062d0a40a6cf211317e30d473503df4584b9cdd933b298cb57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 947.1 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
23efdb1bf2d6156ed01626a86a10c78431e7895a70c18a161d249499157f78f3
BLAKE2b-256 checksum
How to use checksums
f1a7f89bc15a13841225eb92150991bc8760ee4bf40a1f9c360bce2849787585
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bpeasy-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 949.0 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
92bcdd53be5d5d0147f94da412e761369f0631df1f6281819e5acfc4ffd62ab1
BLAKE2b-256 checksum
How to use checksums
2a439f4930c159ba90f570dafb1e6060e3d14c929e2ae838c0a3369a4c1a24a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313-win_amd64.whl

Download URL bpeasy-0.1.6-cp313-cp313-win_amd64.whl
Size 831.4 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
ea86b099f717c03d87748622aab6612f507bf8639d4986e9180820f742706234
BLAKE2b-256 checksum
How to use checksums
e36ebf405e8f23f187625f082782b12a4251ebd2f34c749b3d86844aadc1a753
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313-win32.whl

Download URL bpeasy-0.1.6-cp313-cp313-win32.whl
Size 750.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
0fa66a63b8fd8f36faaeea583104ea7113a6a2dd6b7a90efa25abc2c13406339
BLAKE2b-256 checksum
How to use checksums
02473380964789100c0994e87241b150ba5848ba01b49ca262bb8690e6ea19dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bpeasy-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
652817623cb1da68d3fa36f010b142f8260aedeb29eeaf2d613520b74f05b102
BLAKE2b-256 checksum
How to use checksums
5cfa3984f1192aa024a7d69c20385af8367031a3f642c4aa2a5b689528c984c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bpeasy-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
340578b87e9306f161b5066e6256b80353ba01aea246abbea3bb2b30905fddc4
BLAKE2b-256 checksum
How to use checksums
7a97348367cb7998d2d999998d17ab8e581dd5214fb51866063ba94f6fc628c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bpeasy-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
46a7b245c2d135faf2ea1ea6a04f0c9684ab89c9ef1467979ab9b1a642179430
BLAKE2b-256 checksum
How to use checksums
b93bc05fe86ffa7f2e6045be575b257f57df04521ef0d9165f9c7b8a16cddea2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bpeasy-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 947.5 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
3466d49cabf1f2535caf616d59c00a34485ed233f7af4946e2d6f1bd0a764b4d
BLAKE2b-256 checksum
How to use checksums
a75a38dab932be469f99e3c00c07b1609b80d250121be53e093e8706204ddf11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bpeasy-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 949.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5c6971523e6c3664872ab1074f3554a335b57bc2f29bfd5498114756147346e6
BLAKE2b-256 checksum
How to use checksums
8f51e3f6d6235fab8897f8de7cd2e8d07e40992c322da72927645c246387fcdc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bpeasy-0.1.6-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Size 989.8 kB
Tags CPython 3.13 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
d00412c51a0def52136111652a2507da1774ef1b57dbe9f42c5850df57643e0b
BLAKE2b-256 checksum
How to use checksums
a4fbcc0a7a30b52ff0c766cbe4832399f0f625c1b21c2a0b0ca47367af8edaf6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313-macosx_11_0_arm64.whl

Download URL bpeasy-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Size 870.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d01d5ce57d134b24d43580e455bb30de34295679a8247a47ce35e8d1ab961a05
BLAKE2b-256 checksum
How to use checksums
b209620f93f4c13ec029a2b28fbb017a8a909f6b883dac41870f5701285e84bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl

Download URL bpeasy-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Size 936.8 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
1de8c2e23ffebe9c0dea86aeb231efc2588f5b29f673a4604ff4083ef8a2b448
BLAKE2b-256 checksum
How to use checksums
32988bd24c4b4e54b1f9cbc6566b6d1f1dd570af9413520b80e3833bdd543595
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp312-cp312-win_amd64.whl

Download URL bpeasy-0.1.6-cp312-cp312-win_amd64.whl
Size 831.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
8ffa970ec14c83b127e13ee83b946980427366504cecd64cc35899133e018d6f
BLAKE2b-256 checksum
How to use checksums
186263e34ad37a104c3fc2ae785af5eb9b63eb747b8ba9f1876b3ba134a89299
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp312-cp312-win32.whl

Download URL bpeasy-0.1.6-cp312-cp312-win32.whl
Size 750.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
cdf39040d2691e16988a9e95570cf19bac26297f16e741fd6ae49fed4f0c678d
BLAKE2b-256 checksum
How to use checksums
976f305659a0358de063d69b00cd88808bc6741c6ddc4ffc33a72ed656ad91a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bpeasy-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4b44ae8ab1c908d7ac6343ac0dca324c6d3381143d6241668ac3b2c176dd780d
BLAKE2b-256 checksum
How to use checksums
73124a701e24803846c37057e5faa542fca304b1fc454589862764e7d81c48fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bpeasy-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
f7ac6109e9b995f9b7d94e5445e0cafa294125d215f0fad3ad3054e50f9453ca
BLAKE2b-256 checksum
How to use checksums
603d4ae3fa6fbdb8013d9ef47f70a15a1be831955bed080542bf0aa7ccad799b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bpeasy-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
46fa108660f91ca60d0f6f44400534ce3f8b717c03880621a6be41328c497267
BLAKE2b-256 checksum
How to use checksums
ed41d45cbdbf26b96c10c05f7a759c8f9b7633082b3e408854050ab1c3ed3c3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bpeasy-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 947.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
d044c73d783105c45f82113ff447dab4b64b9fbf2e292ffdaec0f527d4abed86
BLAKE2b-256 checksum
How to use checksums
1ccd8e4c8b1fd07097e53c6d4aea86f0d529ff83a5445629f25545b4faf23885
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bpeasy-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 949.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
18e4eb6b2eb4a90760b9875f0fd179774fe24786917132f7c896fed49a1112ba
BLAKE2b-256 checksum
How to use checksums
5799771c0a4273b5ae656c4a7aa19ec0f0967b2801e4236db1a48cc3bb5c1677
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bpeasy-0.1.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Size 989.8 kB
Tags CPython 3.12 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
937c5123773b2861d748c83b5f283070a3b95b84f76d7fec3834f7b840f38d9d
BLAKE2b-256 checksum
How to use checksums
28bf2b8fc15cee37a4d56f48ea57a6b5c7a3728eb73f15936683df4076f11697
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp312-cp312-macosx_11_0_arm64.whl

Download URL bpeasy-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Size 870.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d48772b775417363a7d1f9c94f53f99f62d4ac2049c197840f3767b7f14393f4
BLAKE2b-256 checksum
How to use checksums
1b5ba358a8d48c9b3c160977ccc3c23b3a47a4f7f77cefe916cbff5d17beebbe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl

Download URL bpeasy-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Size 936.8 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
9f5a47e5247bc0b8019e43e087a7b9026bffb883e64d1b99f87a2acd631db71e
BLAKE2b-256 checksum
How to use checksums
24f87550300e81a534bd8cead4f31af2e3bdbc3758889b18d0baafb87dc47f36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp311-cp311-win_amd64.whl

Download URL bpeasy-0.1.6-cp311-cp311-win_amd64.whl
Size 831.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
b8ac97974e9ffcf0139a3fa71d0795cbc18d7d1c628b6c2bae9bbc904e35f77a
BLAKE2b-256 checksum
How to use checksums
ee702b4191ed958f8d9e06d5e0280e61cc22272064ce8d7f8c1150d33735414b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp311-cp311-win32.whl

Download URL bpeasy-0.1.6-cp311-cp311-win32.whl
Size 750.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
7d6ae8e916ca3d18fd49f5d3edc1d837fd8fd0d45e20dbeefdfa47a228a97f58
BLAKE2b-256 checksum
How to use checksums
41f3292d42159e0925e223b89ebcaf33aead2fafbfae38d89d6c746c68d140c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bpeasy-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6e9036cc5a7149fe1928fd37f415a389b503fcaf990a22235bdf23419512c986
BLAKE2b-256 checksum
How to use checksums
052077461340f3b6879a1bfa0b32a5fa83170c264696eba99163137c79781728
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bpeasy-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a9d6cdc44226b41adeebdf2fcdfdb2e2f6cdbe5a7caa3fb997951b675c1d3cba
BLAKE2b-256 checksum
How to use checksums
e0315a897f84ec5a9c54f2e0bf7b1e45ee0670891fe8a43e1bbb490b15c9aa77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bpeasy-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b8483e3caaae410b3a48b99f070ceab8222bc3e17bafa30a8b1490d817331591
BLAKE2b-256 checksum
How to use checksums
a5b32853f824465b4f2357ff10c2817fbad6d571c7852267604ee86d4b2a03a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bpeasy-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 948.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
c53e446b756c8bea6862e13cfe0f1e427f83f288077f76753fec142823d65f2b
BLAKE2b-256 checksum
How to use checksums
0c078761741d56eb33f7eb41e43d756b9aff0d058ca6a320d4f5732ff6fe48d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bpeasy-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 952.0 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
524f76d633cad93aca2d1ee603975f851589c403fb71a707a2ac30f576687f19
BLAKE2b-256 checksum
How to use checksums
1e67baff749f1ced55f7d1f338db5a166368a4f6720b7ebfdf42bd5e0429808f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bpeasy-0.1.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Size 990.4 kB
Tags CPython 3.11 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
c90e43a8dc0219eb871268beefa1ad54d631aaaad6bfdd5ddb406d0652da8b26
BLAKE2b-256 checksum
How to use checksums
aa401535572751c7976140f95fa8d1f6f4d9881917193383d9c335200902a199
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp311-cp311-macosx_11_0_arm64.whl

Download URL bpeasy-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Size 874.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b854eae576c03fcb9c1e190dc41083d7113515bc940f80abe4aaf6e6a84ebb1d
BLAKE2b-256 checksum
How to use checksums
76f9d0301520238386eff54de8d483bbd8efe07212a4acd041241665c639dbd9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl

Download URL bpeasy-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Size 938.0 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
0da824c4016cd560be95641afcd588063bdefc84b44ff112672de52742798122
BLAKE2b-256 checksum
How to use checksums
08c0d752045970297528aea80a509cefdeac9176241faa598e7c16c7c5adec2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp310-cp310-win_amd64.whl

Download URL bpeasy-0.1.6-cp310-cp310-win_amd64.whl
Size 831.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c41e741c939d2b4d8ffaac2991d79d4088034dfb33b37df7e4e97b517a663f95
BLAKE2b-256 checksum
How to use checksums
87fd7bed1468e0f1b0fe7867eb7e49d031db8e5fae69d801aa2e4bd81e6ac9f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp310-cp310-win32.whl

Download URL bpeasy-0.1.6-cp310-cp310-win32.whl
Size 750.6 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
16483603c10ab8ed692ca8989bfd68a1f9537ed314e32ee086e14f3b156cdd5a
BLAKE2b-256 checksum
How to use checksums
c3f94f3864c5852fcff0d3ebdc95bc41e17cdf28b272b0463706ed74ffe03cd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bpeasy-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4727003d81a6f70adf9e587d86161fa98436ab1b2a276e1f44ea5f9bc973b898
BLAKE2b-256 checksum
How to use checksums
774189692f0269c0fd4054095363f6da29ec640af56ad4e3838d5a67e7441691
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bpeasy-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
b4b0f7f22d6e76e2a631913daf51afaef53306e1785df5fadc4cd769682299c6
BLAKE2b-256 checksum
How to use checksums
3ff02b8e3eb1e995abee7f0471cc8d62165f12645d0bcbb871ca8b1e53ae8630
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bpeasy-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f1b9e5e00468811e9c8a35a9a7b0610e06c8a6ff045e62f6d102d91e119dab3c
BLAKE2b-256 checksum
How to use checksums
055c30e466d4b5a03dd27428a326c9b4ac751f517368707caf8d2c2a55120664
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bpeasy-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 948.9 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
70c3e85eb023e6b819d8f338df54f1d2a8e55fa6fd48c9bc18bd9522985ae917
BLAKE2b-256 checksum
How to use checksums
d65cc3712c0bc2c8a86e26c0a8c9ece00d0ae9d07c5454547f8e08e48500bcb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bpeasy-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 952.2 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a7c08dc9673e15f451eb3192496c8e3de947e3a61177c9e5f207ebc3b06adcb2
BLAKE2b-256 checksum
How to use checksums
dca0fa8e97ee676a8294d12b1d541458be63864dd4b90d46072444b6b94e176d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bpeasy-0.1.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Size 990.7 kB
Tags CPython 3.10 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
79d1c66182b83a04259b3bdbdf07bf58837bbd3f9f8d1eb7d41e596ea3ba1564
BLAKE2b-256 checksum
How to use checksums
d092f0e7877227575de4ddafc93fe34dff49c0425755bce47f9b5cd55cdb3925
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp310-cp310-macosx_11_0_arm64.whl

Download URL bpeasy-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Size 874.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
00c1d4b3a06b11f25d7db78fe3c9dadd099404025cfcdfeb863740029d938c4a
BLAKE2b-256 checksum
How to use checksums
1eda9d06cc639a80e2a3a3c4677faf17d014baf8e5a19f535b296eacbd1ac7ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp310-cp310-macosx_10_12_x86_64.whl

Download URL bpeasy-0.1.6-cp310-cp310-macosx_10_12_x86_64.whl
Size 938.4 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
6a34ef1205595841e0e49f55c45aafe96aaf711e9361b9a456330252a514fff1
BLAKE2b-256 checksum
How to use checksums
44742b335fc5e9fd79e8f20a45cb608d05b811ed6c583ac1b678cf5a039f8ff4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp39-cp39-win_amd64.whl

Download URL bpeasy-0.1.6-cp39-cp39-win_amd64.whl
Size 831.3 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
45eeff6c746cb25e67ac88c2165a704b8da00b330039b3bc748d394ca7d33f95
BLAKE2b-256 checksum
How to use checksums
6131c837e9574e691fcc9b28a9d1d46f46397c43cf552553b9a809f11e5316b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp39-cp39-win32.whl

Download URL bpeasy-0.1.6-cp39-cp39-win32.whl
Size 750.6 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
de3f8513c8c1b851466e5f4827c17064135b2d473ac1422240fd60c11a0c869c
BLAKE2b-256 checksum
How to use checksums
5927a3b3381c4df6922c36f40bf5e85842020ec285d5c2f4e58dce2110d3b8a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bpeasy-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5ad29f1b8b5df8804d74357e473bfbd762ebde1a59d378e0c4bfeeaf9841bba9
BLAKE2b-256 checksum
How to use checksums
3e12c79834ba01d9a0b8a4a067857e7a6214e4e004386c833dd2b5da2c9edb08
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bpeasy-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
f1db5ca285f1b41e523fe16c13f94c761c6d298cdbbad3b5cc69b6c0335f518a
BLAKE2b-256 checksum
How to use checksums
3470617da715148a570caae5c052b66e5c5d57e87ac636e5dae53edae9b367cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bpeasy-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a11ef3172b5442aadd0c967ef58b0f40db1e1dcdbb91a707361e02c038acc058
BLAKE2b-256 checksum
How to use checksums
4a08978aae43b686c04121004d1f14078fb2d0cd9b07f2419defbf4e410c4894
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bpeasy-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 948.9 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
643a8a479854b01e48069e0670b81e6be2adf5fa87f1cd175402d08e012e13af
BLAKE2b-256 checksum
How to use checksums
573f8c003e262d89c3ce8404099a3f83cadeeaf52d6a83c3a7f073ea9c14102e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bpeasy-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 952.2 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
696879aa9992feb77639bfe3d437fcc6ead6fcdad81a222a5b316d481bfd012a
BLAKE2b-256 checksum
How to use checksums
52838a30dd9937b342f516e9fb957f19f0786119847a38d41b854b61a9d73946
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bpeasy-0.1.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Size 990.7 kB
Tags CPython 3.9 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
fe7045f781e887ebfb2d1e95e66965ccdbf3ba3c36bb572f078a6128018d9300
BLAKE2b-256 checksum
How to use checksums
db35683734207447609b3d0d8dc2996df8b47d754372b93908f516c32b6acef2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp38-cp38-win32.whl

Download URL bpeasy-0.1.6-cp38-cp38-win32.whl
Size 750.4 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
d9110378cca3f0f5b77184de4528ed5c903a483d8096db9a8392a12889ecc751
BLAKE2b-256 checksum
How to use checksums
a42e0c28c591b0c19046f381d10b3d790a755c55b49157befe29e5fc1dfb8836
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bpeasy-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
64b99ceb719bb805489ace6a4a7e6ae88836b5e500560e5181230b6ee1a0bcab
BLAKE2b-256 checksum
How to use checksums
455878e87e74a828f4bd209ce5291023456a9a908f4cc0f899dd12d41774c38d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bpeasy-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a25ada1aa9518d73b63b6cee53be508ba0f3a81650a0a221e76a47d5fda6083e
BLAKE2b-256 checksum
How to use checksums
be9f23951d17baa866d737f34bf9e2f574ba3928d5a1bb6c934371996e1b719e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bpeasy-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b98282213724818ddb15324cee466e2380d63f3bf03b22e57fbc2aa322a87d67
BLAKE2b-256 checksum
How to use checksums
f17cb7640b62afed5ffae51baf0e70f4c7f7357cf4f204dc7b785885af1ec6b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bpeasy-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 948.7 kB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
f4c23f59039eb8da697d60b9676a38905048102af9b731ca17828e013a2cbe6a
BLAKE2b-256 checksum
How to use checksums
34c4589ec5a35d24268a89c20d1828bf9bdb72965f47c8a34df1e078f2a572b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bpeasy-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 952.0 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1446e60c5659c09216c501441da453510bd2f363aca80719d8c1a169b42a41c6
BLAKE2b-256 checksum
How to use checksums
c394b46f8223184cee814115982322086fb540d6254a3344e6f4f02ca3026f6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release files / bpeasy-0.1.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bpeasy-0.1.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Size 990.4 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
7fb39339da6d760e363a39a01ad23d5105022ee7a745ac98eb7230d7109b1cc2
BLAKE2b-256 checksum
How to use checksums
eaab672296d3dcffc5638bf336a6bd33346ef73df5698429cf387ac09d9ecb5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.9.0

Release history Release notifications | RSS feed

This release

0.1.6 This release

78 release files

0.1.4

65 release files

0.1.3

65 release files

0.1.2

69 release files

0.1.1

69 release files

0.1.0

69 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page