Fast multiword anagram solver.
Project description
multiword_anagram_fast
A simple fast multi-word anagram solver for python, implemented in rust, with big speedups if you know some constraints you want to use. Such as maximum number of words, starting letters of words and excluded starting letters, or pattern matching.
install
pip install multiword_anagram_fast
Or if you are using Google Colab you can: !pip install multiword_anagram_fast
usage
from multiword_anagram_fast import AnagramSolver
solver = AnagramSolver()
solutions_txt = solve.solve("anagram_this")
11589 solutions saved to ...\anagram_anagram_this_maxW_4_minL_2.txt
Answers are written to a file in your current directory/workspace. We dont print them as there are so many. But you can print with:
with open(solutions_txt, 'r') as file:
for line in file:
print(line.strip())
Using known constraints lets you get solutions faster too. Here is a more involved example, using constraints:
phrase = "tendedrosevine"
must_start_with = "TR"
must_not_start_with = "DNI"
contains_patterns = ["TE", "IN"]
max_words = 4
min_word_length = 2
timeout_seconds = 30
max_solutions = 20000
solver.solve(phrase, must_start_with=must_start_with,
must_not_start_with=must_not_start_with,
contains_patterns=contains_patterns,
max_words=max_words, min_word_length=min_word_length,
timeout_seconds=timeout_seconds,
max_solutions=max_solutions)
The previous query will get results where:
- At least one word must start with T and another with R. But more words are OK.
- No words may start with D, N or I.
- Every solution must have "te" and "in" must appear in words both once or more.
- Solutions will use all letters but no more than 4 words. 1,2,3 or 4 word solutions are valid.
- Shortest word allowed is length 2. So no "a" or "i". The dictionary we use has quite a few 1 letter words and they cause the number of results to explode and the quality is lesser, so use min_word_length of 2 except for smaller anagrams.
All input options and their default settings:
must_start_with: None
can_only_ever_start_with: None
must_not_start_with: None
contains_patterns: None
max_words: 4
min_word_length: 2
timeout_seconds: 30
max_solutions: 20000
output_file: "anagram_solutions.txt"
- timeout_seconds: will force anagram solver to stop after 30 seconds has passed.
- max_solutions: will force anagram solver to stop after 20000 results have appeared.
With larger anagrams (e.g. 12+ characters) the number of answers begins to explode; so use constraints in smart ways to solve the toughest.
If you find a word you like (e.g. "furnace") in a big list then try running the same search again but now with contains_patterns=["furnace"].
The default dictionary is - UKACD - around 200k english words allowed in crosswords..
You can provide your own dictionary when loading the solver with:
solver = AnagramSolver("C://Users/you/files/your_dictionary.txt")
You can also add additional words to the dictionary of an already loaded solver. This is great if you know there is additional context that might be included in results that would not be in a standard crossword puzzle dictionary.
# load standard english crossword dictionary 200k words
solver = AnagramSolver()
# download a small wordlist
!wget https://raw.githubusercontent.com/britzerland/baronsbafflers/refs/heads/main/blueprince.txt -O blueprince.txt
# load newly downloaded words into existing english dictionary
solver.load_dictionary_file("blueprince.txt")
# solve anagrams
solver.solve("ovinn nevarei")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file multiword_anagram_fast-0.1.0.2.tar.gz.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2.tar.gz
- Upload date:
- Size: 486.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a28cbc38d85b77be3fbe105865cfd31cdeb4512d43a61dadaff9c7b625cae5ca
|
|
| MD5 |
4401dfd7092bf2900607f4a049567407
|
|
| BLAKE2b-256 |
e8a9d23e918c71aa63cabc0310037f7f99e63dc9272b74e4ddc93a961b1f60c8
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2.tar.gz:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2.tar.gz -
Subject digest:
a28cbc38d85b77be3fbe105865cfd31cdeb4512d43a61dadaff9c7b625cae5ca - Sigstore transparency entry: 223471538
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 969.3 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75f0eeaf38d07d0424347213b3823fa8aebd0e0cfd8a1b2827e1f0b2ea35e5cb
|
|
| MD5 |
d8f7d7d5ee324d6ba71959bd1007494f
|
|
| BLAKE2b-256 |
0e870edc44b4317ca9bf1415a5992f71218c299384ebc2e9918af86cfe6e5423
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
75f0eeaf38d07d0424347213b3823fa8aebd0e0cfd8a1b2827e1f0b2ea35e5cb - Sigstore transparency entry: 223471727
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 998.6 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5bd2ff3432a5aebb4026c729762350dca811cfc1f51ae7c790ba35990d8aa57
|
|
| MD5 |
f55366c2de1cc2d3778d1d08f93fa6fe
|
|
| BLAKE2b-256 |
8620b164a2fdaf11c40fe01507827533c285ed17cfe680e6cbac6b0955ffa304
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl -
Subject digest:
f5bd2ff3432a5aebb4026c729762350dca811cfc1f51ae7c790ba35990d8aa57 - Sigstore transparency entry: 223472296
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a8e183983f4d6d44e126be16e8b55854cd3eab057a420887260f950760f4783
|
|
| MD5 |
2def4209def7937d9be29a588d5f3086
|
|
| BLAKE2b-256 |
369f5ebfce89ec85284a04b998a08a803165c26412971cce60acf7a203c33956
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
8a8e183983f4d6d44e126be16e8b55854cd3eab057a420887260f950760f4783 - Sigstore transparency entry: 223472311
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 972.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89ddccc436bac05f5dae184b9160f67550054ab847dd420b164bc0fc640165f3
|
|
| MD5 |
136870a71f4e2cbe65be4a7d0e6d97b1
|
|
| BLAKE2b-256 |
6802b9c4e6c8d767eef38237122b1c009a512118776ed8cd255b86fd22b5dca4
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
89ddccc436bac05f5dae184b9160f67550054ab847dd420b164bc0fc640165f3 - Sigstore transparency entry: 223471574
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 798.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bb4671961fb45064af2209ec44f0069549c0040f58fb8c757bd4fd1016a47d6
|
|
| MD5 |
d0ed9f79b2483a36fb5807e34b92e528
|
|
| BLAKE2b-256 |
0ff3cd0298ab8a77fa23c0073f8cd3eab4cf408a901cd3fd684287095be1eeb6
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
7bb4671961fb45064af2209ec44f0069549c0040f58fb8c757bd4fd1016a47d6 - Sigstore transparency entry: 223471734
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 843.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13523b95bd3c83640f20ea86c795f9bf6fa81f21e25a364bb0e7d650a233bdd6
|
|
| MD5 |
1094de7544bfab8f6230bd56b5c0bef5
|
|
| BLAKE2b-256 |
3441a96dddd891acb7a76eb3f56f8f667effcf596ad7b3b11b7cc7a473ad23eb
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
13523b95bd3c83640f20ea86c795f9bf6fa81f21e25a364bb0e7d650a233bdd6 - Sigstore transparency entry: 223471704
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 922.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47a7e35278e1ff8c965c1fb2b61b28321e4f2ca54ed462bfe9b792e06a6bd65e
|
|
| MD5 |
415ef14bb6106b0ded2933971a6909df
|
|
| BLAKE2b-256 |
e76a1977c60426058583425e095d2d9decef42c94edd9a22606b4eea6f4b7e09
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
47a7e35278e1ff8c965c1fb2b61b28321e4f2ca54ed462bfe9b792e06a6bd65e - Sigstore transparency entry: 223471890
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 808.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5557f76f36344ffed3828ac8848a3f2f92f1bbb2dea2e542dc2f794a31dafcb
|
|
| MD5 |
7e03c839bbbdccc4d26f1821233e9f6b
|
|
| BLAKE2b-256 |
78a14407bb8ecc1566b352e9910f4dda1d755265d4b5047b8971fc8d345c03b7
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
b5557f76f36344ffed3828ac8848a3f2f92f1bbb2dea2e542dc2f794a31dafcb - Sigstore transparency entry: 223472201
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 793.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7ada35474ab3733fdf2e516c3c4236cc2e75e52d8a84679f78e2898bc83525d
|
|
| MD5 |
eaffe991d8c766b4fa7d28388b4db4e1
|
|
| BLAKE2b-256 |
5a860edd3691ae384d9aa5d7e03b7158c8fb2a5e68676f2495d231a6316fac19
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
b7ada35474ab3733fdf2e516c3c4236cc2e75e52d8a84679f78e2898bc83525d - Sigstore transparency entry: 223472079
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 823.2 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
990543a561c236f89dc8e2ff05a759af03ec88a93edaca4d53471b60e3951b33
|
|
| MD5 |
0db1007583dba3ee00d62e5a4c236a9a
|
|
| BLAKE2b-256 |
0b78507822dbac822fa8396373d870a8000bd6d8761f4f934b533707cc298d33
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
990543a561c236f89dc8e2ff05a759af03ec88a93edaca4d53471b60e3951b33 - Sigstore transparency entry: 223471649
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 969.5 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b178a5fac4bec11529c972dc7b1b79771726ce631e3f3fededceb3194c4f4c1
|
|
| MD5 |
3679028a5d30bfbeda7c0db68c53f20c
|
|
| BLAKE2b-256 |
b2bcbb8dff6663713a53222ae60ecce9929ea04d15b967a3d01c7a3ec27a7d4a
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
8b178a5fac4bec11529c972dc7b1b79771726ce631e3f3fededceb3194c4f4c1 - Sigstore transparency entry: 223471622
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 998.5 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf6c1f0a61b64674912e6e2f039a12533213b6eb4d8c5f707665c8d3b1c98a4a
|
|
| MD5 |
12231ca92c92412c5cc536a3cecce22c
|
|
| BLAKE2b-256 |
f24edfd73889ddfc99a2afff6ecaa61e9eccabf9ee16868c4801f502976930eb
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl -
Subject digest:
bf6c1f0a61b64674912e6e2f039a12533213b6eb4d8c5f707665c8d3b1c98a4a - Sigstore transparency entry: 223471774
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a583dd5fecfc394c94eb8a91b18601a72dd220822c174bebc5dce91011f999c
|
|
| MD5 |
7d9c303c51fa02b779742863ae3e3882
|
|
| BLAKE2b-256 |
6a143857b00af7095942f22e578f9500f63698820b2efc69ae82583c68c110fe
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
1a583dd5fecfc394c94eb8a91b18601a72dd220822c174bebc5dce91011f999c - Sigstore transparency entry: 223471993
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 972.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd32411efd57fec5f8923716897f8ffa8323899ab2999a73528a84893135a40f
|
|
| MD5 |
b0b1cb1e575763ada06e199d6fa6e5a0
|
|
| BLAKE2b-256 |
409feaf095775b9e0e8068e4ca771035d72bf5df5c6b0223670529b07988f154
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
fd32411efd57fec5f8923716897f8ffa8323899ab2999a73528a84893135a40f - Sigstore transparency entry: 223471839
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 798.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f87e8005e33679e1663deabfea8087c1f7154363747a28440addc666f5c1b15
|
|
| MD5 |
e801d0a5286c154173d608cf8ea57149
|
|
| BLAKE2b-256 |
1aca9b20e7967c0d6c9a52e3f95675166b2b634a46f9c1a8078c5b80069b233a
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
5f87e8005e33679e1663deabfea8087c1f7154363747a28440addc666f5c1b15 - Sigstore transparency entry: 223471862
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 843.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f2131e9b3acac8a2f965c337f0a5bb9df523ac54829dabd3623aabb19b0f063
|
|
| MD5 |
92dbbfb61a077901e6e7ac394d913645
|
|
| BLAKE2b-256 |
8a05506f68e798ab5196f44ca83b79721df30f4adbe8a02b22b70271c8af05ed
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
1f2131e9b3acac8a2f965c337f0a5bb9df523ac54829dabd3623aabb19b0f063 - Sigstore transparency entry: 223472302
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 922.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c5fac1da2abc6d1a74ea2afd19f13ebfc8f80aa096611bd9be101b00c50b0c1
|
|
| MD5 |
b6ed6062d83e6e0862651889f3068c41
|
|
| BLAKE2b-256 |
2bb8e6d8a1b7b370439ba6f23ae7bed56114b48601dd7b5aa258071874d8225b
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
6c5fac1da2abc6d1a74ea2afd19f13ebfc8f80aa096611bd9be101b00c50b0c1 - Sigstore transparency entry: 223471669
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 808.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15fe1f27eb647890675e8cda0aaaecd62badf3bcc003a858254ff4aa1a659f4f
|
|
| MD5 |
723a244708424fe2a8029e6a33cd61a8
|
|
| BLAKE2b-256 |
82915b319e326765bf2dbcf7e3279d345f1e6891fab2a030dffd2221e0e3f681
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
15fe1f27eb647890675e8cda0aaaecd62badf3bcc003a858254ff4aa1a659f4f - Sigstore transparency entry: 223471720
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 793.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e15aaf4dc83458eebfcbf9de4ad6db4f5e025fd8552ba4f77b106361566d8a4
|
|
| MD5 |
6d3e61817dad9fe955373abc9ecd5fe1
|
|
| BLAKE2b-256 |
e1268e92dc26865ee7064a2c1a06ad66a9d369b58e0d9fb30c189015075d56fc
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
5e15aaf4dc83458eebfcbf9de4ad6db4f5e025fd8552ba4f77b106361566d8a4 - Sigstore transparency entry: 223471599
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 823.4 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
954969a6ee570a236a3da9f64b25decae1e1cfe4b8efdd12c6485388c2729abe
|
|
| MD5 |
bf6d367c2e5194ff9d12a0598c6d7ea2
|
|
| BLAKE2b-256 |
32caacea93594e0c4a29b630a1a84d2cd27e845128a9c9a6d1c8790ac6709c1d
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp310-pypy310_pp73-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
954969a6ee570a236a3da9f64b25decae1e1cfe4b8efdd12c6485388c2729abe - Sigstore transparency entry: 223471748
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 969.9 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64e6dffed718b3bb7b3bb66b66a2cb6301b68ce5229e3fcb1b2357f51138b70c
|
|
| MD5 |
5e78a3276b53ec65fd8dbf782a088bd4
|
|
| BLAKE2b-256 |
1109a6605c32bfa361a9b438b1b8e3a40af1a7b39a540bcf8d6f4ee9cbc63873
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
64e6dffed718b3bb7b3bb66b66a2cb6301b68ce5229e3fcb1b2357f51138b70c - Sigstore transparency entry: 223472234
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 998.7 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
097c8d0f9935efd7a732f76774add527dea3f2331ae7c0223b8916aa0a921844
|
|
| MD5 |
1ccd5ff2aa7bbcd94c20a89e4905648f
|
|
| BLAKE2b-256 |
507c48e65ebffd0f74e70af2704f1aaef63ac22045ccb294c18240cd1974ff2e
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl -
Subject digest:
097c8d0f9935efd7a732f76774add527dea3f2331ae7c0223b8916aa0a921844 - Sigstore transparency entry: 223471960
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37c90b5ac93384158cf622e0d588bbbc2ad6990914ad2ef5de7f319a71f8c973
|
|
| MD5 |
294158e8f9a786cc572fa44eeb482b9a
|
|
| BLAKE2b-256 |
5dbc9ef919df3b96888d7af01ceb2383b5024206a53ee9e8d4d1cd2e7b05d39f
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
37c90b5ac93384158cf622e0d588bbbc2ad6990914ad2ef5de7f319a71f8c973 - Sigstore transparency entry: 223472044
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 972.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4193b765011dec78114b33d32950f97380ee946bfd1ba348759a11cc7cd4f834
|
|
| MD5 |
498a20661296a59ba71ed552aef642aa
|
|
| BLAKE2b-256 |
a45d01eadbde4767a655dcf8c93613d4aeca4e42d544d08f1297c87c3920db6a
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
4193b765011dec78114b33d32950f97380ee946bfd1ba348759a11cc7cd4f834 - Sigstore transparency entry: 223471796
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 843.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0db1dcca31e69801caa67ed4388f212683f479f83f4ddc5c409ea9f44369f2f0
|
|
| MD5 |
9f624a0dffa9a521b144de06bb6a0677
|
|
| BLAKE2b-256 |
06cc255d93e6f58243923ebd67c5a371d41261eb39226872d932317459b18822
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
0db1dcca31e69801caa67ed4388f212683f479f83f4ddc5c409ea9f44369f2f0 - Sigstore transparency entry: 223471882
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 924.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4407f0f36001772df2eee3cec748b6885d14791948024cd9244c17e1bf5c427
|
|
| MD5 |
5d2d0c5a9501020fee3ab0b27ee9491d
|
|
| BLAKE2b-256 |
a39ac56163cea28e953dafbf54f45b26880e4cfb8e4ce00795eb5ecf4788f1f1
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
e4407f0f36001772df2eee3cec748b6885d14791948024cd9244c17e1bf5c427 - Sigstore transparency entry: 223471911
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 807.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8a19810fe0962c8ad27de222721b1b730e8c094de198b8877c1b9095d93f8ea
|
|
| MD5 |
8eb3cf10f433729f0cf143459c963567
|
|
| BLAKE2b-256 |
38ac099a9306b5ba750a84e7555e6741c5eede176f5f6d83ef225cde03b01198
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
c8a19810fe0962c8ad27de222721b1b730e8c094de198b8877c1b9095d93f8ea - Sigstore transparency entry: 223472271
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 794.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31864766fb51de6f3ca8020759bf05b3a66d8f1d066ed2519d03132bac7c2be9
|
|
| MD5 |
c6c6d418f899a42b7503e4ca2deb994f
|
|
| BLAKE2b-256 |
82001cdc15bcadfeb5361d63467905ff04373875b6a85d7735356c67f95a838e
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
31864766fb51de6f3ca8020759bf05b3a66d8f1d066ed2519d03132bac7c2be9 - Sigstore transparency entry: 223471941
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 797.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c79449192d77a760df663690f4a8bca92f8955809a4b1a3cc06fbefda449c092
|
|
| MD5 |
1663b8f8dc0020f5c2cdb224bd323d6d
|
|
| BLAKE2b-256 |
4ff6106fb977e918969e2f1ec3f7267f957941381a006f69f9880612ee629d05
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
c79449192d77a760df663690f4a8bca92f8955809a4b1a3cc06fbefda449c092 - Sigstore transparency entry: 223471615
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 822.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
474b3d7b1dfd2c40fefb4df41e02a8f782d031b3ecf1be2f1fea28bc67b2ac37
|
|
| MD5 |
f2469492b283a823a006d2bf222cf6eb
|
|
| BLAKE2b-256 |
e44dc7ca8adc306f5eb3360bd65d0a571f24f996e42d61e7ecc214bff685e34c
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp314-cp314-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
474b3d7b1dfd2c40fefb4df41e02a8f782d031b3ecf1be2f1fea28bc67b2ac37 - Sigstore transparency entry: 223471977
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 968.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5a309dc08e755ef65800c025e50f2160626b6abd4e820580c6cc5df975078a4
|
|
| MD5 |
213753e5539783078321d4c76841fba5
|
|
| BLAKE2b-256 |
8c3e35d93e6abaec265b66c825656cc1c1e02d2ad8a993069f49901746aebfd7
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl -
Subject digest:
b5a309dc08e755ef65800c025e50f2160626b6abd4e820580c6cc5df975078a4 - Sigstore transparency entry: 223471868
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 996.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dda40486b7a9b70e714bcaaf19231d79e953986bc389e1906b5761c43011448d
|
|
| MD5 |
801ad608e660daee42be4dde59e0836e
|
|
| BLAKE2b-256 |
9ef8483f9d7a05aba7fbbb73a1d2a9fb9150e50c6c35129d72ab824430ff7ca4
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_i686.whl -
Subject digest:
dda40486b7a9b70e714bcaaf19231d79e953986bc389e1906b5761c43011448d - Sigstore transparency entry: 223471764
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc01b2ed59f8866b59b31eab7d8abbca7a0b3d7f8d176b56ae0aae28487318ee
|
|
| MD5 |
56ac4f9c6afe77d6f900d1e94fc72a88
|
|
| BLAKE2b-256 |
a2964128d8b89d1771651f7c2835c76d6b502b63ad26906270a8c358ff9fba11
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_armv7l.whl -
Subject digest:
dc01b2ed59f8866b59b31eab7d8abbca7a0b3d7f8d176b56ae0aae28487318ee - Sigstore transparency entry: 223472242
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 971.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
958d4065edbc20982c0d6e9eb6e13c74b0c473c5711834d74860a9f79cd0d39e
|
|
| MD5 |
776a37c51a1ec1510478b6e00bdafd9e
|
|
| BLAKE2b-256 |
0378cfadb0959a5fb483f9a17c994e62022b945479b87025bb61f62ce06c688a
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl -
Subject digest:
958d4065edbc20982c0d6e9eb6e13c74b0c473c5711834d74860a9f79cd0d39e - Sigstore transparency entry: 223471691
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 843.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a5fc2040068fc213d42866b8df88625a194e1d42da1c6e80e5d14456ba0b16e
|
|
| MD5 |
dbef694c5b43eff9ac3d78bafa11d041
|
|
| BLAKE2b-256 |
49d69f03e7bea4ca470983403bf1a0b2f4ce5c341631ccbad9f3b3a61be63fe2
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
7a5fc2040068fc213d42866b8df88625a194e1d42da1c6e80e5d14456ba0b16e - Sigstore transparency entry: 223472120
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 920.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2e951001312e481229396f8f396633dbf5bd9974c2266254ddf411e7c5aa6f1
|
|
| MD5 |
fd7d8487b56a6748f89242498a2b036a
|
|
| BLAKE2b-256 |
3ace45f1d54615b6df70fc95b95ef48e96164c8f0d51c1095c72f406ca6d656e
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
e2e951001312e481229396f8f396633dbf5bd9974c2266254ddf411e7c5aa6f1 - Sigstore transparency entry: 223472259
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 806.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2643170a0d718368f23c41d65c48e702c8e8535315bd854f20b8b0bf6029ede9
|
|
| MD5 |
ea1e70e3029f7d9e2c111e7c824727aa
|
|
| BLAKE2b-256 |
1111de0d7d34f0dcccd00432b0a3986305c41cabd46bbbf795b556cd4a07700c
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
2643170a0d718368f23c41d65c48e702c8e8535315bd854f20b8b0bf6029ede9 - Sigstore transparency entry: 223472358
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 792.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fa66282cddb073bcdeea2ad649950011537aa734b69572a1a5c83c150961391
|
|
| MD5 |
bb5e23e58c806352eb8fe4d451cac693
|
|
| BLAKE2b-256 |
9944df81aa51650c58e66e3667b369815571e6c88c1e42fc4b9b061f78a2a93d
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
9fa66282cddb073bcdeea2ad649950011537aa734b69572a1a5c83c150961391 - Sigstore transparency entry: 223471698
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 666.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95ec42c4f110ca0e4ebe93c1ab0d55108d6432bede03a83c90fefb4bcb4dae0e
|
|
| MD5 |
8e7ab82459d3cf609b07c7a083750059
|
|
| BLAKE2b-256 |
47af9f89ee454001619e4743f3f4d5fc913520e4de9da6f01ff0381da7e09543
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-win_amd64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-win_amd64.whl -
Subject digest:
95ec42c4f110ca0e4ebe93c1ab0d55108d6432bede03a83c90fefb4bcb4dae0e - Sigstore transparency entry: 223471710
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-win32.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-win32.whl
- Upload date:
- Size: 661.1 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20f96f1785a44161bd4712dbe962e7b4907566d9787ef6720e7a5ae76598f969
|
|
| MD5 |
75df9217411ab38f75a42865e34da617
|
|
| BLAKE2b-256 |
de65d3cdb2566d79575d5f6df2da5c42f2395ade3a9336875620baafe0ff56b7
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-win32.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-win32.whl -
Subject digest:
20f96f1785a44161bd4712dbe962e7b4907566d9787ef6720e7a5ae76598f969 - Sigstore transparency entry: 223471560
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 968.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
918312a6d167f51694cd78c91b4bda64c8753153fdb19741ee20058ee939c5ef
|
|
| MD5 |
d7e0bb5b691503216e33a705d69244b2
|
|
| BLAKE2b-256 |
0613dbe31168f8d98c86dabf15c2c33aa5114d00d204b605b5738658a95638e5
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
918312a6d167f51694cd78c91b4bda64c8753153fdb19741ee20058ee939c5ef - Sigstore transparency entry: 223471822
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 996.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71967fc1dbd2b61fb69538867da350bffcd9613d0902002697e8182b0ef3a8a0
|
|
| MD5 |
0775d3a44949f784a28842628a31669c
|
|
| BLAKE2b-256 |
4a48bc95d6b06b989b6cd952d70047145caa3d4c4831c9a96d0ae469783c5674
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
71967fc1dbd2b61fb69538867da350bffcd9613d0902002697e8182b0ef3a8a0 - Sigstore transparency entry: 223472013
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af689896f78df7cc6c12c80a5931febd7b06a02e08ee004cb3ade740405395b9
|
|
| MD5 |
e028c9ea3cb45c4bad8c039b699b86d2
|
|
| BLAKE2b-256 |
e76cfe189a90602937ae554b9e1c1ad36c5aa7ddea5fd85b6c244c2230f68fe9
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
af689896f78df7cc6c12c80a5931febd7b06a02e08ee004cb3ade740405395b9 - Sigstore transparency entry: 223471716
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 972.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79aa0db6a4533b27720ff6b8df0bc2d1cfb398f8f141db9951f1a3cca7d07145
|
|
| MD5 |
392432b1f111e7e83e1d3332c0cc85ce
|
|
| BLAKE2b-256 |
c18ff1aaf7939d22fa6d9d462418523a3a1023c6fb3dd43fadcf983766cbc794
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
79aa0db6a4533b27720ff6b8df0bc2d1cfb398f8f141db9951f1a3cca7d07145 - Sigstore transparency entry: 223471927
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 797.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56c36ec6b580adf0071080aca8f45580ab220590a0ed48077dbaa156f35e3630
|
|
| MD5 |
dabd818fd4d160056f9d9658d54caf84
|
|
| BLAKE2b-256 |
b62da63b242d5d7d0b5b78d8dde5266094d0839fd179e092f6c2c8430e90431d
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
56c36ec6b580adf0071080aca8f45580ab220590a0ed48077dbaa156f35e3630 - Sigstore transparency entry: 223472066
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 843.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84283e164ae9566402a99d1bade13b5f9259c1370460a65c6a59a62624299bf6
|
|
| MD5 |
ce099fe87743de3a8fb800c3c5a73923
|
|
| BLAKE2b-256 |
22919c497f64bb9de58d2ed3a21051e13ce989cab697266367f31b5b5e0cae9a
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
84283e164ae9566402a99d1bade13b5f9259c1370460a65c6a59a62624299bf6 - Sigstore transparency entry: 223471933
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 922.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb2a845b43988ece160265b0cd04d4725d04ca408a850adb3838c92e1413f702
|
|
| MD5 |
aabe77d1c5f467ec3dffd9df1b775868
|
|
| BLAKE2b-256 |
029b9cbdb928c3286ad14d6bf721a6392f1d6e51df0db7924412e37da62d2608
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
bb2a845b43988ece160265b0cd04d4725d04ca408a850adb3838c92e1413f702 - Sigstore transparency entry: 223471801
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 807.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29ce01e430cd24f700351fd81c1335b827cc8ca4ce746419978701a9dd7524e2
|
|
| MD5 |
363eafaf1ba069a8509411061426a544
|
|
| BLAKE2b-256 |
bd8528a6cb913d015b1c166e7539e107190fb4e9ecc5545682c71f4391039f5c
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
29ce01e430cd24f700351fd81c1335b827cc8ca4ce746419978701a9dd7524e2 - Sigstore transparency entry: 223471550
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 793.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aeb1d73b4a184cd33de09d60f4c14a32459ccae71fe0ac72326aa6a99a758f7e
|
|
| MD5 |
287ee110d03af48bad9f429866063a4a
|
|
| BLAKE2b-256 |
5cebf8ceca868d2c2340d0ea20f3cc050fa191e55fc0ca0acf13101285e6d418
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
aeb1d73b4a184cd33de09d60f4c14a32459ccae71fe0ac72326aa6a99a758f7e - Sigstore transparency entry: 223472155
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 821.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92611d0072704daf7aace02e9821cb5287ef731f09af494bb6e609dfc25a5622
|
|
| MD5 |
59042a7ece8578014045dcea6e7ab1cd
|
|
| BLAKE2b-256 |
1a362ae287bb3c102b213504bd1097ee9cdbbb5f69b4ff9a0af04eb68a86b851
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
92611d0072704daf7aace02e9821cb5287ef731f09af494bb6e609dfc25a5622 - Sigstore transparency entry: 223472030
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 757.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ace9770c536954a41a9977fa361d69805ca629f022815530d5e97c8faf09035
|
|
| MD5 |
15a89108197fdba3fd042d23970da823
|
|
| BLAKE2b-256 |
23c87f33d2e7987a810f4f79493ef40f9fe61f135735830f5b51f1628eb6fa59
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
4ace9770c536954a41a9977fa361d69805ca629f022815530d5e97c8faf09035 - Sigstore transparency entry: 223471657
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 766.0 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f792405415b505ebed099fdc7cb334ab5a93301e662e833a717c97f7f7724f0e
|
|
| MD5 |
60bdd00cece628ea048ed3440f9bb09c
|
|
| BLAKE2b-256 |
1f25760d67dadebc263f3ded282589e8494c6a6c4b9660df9a5aba7da11e0972
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
f792405415b505ebed099fdc7cb334ab5a93301e662e833a717c97f7f7724f0e - Sigstore transparency entry: 223471557
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 666.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16f421e86d088e8ca00b2ebd83ef710c8737b01fa11a8f201a9fa905a48a3a1b
|
|
| MD5 |
eec608fea37c2644b13cbd8c15f815c4
|
|
| BLAKE2b-256 |
3848f420afd505a4371e51e8f3f8b00a3e3c6525b58619e80774b8ac084db326
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-win_amd64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-win_amd64.whl -
Subject digest:
16f421e86d088e8ca00b2ebd83ef710c8737b01fa11a8f201a9fa905a48a3a1b - Sigstore transparency entry: 223471681
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-win32.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-win32.whl
- Upload date:
- Size: 661.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7da3db5466b937f1819c9febd521e947dada6f810c0de89a14cf720404cf9ad6
|
|
| MD5 |
d3e6a1074dbcecc7a32237e74ba58428
|
|
| BLAKE2b-256 |
1caff13bda1fd2317a295234eec6688565f002d7e0375081be03d9296fa9fdae
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-win32.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-win32.whl -
Subject digest:
7da3db5466b937f1819c9febd521e947dada6f810c0de89a14cf720404cf9ad6 - Sigstore transparency entry: 223472206
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 968.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b3bf888f51166b451233da6fa5a93142ca92c4f39505344cfb70cd9c83bf85e
|
|
| MD5 |
8293a96c2216494b7894507e4b98753c
|
|
| BLAKE2b-256 |
f843e041f8b44e8aa466898f8be243191e4106b6d134626c57c5befb49ec858d
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
7b3bf888f51166b451233da6fa5a93142ca92c4f39505344cfb70cd9c83bf85e - Sigstore transparency entry: 223472221
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 996.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee2ec131098ac4c5b3b2a6ee2d2f139bcf5f3415cd765e70a78de7d895033b9b
|
|
| MD5 |
8414da5640e5d001e6d27da1fdb54f45
|
|
| BLAKE2b-256 |
c428a334574750e92ef98401796938d06b0ee4a64df9240ff972d9d9f5ceca02
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
ee2ec131098ac4c5b3b2a6ee2d2f139bcf5f3415cd765e70a78de7d895033b9b - Sigstore transparency entry: 223471790
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d89970f9400dd8b5f5e8dd6fca987b800ce923f1440a1fe3cacac65e9c321436
|
|
| MD5 |
32aae3b1e09f60bcf976e9fdc8e03d70
|
|
| BLAKE2b-256 |
c9e88b0872aa16e6164cb6bf24823182e3c7916ec25119991a022400a082459d
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
d89970f9400dd8b5f5e8dd6fca987b800ce923f1440a1fe3cacac65e9c321436 - Sigstore transparency entry: 223472117
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 972.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e47041193add47211e0c284be14ff4898694d43b473d3c0ab7249c06c9e2a4a7
|
|
| MD5 |
3eb7366fdbb02275123d558ca6d92f32
|
|
| BLAKE2b-256 |
37a17407d7d52f1d6c21f9b47abf62376e4de1c8241d4bcef08f8607a7af16f8
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
e47041193add47211e0c284be14ff4898694d43b473d3c0ab7249c06c9e2a4a7 - Sigstore transparency entry: 223472344
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 797.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c164cf9311d31959dc087980fe906da7f8772a6f79ca73192490704d636ec23b
|
|
| MD5 |
115301e83313c6ebce88a9824c6a56b7
|
|
| BLAKE2b-256 |
5d3965e73a293fa2e380081867de79969920bfcf1719f02be43cb13d1817beff
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
c164cf9311d31959dc087980fe906da7f8772a6f79ca73192490704d636ec23b - Sigstore transparency entry: 223471589
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 843.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2da2dd7ad37d7fa2c610781ce0c98474b399499a696151015c3154596130e135
|
|
| MD5 |
b4df32604f665a36c1994e0a19223556
|
|
| BLAKE2b-256 |
11ccab45600f46705b7ce1e37d33863e2cfb29068b68990e4cadf43356193214
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
2da2dd7ad37d7fa2c610781ce0c98474b399499a696151015c3154596130e135 - Sigstore transparency entry: 223472128
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 922.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efb509997396b8b53353d92c0c14de70a9a41e64cccbd2fe190e8c4c59f70990
|
|
| MD5 |
be4951a0599c765dac2632816c4fdcdf
|
|
| BLAKE2b-256 |
739df997a25dddefbd8844acc3842d1dfc700fecba43a3847b48039ce37fd91d
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
efb509997396b8b53353d92c0c14de70a9a41e64cccbd2fe190e8c4c59f70990 - Sigstore transparency entry: 223472034
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 807.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed76d7cda6678813ba9deb31884ad184f3af1af1575563e2388dc91805574a3a
|
|
| MD5 |
f4ab3f6e9237892a8e93e4d2d34d3e74
|
|
| BLAKE2b-256 |
b49591fbb312984601fd6c71a18f232faf33431ffd4dcbb885aa2100c77580b7
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
ed76d7cda6678813ba9deb31884ad184f3af1af1575563e2388dc91805574a3a - Sigstore transparency entry: 223471646
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 794.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4caba4e7247216d8d3dc7fb6f6ad3da6ce4a5ec685f061840c66ee9717a8ad74
|
|
| MD5 |
9d7aaddb4ba322a771cd45b681294efe
|
|
| BLAKE2b-256 |
cf6f58a7a27c1ff5813273be8c57ffa3723843efc91a64234858d5131580678d
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
4caba4e7247216d8d3dc7fb6f6ad3da6ce4a5ec685f061840c66ee9717a8ad74 - Sigstore transparency entry: 223472315
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 821.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cad5cb675c996d31f30042a4483839dedb7cc01b0411656eb37c7bdefddc285d
|
|
| MD5 |
9f65a6ec7876d0ad9720f0613544efa3
|
|
| BLAKE2b-256 |
6bbe35b64a507e120651c7f55227be0d947838f57613de61640af3fed66f1273
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
cad5cb675c996d31f30042a4483839dedb7cc01b0411656eb37c7bdefddc285d - Sigstore transparency entry: 223471808
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 757.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfe7a7a3da4c6b419be0024f8d74e7cbc43d0a5f9c80b50884292cb699a57cb5
|
|
| MD5 |
c89bfa8ca5c216be71057b927a87ea55
|
|
| BLAKE2b-256 |
75d00599462cc3d817bbc6221e2c50fe43ac420275e481b7d068ea6ae8137d62
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
cfe7a7a3da4c6b419be0024f8d74e7cbc43d0a5f9c80b50884292cb699a57cb5 - Sigstore transparency entry: 223471780
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 765.6 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d27a046f2501c0d72e37e0d94089ab1cc619deb6681f06973741015f82c51364
|
|
| MD5 |
4ffc6ae1fc55fc2fb32709390c048841
|
|
| BLAKE2b-256 |
919e44e08f9fcfcaee0ba727b5708e0deae2af37585a4100ee919363a5166598
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
d27a046f2501c0d72e37e0d94089ab1cc619deb6681f06973741015f82c51364 - Sigstore transparency entry: 223472338
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 665.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0049e55e25ddd1a3683dd2f8ae47e61c64feae7d1fc16866813d66cf9b127b65
|
|
| MD5 |
28ddf7745b7ab349e2e36a57384c54d5
|
|
| BLAKE2b-256 |
b81bdcd8e962f62855521f0f5d60df181c04d1a1579ddb41424ff2e2499df33b
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-win_amd64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-win_amd64.whl -
Subject digest:
0049e55e25ddd1a3683dd2f8ae47e61c64feae7d1fc16866813d66cf9b127b65 - Sigstore transparency entry: 223472060
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-win32.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-win32.whl
- Upload date:
- Size: 661.1 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3ebb50f1427dd64c141def375fc71dcf596dc6e41ab21e239215e24eab2c22c
|
|
| MD5 |
d7904fcd0ae171d7a1d8bf6d27a981a7
|
|
| BLAKE2b-256 |
a9c93d684519d63153926d6a3b9db18c44cf5a6e8b875b3dfa293464094b3a61
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-win32.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-win32.whl -
Subject digest:
e3ebb50f1427dd64c141def375fc71dcf596dc6e41ab21e239215e24eab2c22c - Sigstore transparency entry: 223472142
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 969.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9f7d6bfb793d406d385e67c0c976a819a3549504722e62c7c803c2dba4b229f
|
|
| MD5 |
9e72189fa6873d986325bf144073ffea
|
|
| BLAKE2b-256 |
9743bb1777d01faf4bc2dfc7dff4bcda396bc7a9e8a28c5508cce79028cfdbe2
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
c9f7d6bfb793d406d385e67c0c976a819a3549504722e62c7c803c2dba4b229f - Sigstore transparency entry: 223471814
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 998.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbaf21ee968c3e78f014487bb7b7e86d2c6e0f856d80118acac138403d0a3595
|
|
| MD5 |
240e316c3ff05ee1c3c6742a791a8fc6
|
|
| BLAKE2b-256 |
57a2dd0fd83fdcb5cbea09c7f277feca03d232d33721a07ad0888e1239cc3467
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
dbaf21ee968c3e78f014487bb7b7e86d2c6e0f856d80118acac138403d0a3595 - Sigstore transparency entry: 223472178
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fc99750c725cc917fbdddc7d16fcfc2d3b6b8d344754769eb92b8acf7ac7f75
|
|
| MD5 |
f126f1ffbd4b1f7dc2af09dc332c9b71
|
|
| BLAKE2b-256 |
bf0478efe828db288ef5bb91aca64b4013cabd887e6b36ef4b9135a20d674380
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl -
Subject digest:
4fc99750c725cc917fbdddc7d16fcfc2d3b6b8d344754769eb92b8acf7ac7f75 - Sigstore transparency entry: 223471953
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 972.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f3d4b7f21b32f8bf3b24a7132c95e693cd2bfdf9a591739b62687dac3864c61
|
|
| MD5 |
ffad35c3057f6546f793217d6d743e44
|
|
| BLAKE2b-256 |
700e7010f7b704090d108d6dc3911c7077391510a51968c1f7b98c533e498940
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
4f3d4b7f21b32f8bf3b24a7132c95e693cd2bfdf9a591739b62687dac3864c61 - Sigstore transparency entry: 223471760
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 798.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0584d22a8b784bc9431651da2becbcf8862336c10c67b93ce1235803744f58df
|
|
| MD5 |
13c8c86765d864722c546a0e3dbe9ced
|
|
| BLAKE2b-256 |
334520714c9571fe6dba640453702c83ec0ad86ebef0f7176e4dee9924a5c6a6
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
0584d22a8b784bc9431651da2becbcf8862336c10c67b93ce1235803744f58df - Sigstore transparency entry: 223472110
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 842.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc254ffd3cb70698ae3d2f5a79e9ec9667d67c40c4a479b844d918dfb393886f
|
|
| MD5 |
85a1ff4409277d0d7103ee1bda134206
|
|
| BLAKE2b-256 |
f24f83270b05c7c314e964374fb5fd85060c0a35910da525e446720a5b6afcc0
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
bc254ffd3cb70698ae3d2f5a79e9ec9667d67c40c4a479b844d918dfb393886f - Sigstore transparency entry: 223472103
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 921.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8aa9bfffa62dc31dd90221b5ba038d79a64fef4d2f3b2571fb9583a17fdefd4e
|
|
| MD5 |
4b01aa72d3e1fcd10af7f9fa4e5b13db
|
|
| BLAKE2b-256 |
d63b4ba9090759388eb51762f90bb69734fcc405bd6300fb6dffb0b7c4fe7b0a
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
8aa9bfffa62dc31dd90221b5ba038d79a64fef4d2f3b2571fb9583a17fdefd4e - Sigstore transparency entry: 223472173
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 807.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d861c5160bdd8369d913943c1d81e72b6b75ed51d977c24829bf8476809005e
|
|
| MD5 |
bddcee2519ec70819c3afebafde103af
|
|
| BLAKE2b-256 |
4588a0e65d735dbe68af66969cdcf0f55c23b40cbffad282683b0b8dad7a893c
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
8d861c5160bdd8369d913943c1d81e72b6b75ed51d977c24829bf8476809005e - Sigstore transparency entry: 223472281
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 793.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32c9742f395207bbbcd1ff44b7ac6b7f2ab0956564910f9266a5456b29a2b4c2
|
|
| MD5 |
4a22938b34386b60fac12e7a6aa7f9a4
|
|
| BLAKE2b-256 |
275a8ba67ed8373e2b123047fd10db48812cf0529d619b11945cea26f9c9fa7f
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
32c9742f395207bbbcd1ff44b7ac6b7f2ab0956564910f9266a5456b29a2b4c2 - Sigstore transparency entry: 223472229
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 823.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
039b7150c468099cdc631630e386b03327ed4efe0489995e38a46d9a21b3bca2
|
|
| MD5 |
f7298bfefb962b81ffd37e19caed9127
|
|
| BLAKE2b-256 |
975e76f63fe5b40bbaf6b00092fed228588e306d3bae7f126fd5dd38554c2f2a
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
039b7150c468099cdc631630e386b03327ed4efe0489995e38a46d9a21b3bca2 - Sigstore transparency entry: 223471610
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 761.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a697022e96b4bbe9e6a057ce60827b7bfcc372623e073f5481766c46efe066c2
|
|
| MD5 |
df18d461f77e4ec74ce712eb771284f1
|
|
| BLAKE2b-256 |
ee930f0ce1ddf1dc31c295fa8ea7ed8e77d032d5b210037ac121cd2ba058239b
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
a697022e96b4bbe9e6a057ce60827b7bfcc372623e073f5481766c46efe066c2 - Sigstore transparency entry: 223472003
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 770.0 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
829727e32eeb7dd9e73291b82f9771452397db22a74d5222203297aeda195949
|
|
| MD5 |
37b548ebeadfc877cb75342abb797257
|
|
| BLAKE2b-256 |
6f790bce5b6c4876dacf63e50db464bf25c4889c3628767e516ce8b68df92607
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
829727e32eeb7dd9e73291b82f9771452397db22a74d5222203297aeda195949 - Sigstore transparency entry: 223471845
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 666.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab0d22369b64a915219cb49344ab3775a9a220d6f086a1137c0d2d54e0e5c5a6
|
|
| MD5 |
b97e0ad9b44c5feb54594f4e07adb87b
|
|
| BLAKE2b-256 |
a1f9945cbd7c4c2526be392c891f53ad06ba1696a9d1cd52efa4f001fda65e9e
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-win_amd64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-win_amd64.whl -
Subject digest:
ab0d22369b64a915219cb49344ab3775a9a220d6f086a1137c0d2d54e0e5c5a6 - Sigstore transparency entry: 223472139
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-win32.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-win32.whl
- Upload date:
- Size: 661.5 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
629034b7f2127fd96f931fec3c5d7aa9142ba376f3ef58cbbb25a9b6459a9627
|
|
| MD5 |
103916ba406c8b8515602b854697ba7e
|
|
| BLAKE2b-256 |
afda98441df053fd6b1a8413b60d4d019b04f0a16f86824bd0f4bab3694300bb
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-win32.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-win32.whl -
Subject digest:
629034b7f2127fd96f931fec3c5d7aa9142ba376f3ef58cbbb25a9b6459a9627 - Sigstore transparency entry: 223472159
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 969.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0d9dba243d9d1f1b4f4bf457795b11272c8e245cb8b757bc9395f36ebf082ed
|
|
| MD5 |
874802ea578a3e05caa557c8046cdc26
|
|
| BLAKE2b-256 |
ed3251932f17a54b16da0a4a983a597d5ba16f45f8a4278b060eeb363f7ece1e
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
c0d9dba243d9d1f1b4f4bf457795b11272c8e245cb8b757bc9395f36ebf082ed - Sigstore transparency entry: 223471919
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 998.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10a91e9cd1600ae787e6de67af0f98c5f1e017bb54879c42a6fd3e07b7e480fc
|
|
| MD5 |
56f90f87c26668b95aefc83c654244d6
|
|
| BLAKE2b-256 |
05e2ae698ecd44b0ad493bfa00fbac2a74a1695b8e753e7a09c08faabd5a2b0e
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
10a91e9cd1600ae787e6de67af0f98c5f1e017bb54879c42a6fd3e07b7e480fc - Sigstore transparency entry: 223471678
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8bd6729c32702f3b08aa2b3cadad45290cd0f9e842a8e5651c41fdde7590ecc
|
|
| MD5 |
bd2773ff80ec2bd9da1db81b282e5ddf
|
|
| BLAKE2b-256 |
28fa71684f650eea47349d30c92a286a886f94965d6d1651e524ecc1efa29dc9
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl -
Subject digest:
f8bd6729c32702f3b08aa2b3cadad45290cd0f9e842a8e5651c41fdde7590ecc - Sigstore transparency entry: 223472330
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 972.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdba5deaed609dbbd207f8c756725eaad6cfc6f57a6db40a3a67fbc5a88c3d9d
|
|
| MD5 |
f0528570f1e0d2c6ecef7fd4c98a415b
|
|
| BLAKE2b-256 |
f22b5e6ae0d8a5bb569eacf3a92506657137718e6fa66b06c9be3229748e40a1
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
bdba5deaed609dbbd207f8c756725eaad6cfc6f57a6db40a3a67fbc5a88c3d9d - Sigstore transparency entry: 223472092
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 798.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db04dd6daaf0fa36092f17c53f123cc241d7138031d7ed341de44b50b70262f3
|
|
| MD5 |
bba8e9bda9a8f40e3c3686ff69dcfa96
|
|
| BLAKE2b-256 |
b2f866a73518879ba8cbd8807984e7d78c980431d60bc6efbde1d4508ed5cc36
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
db04dd6daaf0fa36092f17c53f123cc241d7138031d7ed341de44b50b70262f3 - Sigstore transparency entry: 223471756
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 842.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd33c7d28850cfb8a12dea44131974dda006a24457f22868c9912603c4886b3a
|
|
| MD5 |
510379614adc06a030da057ddef25bd0
|
|
| BLAKE2b-256 |
6ca85607235c99735ea095fe5b35519d2bbe2b5d556e4573fa4cd4077e7a4530
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
cd33c7d28850cfb8a12dea44131974dda006a24457f22868c9912603c4886b3a - Sigstore transparency entry: 223472073
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 921.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a44717554bd3e9bca71db09675f4aa26d62431e8c8f635681f3f6b81afe53b1
|
|
| MD5 |
ccd17cab9cf8ccc853bc34eb83ffed74
|
|
| BLAKE2b-256 |
a06d6fc7072655a4acb7cdf4dcca23dd9098022e23459dba776e850945c81317
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
2a44717554bd3e9bca71db09675f4aa26d62431e8c8f635681f3f6b81afe53b1 - Sigstore transparency entry: 223472351
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 807.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b592518bdd5634f00406e3db98d53177268f4fc0bb66de45fea6c851a703abfc
|
|
| MD5 |
8cead9d281b270a7093cf07454766e77
|
|
| BLAKE2b-256 |
e7b5dfeaa507940c777b57c3c3ac9fb1815b7a31bd42dda16414db7478115257
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
b592518bdd5634f00406e3db98d53177268f4fc0bb66de45fea6c851a703abfc - Sigstore transparency entry: 223471849
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 793.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdb1528c71447dcd328c340412f90f0d927b8ce52f43c0ed077cd6db398bae4d
|
|
| MD5 |
452f0e2f10fcca63bea34dbf57a16839
|
|
| BLAKE2b-256 |
3d9323c6afc461f5b95c24473fc0287b0c86d55af862530bffb0776c4c1f2d60
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
fdb1528c71447dcd328c340412f90f0d927b8ce52f43c0ed077cd6db398bae4d - Sigstore transparency entry: 223472086
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 823.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d3a596f154de81d8a17613e43469e8779cd14362c388e4d7437d7e8d02713f9
|
|
| MD5 |
2bf0abc79968c1b656deb0b07e037e23
|
|
| BLAKE2b-256 |
ab976d40e5b8950bd464762bd312bc28fe0290e7f9bcb8c4bf09998100dfcf52
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp310-cp310-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
6d3a596f154de81d8a17613e43469e8779cd14362c388e4d7437d7e8d02713f9 - Sigstore transparency entry: 223472167
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 666.7 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdb336ad29d1b4624d9543a6d26f1fd6dce8eaa8ddcd8a3dbc0e93c144a70af0
|
|
| MD5 |
1e940085005f895c5a2c195f38bd7597
|
|
| BLAKE2b-256 |
0909d81c9cceb3184d990d9c674230b90b94e25f8931adda077ebb82f26ed38b
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-win_amd64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-win_amd64.whl -
Subject digest:
fdb336ad29d1b4624d9543a6d26f1fd6dce8eaa8ddcd8a3dbc0e93c144a70af0 - Sigstore transparency entry: 223472186
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-win32.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-win32.whl
- Upload date:
- Size: 661.7 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8fac9c0e8af61c860bf68e1f8f71d10e77affd80e904ecd145f743f056176cf
|
|
| MD5 |
ca4147ea2fa5eac3d34fb281552026f8
|
|
| BLAKE2b-256 |
a88afa14306ed7a020aa1db0525d9ec8746d608b8e808b41841566a0f173780c
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-win32.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-win32.whl -
Subject digest:
c8fac9c0e8af61c860bf68e1f8f71d10e77affd80e904ecd145f743f056176cf - Sigstore transparency entry: 223472097
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 969.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3dc646f031702a2b9a4709320b332ccc675f1036f499fbf623c8b17b909c363
|
|
| MD5 |
03c590ef7894a2545fb00a0f7a73e069
|
|
| BLAKE2b-256 |
8a51cfcc9904c4dc5b2fd8765ab1ddc57548ca0792198f5cfd8e807525cd8be5
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
b3dc646f031702a2b9a4709320b332ccc675f1036f499fbf623c8b17b909c363 - Sigstore transparency entry: 223472266
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 999.2 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cb9086c769b35afd902306419a34ef9ee25bde0d1fd40d5e7792e83229af554
|
|
| MD5 |
9100df08dd7d1cb4ebd400558f7f2252
|
|
| BLAKE2b-256 |
6416524898773fdebf34641649025bb236251cf8f42b4acb8d1e17a3bd801c4c
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
4cb9086c769b35afd902306419a34ef9ee25bde0d1fd40d5e7792e83229af554 - Sigstore transparency entry: 223471637
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cf6d119f843137b6e90e14404c0a32cc9d868c0bb2f9942376cb800c70143b9
|
|
| MD5 |
c3ba31c3f768c8cf6cb2d9b4cd835c3a
|
|
| BLAKE2b-256 |
58c2dad47233cf6607c93b2973f66a657df7e24bbc2c53f40c3efee1c7762575
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_armv7l.whl -
Subject digest:
6cf6d119f843137b6e90e14404c0a32cc9d868c0bb2f9942376cb800c70143b9 - Sigstore transparency entry: 223471986
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 973.1 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08e457c22c01c6af62befc987fcd14dbb3b2bbc3ec4376b4db5f47adf08dc3d7
|
|
| MD5 |
cc4a966eab25413a182507f3a419df88
|
|
| BLAKE2b-256 |
650b31ad1260d48c186d56fe0f13d7d0479a837cb53689d03338d83c89af501a
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
08e457c22c01c6af62befc987fcd14dbb3b2bbc3ec4376b4db5f47adf08dc3d7 - Sigstore transparency entry: 223471581
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 798.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ffbab83202bd5888aa2083835ca2eb2263a97cd9703c1cce72d0b9c15032a76
|
|
| MD5 |
d27d74288f2ecb90ee13cecbed5c04e2
|
|
| BLAKE2b-256 |
874e42253ed40e916532794a309425373548361a11210a95bea3db977f5b01ec
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
4ffbab83202bd5888aa2083835ca2eb2263a97cd9703c1cce72d0b9c15032a76 - Sigstore transparency entry: 223471897
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 843.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
855ea51ac17b9375e9c4ea0e174e7aab7031e07107691541c98d3793c3e0164d
|
|
| MD5 |
14cd662517f48a24c49199a6efecb1bb
|
|
| BLAKE2b-256 |
ffcfed03e4651c1e8230328b804b0ca927d1f5db4336e8f697d3f8505dfaebc8
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
855ea51ac17b9375e9c4ea0e174e7aab7031e07107691541c98d3793c3e0164d - Sigstore transparency entry: 223472289
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 926.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0a298fce8f1e1b387af1f7bde0231e8f4b0c567f248059a0fea914a36fe359e
|
|
| MD5 |
aa17d2cd45297d1209b48a78e33d3f20
|
|
| BLAKE2b-256 |
8e813e6387c1c45e1d96789c9bab14ff2a47452b0288e2edd3f2c05ef8b7270a
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
f0a298fce8f1e1b387af1f7bde0231e8f4b0c567f248059a0fea914a36fe359e - Sigstore transparency entry: 223471545
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 808.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c1476e845c433fbc710d8f8ad68f5ca2655e4946e70240a8c00d03093b8faca
|
|
| MD5 |
2e671e2cd11a57bfed4821ffa10b73a2
|
|
| BLAKE2b-256 |
1c9c0580394eb02e4b4d6f2423d04860c7934fdfb4ebf5d915e8a342e35f2c0f
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
1c1476e845c433fbc710d8f8ad68f5ca2655e4946e70240a8c00d03093b8faca - Sigstore transparency entry: 223472251
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 794.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e989465fa1cd633ef3c17cfc425d55a05ded249bedfc5c411d5f2cea6b77a9b0
|
|
| MD5 |
bd3c5e01b3fced79577125c7628ef453
|
|
| BLAKE2b-256 |
6c3e70efbc4184fc8c8d3e87168a48998f5bbffed4c67bb7c44b03fda384dee5
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
e989465fa1cd633ef3c17cfc425d55a05ded249bedfc5c411d5f2cea6b77a9b0 - Sigstore transparency entry: 223472132
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 823.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31aea21e9bc681a864b89033d65bac350acb849e754c2b3d253ab19b21dbe5da
|
|
| MD5 |
1ece24acf76db7ab0252538690bdb17c
|
|
| BLAKE2b-256 |
b6230c721355c55ee88ba5c64a0661bcdb5ee302c1a3e5f90aab2e59a2ac39a0
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp39-cp39-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
31aea21e9bc681a864b89033d65bac350acb849e754c2b3d253ab19b21dbe5da - Sigstore transparency entry: 223471741
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 666.4 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5321c1890c0eabf53005904b51a7f5f5b5de4879bc28f67f1abc9acdd902b6db
|
|
| MD5 |
bd859b6fa17214dd1704dbbcc4bd4e80
|
|
| BLAKE2b-256 |
daafcf76d29ecd568e58bec13da8514084d3b95cfd97caf76ce1de2b97a07777
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-win_amd64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-win_amd64.whl -
Subject digest:
5321c1890c0eabf53005904b51a7f5f5b5de4879bc28f67f1abc9acdd902b6db - Sigstore transparency entry: 223471872
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-win32.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-win32.whl
- Upload date:
- Size: 661.8 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c41eb624b8fe3f9925e3e3be338d8fa480ed0ae49853386cb5bd81a6ac8aa40
|
|
| MD5 |
d72b34b0cb1f834585d91463f4ce18d7
|
|
| BLAKE2b-256 |
6d0af88245a4a39ce33c872b57bcf88ca31ef0595a513fe5de051d610bc0bc5b
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-win32.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-win32.whl -
Subject digest:
8c41eb624b8fe3f9925e3e3be338d8fa480ed0ae49853386cb5bd81a6ac8aa40 - Sigstore transparency entry: 223471948
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 969.7 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ecca5310a57de2947a2037aec63f58b05da3b2f7b086910e90e8a0a4a35089b
|
|
| MD5 |
5285c8b4b16a61a4c8f3ceadc4476d1f
|
|
| BLAKE2b-256 |
8c3ae06f55544e8e85d46db64793448bc5f3d2c732ac3533e30be95b800fd020
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_x86_64.whl -
Subject digest:
2ecca5310a57de2947a2037aec63f58b05da3b2f7b086910e90e8a0a4a35089b - Sigstore transparency entry: 223472022
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 999.1 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b52a735cd12c0fe21cef5ac0b1831f86966f94f835585643e5443b363091075
|
|
| MD5 |
25266cafae9ff2fca2de4088717aa47d
|
|
| BLAKE2b-256 |
307f1c00044a7e36a2b7b66633adfd98329333b79e21be716aec23e336bf482f
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_i686.whl -
Subject digest:
7b52a735cd12c0fe21cef5ac0b1831f86966f94f835585643e5443b363091075 - Sigstore transparency entry: 223472322
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3ef24ebd8925030a74dd82e2c4edbb101c451fc765926ee1769d84dd686e9ac
|
|
| MD5 |
db7b3f965d51104aa3207c47debd24b7
|
|
| BLAKE2b-256 |
469cb71c80380e2b819184c63a89a6b75b53113e371ff49d70aba3455569dbde
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_armv7l.whl -
Subject digest:
a3ef24ebd8925030a74dd82e2c4edbb101c451fc765926ee1769d84dd686e9ac - Sigstore transparency entry: 223471905
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 973.4 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c6efacd5e9a10b60ecad5776d017e436605cd22014a6e77e0e0d55e8657f4ae
|
|
| MD5 |
9c3d61f6cfb7ec5b224c2545f3dee055
|
|
| BLAKE2b-256 |
2806bff3865c25002ac05fcf256979dda8ba32c810b35c5d0130f84b9ccb44b5
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-musllinux_1_2_aarch64.whl -
Subject digest:
7c6efacd5e9a10b60ecad5776d017e436605cd22014a6e77e0e0d55e8657f4ae - Sigstore transparency entry: 223471833
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 798.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a85bef270f8e0016c5a3ad248af89771b42d6c701685da3214568a1ef4a17b3
|
|
| MD5 |
552464f19e18837761a3534918a35573
|
|
| BLAKE2b-256 |
e7febfe651c29c4a2177e7f03af1589484494dad09b025dade111b7159e09d62
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
2a85bef270f8e0016c5a3ad248af89771b42d6c701685da3214568a1ef4a17b3 - Sigstore transparency entry: 223471787
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 843.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2423808e2f35cce1602db2db78a234e373e8c445a5bd1236ec33071a1a7d8165
|
|
| MD5 |
25e2f51e282827e894f6b8100c33fe65
|
|
| BLAKE2b-256 |
dbb9a3df65d62e8b5e76298c14f57c1f6af8097aca8808850d7aa0de6e1ae814
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
2423808e2f35cce1602db2db78a234e373e8c445a5bd1236ec33071a1a7d8165 - Sigstore transparency entry: 223472149
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 926.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a0ea6338a766b760edf3da80028c788eb32b84420c21a0d6e39415b7e7a14ce
|
|
| MD5 |
c33e9221b486351c8e1f12ca3a0faa20
|
|
| BLAKE2b-256 |
2025b27eeaa10d5a8dee339bf5637f3c7c641b10e64b826ed58e815368806964
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
7a0ea6338a766b760edf3da80028c788eb32b84420c21a0d6e39415b7e7a14ce - Sigstore transparency entry: 223471827
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 808.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12e2bdf5b99b87344a5f77c70d34d8df32f72d77591562d9bac592860617015d
|
|
| MD5 |
7c090d0cf785f135fee64d3f8e8f7c1a
|
|
| BLAKE2b-256 |
b9a9b306aff9e8b14af02161896acf042c82ab6709f504a33206f357a4ebbcd9
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
12e2bdf5b99b87344a5f77c70d34d8df32f72d77591562d9bac592860617015d - Sigstore transparency entry: 223471768
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 794.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b856b9816831340d4e5068a1af378cce4c8cd2d289bf7f2ef9870fba1fd3573a
|
|
| MD5 |
4e3444acb038944b91a705f25b92bc73
|
|
| BLAKE2b-256 |
109c81095762a7c2b3cf824b0e295ecda66f46671d4fdffe42fe2efda5ea5416
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
b856b9816831340d4e5068a1af378cce4c8cd2d289bf7f2ef9870fba1fd3573a - Sigstore transparency entry: 223471916
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 823.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9f03807430a0c6678c2a4f93a3e84e030515cb60bd6e73292df4cee16dbc121
|
|
| MD5 |
197249e516062075a85d060541f95d97
|
|
| BLAKE2b-256 |
4e89cf1b1bdd01a067b521cbb8b4b3014c503a18f7301cab05f4918b6e9eda10
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp38-cp38-manylinux1_i686.manylinux_2_5_i686.whl -
Subject digest:
c9f03807430a0c6678c2a4f93a3e84e030515cb60bd6e73292df4cee16dbc121 - Sigstore transparency entry: 223471607
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 969.8 kB
- Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65bd9ea599b31106bb47b84f71b1d1b8e9d727237d544bfd4d6210cb504f53fc
|
|
| MD5 |
d88f7f181daaf3d311ca4e89fb2dec65
|
|
| BLAKE2b-256 |
6048703608ed7d6f202938f906d11025666c22cb5e7e7cb47cd123157777aab0
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_x86_64.whl -
Subject digest:
65bd9ea599b31106bb47b84f71b1d1b8e9d727237d544bfd4d6210cb504f53fc - Sigstore transparency entry: 223472212
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_i686.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_i686.whl
- Upload date:
- Size: 998.9 kB
- Tags: CPython 3.7m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3820bdb0413c5a9ccb5fbc74e0cf609e94a5b3dc59e112477f460d023e0821f
|
|
| MD5 |
51a9e6a7519eeeced169b0733dfb3f01
|
|
| BLAKE2b-256 |
25fb522e5196ef112869dc382475fc32f17b7fc1238e03b5566286d1051fe19f
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_i686.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_i686.whl -
Subject digest:
a3820bdb0413c5a9ccb5fbc74e0cf609e94a5b3dc59e112477f460d023e0821f - Sigstore transparency entry: 223471629
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d69bd84f0b29cb76d6f54daf0d4cbe1d4d64721941467c724d019b311616ace8
|
|
| MD5 |
1cee4798d50dfaad59e251361e8cf6ef
|
|
| BLAKE2b-256 |
8bb6d13f7d472d71e225581289b040a9e49862714b25dcce4a00212386a74fb3
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_armv7l.whl -
Subject digest:
d69bd84f0b29cb76d6f54daf0d4cbe1d4d64721941467c724d019b311616ace8 - Sigstore transparency entry: 223471569
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 973.6 kB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b380daf9affb84617a1811888b405b59609eda5c1969f8f266b03ec0c204b2a
|
|
| MD5 |
d4972d892c15053cd50ec56c3cd95182
|
|
| BLAKE2b-256 |
2774fcacb415d26517a8c329a4af87241d228e0326415dc77bc4590d8965a201
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp37-cp37m-musllinux_1_2_aarch64.whl -
Subject digest:
2b380daf9affb84617a1811888b405b59609eda5c1969f8f266b03ec0c204b2a - Sigstore transparency entry: 223471970
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 843.4 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88070092bc255bfcffb19e878d4d8148cf4ed8687f1e3072c7139ee745b70da2
|
|
| MD5 |
25583c4e94fb00db4c27f0f8549d282f
|
|
| BLAKE2b-256 |
7c1e825de3df86fc969e78a677b58f72922d67307a190c52d8a0331f7318fda0
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
88070092bc255bfcffb19e878d4d8148cf4ed8687f1e3072c7139ee745b70da2 - Sigstore transparency entry: 223472194
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 926.3 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b372fa357ffcfc3731504e55169b105bca5cbebd99aa4433245ede8c9e332838
|
|
| MD5 |
768e317ac83a93a7f85443458eacb331
|
|
| BLAKE2b-256 |
9352ff99ba468a764653d896b109338378b60ac9258c201bc45580eb8e88b3a3
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
b372fa357ffcfc3731504e55169b105bca5cbebd99aa4433245ede8c9e332838 - Sigstore transparency entry: 223472049
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 808.3 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1344f9b4a4b48c3ce44a45e8fe866d53f1eeaf4db364bc649d7054e76fafb4b6
|
|
| MD5 |
513cb6b1fa980d8d23c3607bfe807cfd
|
|
| BLAKE2b-256 |
df5618a89582901e33a529486c547c9455d081aa49b6f3a5659ac1a825c56746
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
1344f9b4a4b48c3ce44a45e8fe866d53f1eeaf4db364bc649d7054e76fafb4b6 - Sigstore transparency entry: 223471661
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 794.8 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22ce47a599c643c46cf7de52eb6cbd7c197c44c0d8446f97de11d38fe7254cda
|
|
| MD5 |
7c00c4796c27abd9dee3d32d2cb79812
|
|
| BLAKE2b-256 |
3c0b96c02f57621475f80d7feb7697a94d35406a09a4be799902a5b196f5d17a
|
Provenance
The following attestation bundles were made for multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on britzerland/multiword_anagram_fast
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
multiword_anagram_fast-0.1.0.2-cp37-cp37m-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
22ce47a599c643c46cf7de52eb6cbd7c197c44c0d8446f97de11d38fe7254cda - Sigstore transparency entry: 223471857
- Sigstore integration time:
-
Permalink:
britzerland/multiword_anagram_fast@79ded61da40d1c376b701a661f6078959e67bcb8 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/britzerland
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@79ded61da40d1c376b701a661f6078959e67bcb8 -
Trigger Event:
push
-
Statement type: