CLI tool to count lines of code
Project description
locstat
Get source code line statistics quickly
Installation
$ pip install locstat
Usage
locstat is designed to be a CLI tool, invocable as the package name itself.
$ locstat [-h] (-v VERSION | -c CONFIG | -f FILE | -d DIR) [options]
Primary Action
A primary action must be specified when invoking the tool through the command line, namely:
-
-v/--version: Display the installed version and exit
-
-h/--help: Display the help message and exit
-
-c/--config: Display and optionally edit the configuration settings and exit
-
-clm/--copy-language-metadata: Copy language metadata file to given filepath
-
-rc/--restore-config: Restore configuration settings
-
-f/--file: Filepath to parse
-
-d/--dir: Directory to parse
Note: These options are mutually exclusive
Parsing Filters
Directories:
-xd/--exclude-dir: Directory paths following this flag will be ignored.
-id/--include-dir: Parse only the directories following this flag.
Files:
-xf/--exclude-file: Filepaths following this flag will be ignored.
-if/--include-file: Only filepaths following this flag will be parsed.
-xt/--exclude-type: File extensions following this flag will be ignored.
-it/--include-type: Only file extensions following this flag will be parsed.
Finer Parsing Controls
-pm/--parsing-mode: Override default file parsing behaviour. Available options: MMAP, BUF, COMP.
-
BUF: Default parsing mode. Allocates a buffer of 4MB and reads files in chunks into this buffer.
-
MMAP: Map files to the virtual memory of the locstat process in an attempt to reduce the number of syscalls. May improve performance for hot page caches or for larger source files. Uses
mmapandmadviceon Linux and Mac systems, orCreateFileMappingandMapViewOfFileon Windows. -
COMP: Read the entire file at once without any buffering.
-vb/--verbosity: Amount of statistics to include in the final report. Available modes:
-
BARE: Default mode, count only total lines and lines of code.
-
REPORT: Additionally include language metadata, i.e. number of files, total lines, and lines of code per file extension parsed.
-
DETAILED: Additionally include language metadata and per directory and per file line statistics.
-md/--max-depth: Recursively scan sub-directories upto the given level. Negative values are treated as infinite depth. Defaults to -1
-mc/--min-chars: Specify the minimum number of non-whitespace characters a line should have to be considered an LOC. Defaults to 1.
-clm/--copy-language-metadata: Copy language metadata to a specified file, used as a precursor to using custom language metadata.
-lm/--language-metadata: Specify JSON file to supply additional comment data for languages. This file is read and used instead of the default language metadata file.
-rc/--restore-config: Restore configuration file to default its state.
Emitting Results
-o/--output: Specify output file to dump counts into. If not specified, output is dumped to stdout. If output file is in json then output is formatted differently.
Examples
Let's run locstat against a cloned repository of cpython-main
$ locstat -d /home/tcn/targets/cpython-main/
General:
Total : 2155349
Loc : 1722995
Comments : 213946
Blank : 218408
Time : 0.911s
Scanned : 22/02/26, at 15:40:51
Platform : Linux
Additionally, we can fetch per-extension metadata using the REPORT verbosity mode.
$ locstat -d /home/tcn/targets/cpython-main/ -vb REPORT
General:
Total : 2155349
Loc : 1722995
Comments : 213946
Blank : 218408
Time : 0.196s
Scanned : 22/02/26, at 15:41:05
Platform : Linux
Languages
Extension Files Total LOC Comments Blank
-----------------------------------------------------
py 2211 1088097 851618 109836 126643
bat 32 2327 1959 0 368
ps1 6 571 451 48 72
sh 14 918 582 237 99
css 6 3248 2570 202 476
c 485 652306 498587 95501 58218
h 637 356061 319201 7124 29736
js 10 2431 1775 281 375
html 18 10327 9132 51 1144
xml 119 31796 31615 25 156
m 10 1029 807 85 137
xsl 2 33 16 15 2
cpp 7 4989 3796 385 808
vbs 1 1 0 0 1
pyi 1 4 2 1 1
asm 1 46 18 26 2
lisp 1 692 502 81 109
ts 2 37 32 2 3
kts 3 307 236 31 40
kt 2 129 96 15 18
Note: The drop in scanning time in the second example is thanks to page caching following the first example.
Customizations
locstat allows for default behaviour to be overridden per invocation, such as:
locstat -f foo.py --min-chars 2
This overrides the default minimum characters threshold of 1
Furthermore, changes to default values can be saved permanently using the --config (shorthand: -c) flag.
When invoked without any arguments, --config displays the current default configurations for locstat.
changelog v1.1.0
- Configuration settings can be restored to their default state using
--restore-config(shorthand:-rc)
locstat 1.2.0 introduces a new customization: language metadata
By default, locstat uses a flat languages.json file to infer data about comment symbols. This file is shipped as part of locstat releases and meant to be read-only.
However, to allow for customizations, locstat introduces 2 commands.
Example
$ locstat --copy-language-metadata foo.json
$ locstat --config language_metadata_path foo.json
$ locstat --config
language_metadata_path : foo.json
max_depth : -1
minimum_characters : 1
parsing_mode : BUF
verbosity : BARE
Now, changes can be made to foo.json, and locstat would always use this file as a symbol reference. Of course, these changes can be reverted through --restore-config
To update any value, append the flag with the option name and it's new value as a space-separated pair.
$ locstat --config max_depth 5 parsing_mode MMAP verbosity report
$ locstat --config
language_metadata_path :
max_depth : 5
minimum_characters : 1
parsing_mode : MMAP
verbosity : REPORT
Note: String enums are case-insensitive.
License
locstat is licensed under the MIT license.
Compatibility Notes
locstat ships using cibuildwheels, allowing for platform-specific wheels for Linux, Windows, and Mac, spanning different architectures.
However, some platforms have been excluded due to cross-compatibility pains or their packaging requiring extremely long waiting times for workflow runners (such as Mac systems using Intel chips).
This does not mean that locstat is completely incompatible on all remaining systems. The source distribution is also shipped alongside wheels.
Acknowledgements
locstat (formerly named pycloc, but that name was taken 2 weeks before I got to publishing :P) started as a one-day project to allow a good friend to count how many lines of C++ code were present in his UE5 project.
Since then, many features and improvements have been added to this still simple tool, all of which would have been impossible without the collective effort of thousands of open-source contributors, spanning across many projects such as CPython and Perl Cloc (the gold standard!) to even make programming possible for me.
Furthermore, the online help provided by thousands of contributors on StackOverflow, HackerNews and countless personal technical blogs has made it possible for me to polish and refine this tool.
My deepest gratitude goes to everyone, however indirectly involved, in the sphere of computer programming. Even for the smallest steps I take, I stand nonetheless on the shoulders of countless giants.
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 locstat-1.3.1.tar.gz.
File metadata
- Download URL: locstat-1.3.1.tar.gz
- Upload date:
- Size: 26.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc7807581c613286d991d19ac2aaf1a77fd32aab108808d9d723f81147867ffe
|
|
| MD5 |
5d686497086e8898b3869d4fd9a63d09
|
|
| BLAKE2b-256 |
b0a06ddff5869784a963de1d957f412fdf1cae83d0e8a97ec13b75f9f2558457
|
Provenance
The following attestation bundles were made for locstat-1.3.1.tar.gz:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1.tar.gz -
Subject digest:
cc7807581c613286d991d19ac2aaf1a77fd32aab108808d9d723f81147867ffe - Sigstore transparency entry: 976359776
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 36.3 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56515ada0267e8e37805cd3d3896304860c06be86945a9ee487ca804d1e08a9d
|
|
| MD5 |
32e25f31a09935bf60dddcc7c8479bda
|
|
| BLAKE2b-256 |
5fc0d073f555985b60766dce66663de7686e2ba6144fdf7db192637f7c0596a2
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314t-win_arm64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314t-win_arm64.whl -
Subject digest:
56515ada0267e8e37805cd3d3896304860c06be86945a9ee487ca804d1e08a9d - Sigstore transparency entry: 976359792
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 38.1 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
765d43a2dd85aab8e1ae3aed10e1c2f0f0f427a87bf9bef66123ab28bf69db5b
|
|
| MD5 |
78979a8ad541d14a82d3109cf8ee4e54
|
|
| BLAKE2b-256 |
7116babda05b20e743cb93c98b3991ad52a8844b3d67b1b723bac2a45bfe8a37
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314t-win_amd64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314t-win_amd64.whl -
Subject digest:
765d43a2dd85aab8e1ae3aed10e1c2f0f0f427a87bf9bef66123ab28bf69db5b - Sigstore transparency entry: 976359827
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314t-win32.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314t-win32.whl
- Upload date:
- Size: 36.5 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d8ef6d4c22c37935e0227f4fa219d2e5c9a2766473e6912690fdc1c0a3d6fc0
|
|
| MD5 |
2a652459c0193759aafaa1949bf99ee6
|
|
| BLAKE2b-256 |
44a0e2c4944b3d1d70b9c9108a8b8419c72da73c900e54f95a763808d7923697
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314t-win32.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314t-win32.whl -
Subject digest:
1d8ef6d4c22c37935e0227f4fa219d2e5c9a2766473e6912690fdc1c0a3d6fc0 - Sigstore transparency entry: 976359800
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 43.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abd055e9464d8d525fc5d479d1423a0e2a26121828caafe0f0d6d5ffce97b26e
|
|
| MD5 |
6a2c6ae9363754fcd0660966c45707ca
|
|
| BLAKE2b-256 |
05dabb7ca6836e1128d5ba9f2950d20eda3eecde5f16c1ef84d7a551516c3553
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
abd055e9464d8d525fc5d479d1423a0e2a26121828caafe0f0d6d5ffce97b26e - Sigstore transparency entry: 976359796
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 44.3 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89420ae0d50e72d0d44da47e111955fd90527a513085269b198cd086339c1de3
|
|
| MD5 |
92a5c08277d57f43db3cfa3d6a2b594d
|
|
| BLAKE2b-256 |
0c2931602be27e8daf17cc78282f7a86895a6f261dfa499dbe0b60b731fb082b
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
89420ae0d50e72d0d44da47e111955fd90527a513085269b198cd086339c1de3 - Sigstore transparency entry: 976359843
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 45.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ea64fad294ba9bc2bb66d6c8afb57eee35ddbfcf4670f4e2917f2ea1c85fffe
|
|
| MD5 |
3044a0ea9a41bdbba62a04bb2d7e93de
|
|
| BLAKE2b-256 |
7efbbf9315b3c8031d72ebba6d1be6adf0bea02d2be9d31c6f7104335d524f88
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
1ea64fad294ba9bc2bb66d6c8afb57eee35ddbfcf4670f4e2917f2ea1c85fffe - Sigstore transparency entry: 976359799
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 44.8 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fcde90e0c0e598bc293c4360d733ce8136bb22356ead4813ea2416591f1a451
|
|
| MD5 |
6800845cb763770d3a5cd032b815bd72
|
|
| BLAKE2b-256 |
db183b81991d1ed8616c420b8fe74ff866a2d4f94b7a545753410d4ab4201e58
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
8fcde90e0c0e598bc293c4360d733ce8136bb22356ead4813ea2416591f1a451 - Sigstore transparency entry: 976359780
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 33.9 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e2444df3908581713ea84125f14404b43634a54dba5d488f3d2aba76d53a76b
|
|
| MD5 |
a2c58aca302d5b3b2fa50c422e7c1434
|
|
| BLAKE2b-256 |
1499dbc56ff1171986648e17d5df1d56bbe74cc7b845ff7481ccf62475e01777
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
2e2444df3908581713ea84125f14404b43634a54dba5d488f3d2aba76d53a76b - Sigstore transparency entry: 976359832
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 36.3 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cf038acea4db779aa3e17ba48c401652b8234c164014e0d3a8b7a753586748b
|
|
| MD5 |
583d2280ce324d94692f1d63939d497d
|
|
| BLAKE2b-256 |
1045451fb281e91d202aaeb9010f4f3e658134fa660d5231ce0ae60412d97c38
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314-win_arm64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314-win_arm64.whl -
Subject digest:
0cf038acea4db779aa3e17ba48c401652b8234c164014e0d3a8b7a753586748b - Sigstore transparency entry: 976359805
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 38.1 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8be4270aed9dc2b4ba72e489e13fb1260ca18f6c8162969f64360dd56402e61d
|
|
| MD5 |
9f1e64708a86143abccc25a580d4be89
|
|
| BLAKE2b-256 |
ea918722766124074ec18cfea1d5b59584f0b373d32ce87458a1bb89e940367b
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314-win_amd64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314-win_amd64.whl -
Subject digest:
8be4270aed9dc2b4ba72e489e13fb1260ca18f6c8162969f64360dd56402e61d - Sigstore transparency entry: 976359785
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314-win32.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314-win32.whl
- Upload date:
- Size: 36.5 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
990083fb86dd6b4ef2bdbb9b06cd2e4c39143dd9347e53dd8c8f89f0b26c0195
|
|
| MD5 |
f7c43abe79cf66e209e9378decda489d
|
|
| BLAKE2b-256 |
a319fde7b6d8e022522e445031fb3813f307fde232dc0e44b07ad391bd2becbc
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314-win32.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314-win32.whl -
Subject digest:
990083fb86dd6b4ef2bdbb9b06cd2e4c39143dd9347e53dd8c8f89f0b26c0195 - Sigstore transparency entry: 976359835
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 43.8 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
464b9df3ede447b68b4fbcb9262fca89487018d97ef3991f88dce1013ad769a5
|
|
| MD5 |
8983175c0699be980660d19acacfe988
|
|
| BLAKE2b-256 |
17d2edb4f61ff912d15f79e81e1c8259ef5bc33c7275531cf670c5eed573f3cb
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
464b9df3ede447b68b4fbcb9262fca89487018d97ef3991f88dce1013ad769a5 - Sigstore transparency entry: 976359844
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 44.3 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d13d96011602d0b1efdaf860156ed830a04b60fffa48c78f46dfd7dd4876017b
|
|
| MD5 |
c19b63400c8d747e18c2ef8b27f2ba30
|
|
| BLAKE2b-256 |
b915fd38d56826d6cceeb549ac5d96612612548d3ade5c6489d9b37b91423648
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
d13d96011602d0b1efdaf860156ed830a04b60fffa48c78f46dfd7dd4876017b - Sigstore transparency entry: 976359818
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 45.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eabb860b87ccbfcf1c2e15d6b3225b7a7dda661083a3f431840b023529c9fe0d
|
|
| MD5 |
2aae332234ffe96932665ab20020b1f9
|
|
| BLAKE2b-256 |
b9920d84b4820460d506c878224866ff514c1470244831bd036b1ccf41ca0302
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
eabb860b87ccbfcf1c2e15d6b3225b7a7dda661083a3f431840b023529c9fe0d - Sigstore transparency entry: 976359791
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 44.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc997890d0082c3b258652e2304621acc0865a712eeae13533660bb14d051fef
|
|
| MD5 |
63535e55473f48134f5248bddc7d69a1
|
|
| BLAKE2b-256 |
8aaca3d6c31655541e7cc05e44579d5c0876502f51ad94093dadaa13ae43f347
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
fc997890d0082c3b258652e2304621acc0865a712eeae13533660bb14d051fef - Sigstore transparency entry: 976359822
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: locstat-1.3.1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 33.9 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c0421337172d73f57222a8207210cdb5c1e4f690bcc313cd5321ade8a3aadbb
|
|
| MD5 |
cc80a6e5153888c9b5c96f9484003509
|
|
| BLAKE2b-256 |
595ea1ce9640f47d8c8a1faea0a4d460c8cdff67c40de9d415c7a9ee905c84bf
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
6c0421337172d73f57222a8207210cdb5c1e4f690bcc313cd5321ade8a3aadbb - Sigstore transparency entry: 976359819
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: locstat-1.3.1-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 36.0 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18e4351bba89d34f25173c41d39528c69887c3572e20af160fe96efd040a60fc
|
|
| MD5 |
f60c8236496c2e8a4a61412fa8c0d55d
|
|
| BLAKE2b-256 |
15a17aba22af8cd6b6bd7cbb716c0d637592e6222dd3dbc930cec818ab54247a
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp313-cp313-win_arm64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp313-cp313-win_arm64.whl -
Subject digest:
18e4351bba89d34f25173c41d39528c69887c3572e20af160fe96efd040a60fc - Sigstore transparency entry: 976359808
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: locstat-1.3.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 37.8 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8aa856a625083583ba5f99ee86b69452e6c7a8c786f6d3b0eb42a3984972de38
|
|
| MD5 |
d56ff8246fa37195313118a250711183
|
|
| BLAKE2b-256 |
5b5577881d1985cd706c4f774fcc3e7edcfc545388630b6c5bf02a15422386c0
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp313-cp313-win_amd64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp313-cp313-win_amd64.whl -
Subject digest:
8aa856a625083583ba5f99ee86b69452e6c7a8c786f6d3b0eb42a3984972de38 - Sigstore transparency entry: 976359788
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp313-cp313-win32.whl.
File metadata
- Download URL: locstat-1.3.1-cp313-cp313-win32.whl
- Upload date:
- Size: 36.2 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8aadf0b4512210041ef2914b617e1ba3b00505340fbef2615be3c13cbd6b77ea
|
|
| MD5 |
9d5739021d7071314171789bac6f55f0
|
|
| BLAKE2b-256 |
e276128396947c6f1481d8a815d001c3449ec3f40c33706b2ad55b18ec2fc1c6
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp313-cp313-win32.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp313-cp313-win32.whl -
Subject digest:
8aadf0b4512210041ef2914b617e1ba3b00505340fbef2615be3c13cbd6b77ea - Sigstore transparency entry: 976359812
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: locstat-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 43.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8e999ad571872d473ea2f75ba0b9af8917756f80b31a74d9455b00dd6fd29b5
|
|
| MD5 |
d32bb01bbe70a7320da5c6c351822b7a
|
|
| BLAKE2b-256 |
c978e0ad44e897c6a848371fc7de33515efb60baa47cca93189d5016f1845639
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
e8e999ad571872d473ea2f75ba0b9af8917756f80b31a74d9455b00dd6fd29b5 - Sigstore transparency entry: 976359814
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: locstat-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 44.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6dbb29c53b82a055dc82f7ddd9cddd17a2ff5ea298aeabe459a48b48da4146f
|
|
| MD5 |
9e253c2c81bd26617f87ddd445795869
|
|
| BLAKE2b-256 |
80a8fbdc25cee228fae08380603e88004498293b7e53beba515db22cfa91e5a4
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
c6dbb29c53b82a055dc82f7ddd9cddd17a2ff5ea298aeabe459a48b48da4146f - Sigstore transparency entry: 976359836
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: locstat-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 45.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cd7e3a2a9e23faf271b26d0dc7d5d58cbffde75b2bcaf90761033205946eb7e
|
|
| MD5 |
76a5abfa7c3f8dc24ff67454440b55e9
|
|
| BLAKE2b-256 |
ee9967265efc9c091276352bc13d62c053f856e23c9fdceebf1157e1c4b2d709
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
4cd7e3a2a9e23faf271b26d0dc7d5d58cbffde75b2bcaf90761033205946eb7e - Sigstore transparency entry: 976359811
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: locstat-1.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 44.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c06c6fd85f53ecdbbb595a148b2a59adb99dd8571bbf9117543f711c34ec25e2
|
|
| MD5 |
592a775386d007c7e99eeb13e2156e2c
|
|
| BLAKE2b-256 |
54c0e58368c41e326d0936c5660b43f1b15b71febda1504b5e185ecbd386e946
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
c06c6fd85f53ecdbbb595a148b2a59adb99dd8571bbf9117543f711c34ec25e2 - Sigstore transparency entry: 976359829
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: locstat-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 33.9 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d8b462acf1b0568a144c9876c0a06b04da6097e2eadc901ebfdfd362b59a0fa
|
|
| MD5 |
c9471ec66722926a8e667a4d028a60c8
|
|
| BLAKE2b-256 |
fcc8494d3911636088dc9a5d295941439bfa3aff09e0194837ac99d1b0ee2b96
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
7d8b462acf1b0568a144c9876c0a06b04da6097e2eadc901ebfdfd362b59a0fa - Sigstore transparency entry: 976359830
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: locstat-1.3.1-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 36.0 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0091b99eedaf7b112112fbfc42466c57c469a89953ad93172d9765c7d16a941c
|
|
| MD5 |
524fc3bb7602a02f968e1a41cf6b3f7e
|
|
| BLAKE2b-256 |
4a524889a9816d1ebf47eb40485a7422b55470e15493725f00f2196db2195e90
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp312-cp312-win_arm64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp312-cp312-win_arm64.whl -
Subject digest:
0091b99eedaf7b112112fbfc42466c57c469a89953ad93172d9765c7d16a941c - Sigstore transparency entry: 976359839
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: locstat-1.3.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 37.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd21d19308b5e79d4c711c1a6bbc815131e8a7fd41dfadc4d217900737a185c5
|
|
| MD5 |
4a5790a1784fcb9822046d86049b9c7b
|
|
| BLAKE2b-256 |
58eff11e7eaa96bd14478e470c911d9596975191e5d19494756c2c3e5e863aec
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp312-cp312-win_amd64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp312-cp312-win_amd64.whl -
Subject digest:
bd21d19308b5e79d4c711c1a6bbc815131e8a7fd41dfadc4d217900737a185c5 - Sigstore transparency entry: 976359826
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp312-cp312-win32.whl.
File metadata
- Download URL: locstat-1.3.1-cp312-cp312-win32.whl
- Upload date:
- Size: 36.2 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d066bcaac7590e7d1fde8c405f50f8a1b095cfd0b688722b7450d5175327afdb
|
|
| MD5 |
69f6f673468f1113c1035c93cece3ea2
|
|
| BLAKE2b-256 |
1b91ae6f82e9e94335fc93c8ec2cc3889a935d65e85ea09ce4be12f70b4fa244
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp312-cp312-win32.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp312-cp312-win32.whl -
Subject digest:
d066bcaac7590e7d1fde8c405f50f8a1b095cfd0b688722b7450d5175327afdb - Sigstore transparency entry: 976359798
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: locstat-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 43.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70ec07c0bff373993817b0f769771399afd4c052b6b33f329e3278f721b08bee
|
|
| MD5 |
4f5a4f013fbd19a511805900b122f72a
|
|
| BLAKE2b-256 |
6e588edb6c2161e255f68d19a5cd7957421b0edad7260e4b70c566978bcc38ce
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
70ec07c0bff373993817b0f769771399afd4c052b6b33f329e3278f721b08bee - Sigstore transparency entry: 976359806
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: locstat-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 44.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7b686ed50d46d0cc4fb3fc11981992f615ba73ae9accc1aa2a294e3d10c6a5e
|
|
| MD5 |
73f0d5de213187f392883e20b193fc8c
|
|
| BLAKE2b-256 |
e31160b9456002ce34c1b582a17c08b27d3f09ade92a422fd24ea7db4dce6754
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
f7b686ed50d46d0cc4fb3fc11981992f615ba73ae9accc1aa2a294e3d10c6a5e - Sigstore transparency entry: 976359840
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: locstat-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 45.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dc053a0f741bf50bb092feedf561f8d11a60a31c4ab9b0a0c7257d72e167ec7
|
|
| MD5 |
6c19f876165b2a20f5467bc57de4db82
|
|
| BLAKE2b-256 |
ccc5dbc8c3a6230e8cb3ac2ab0e2bd5974e973e964aaac4bb1eaeae8bbcccba0
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
3dc053a0f741bf50bb092feedf561f8d11a60a31c4ab9b0a0c7257d72e167ec7 - Sigstore transparency entry: 976359824
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: locstat-1.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 44.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
497734adcc6c1b8089399d8c7f57d17dbc9d8adab88e64065c6a2cb8d9a68da5
|
|
| MD5 |
6c1650dc8de45565446a765414524c6f
|
|
| BLAKE2b-256 |
8dd6220b616d7bec2db832d84b7997325298ae9d12328873d2f7996a548bc6ed
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
497734adcc6c1b8089399d8c7f57d17dbc9d8adab88e64065c6a2cb8d9a68da5 - Sigstore transparency entry: 976359794
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: locstat-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 33.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92e22d3de3f17a05190c536fb34d99c99485acd8206a7e2ea9f550cfd4f06394
|
|
| MD5 |
9cd2e6af8b7b0f14bf9554b6984dd586
|
|
| BLAKE2b-256 |
c65d2b51b52e5ba4a925e854cf7d5a23cb2076b48c94442496e4d9af22dcb4c4
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
92e22d3de3f17a05190c536fb34d99c99485acd8206a7e2ea9f550cfd4f06394 - Sigstore transparency entry: 976359842
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: locstat-1.3.1-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 36.0 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfe7415e420e6f125dc4d376ca944b55324615812e08d8a799f5374476bdd58b
|
|
| MD5 |
caadadd40090db27035b16349cc1e78d
|
|
| BLAKE2b-256 |
d1cf2791640f8fee24d6ee5b7ba499ed0ce6275c3b68953ce64b9bb1d6041530
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp311-cp311-win_arm64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp311-cp311-win_arm64.whl -
Subject digest:
cfe7415e420e6f125dc4d376ca944b55324615812e08d8a799f5374476bdd58b - Sigstore transparency entry: 976359779
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: locstat-1.3.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 37.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01b7702fb06b321deaac8f5d576f2afde0eec1ece4a0da106f9d232ced5d8473
|
|
| MD5 |
7f65682700d6cf9de334060b4d7f1405
|
|
| BLAKE2b-256 |
1afcf8c451a79bc7bcd5100ea06ae7140511c1c13a468f72373a7ce19678538a
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp311-cp311-win_amd64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp311-cp311-win_amd64.whl -
Subject digest:
01b7702fb06b321deaac8f5d576f2afde0eec1ece4a0da106f9d232ced5d8473 - Sigstore transparency entry: 976359784
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp311-cp311-win32.whl.
File metadata
- Download URL: locstat-1.3.1-cp311-cp311-win32.whl
- Upload date:
- Size: 36.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf4eb48f622d2af8e40a868b6c4fb412114099d86e4dee463c617c4e194163dd
|
|
| MD5 |
42eaeab374567fc86c7ab86165479096
|
|
| BLAKE2b-256 |
4d2f5f45820ef517c47f29d801581bfc1d0478e19b5bb0b0ef40c22f8fc44db6
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp311-cp311-win32.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp311-cp311-win32.whl -
Subject digest:
cf4eb48f622d2af8e40a868b6c4fb412114099d86e4dee463c617c4e194163dd - Sigstore transparency entry: 976359797
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: locstat-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 43.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f231fc737ce6c6a84492c3c15155a85f4e6f2034e11a80a8ea9bf87892591ed0
|
|
| MD5 |
db7c6a6f121420e3b2947714e00ca704
|
|
| BLAKE2b-256 |
a2fa8b62d790d728cca140fb18811b85100050e5c9b0c7c3f039f04c8665863b
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
f231fc737ce6c6a84492c3c15155a85f4e6f2034e11a80a8ea9bf87892591ed0 - Sigstore transparency entry: 976359817
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: locstat-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 44.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e00a3c42b0b94f20e68f9f6e47f6f654cd2334544088a97bc3df165f1f4e53ea
|
|
| MD5 |
8790030ef999a03d7516ab8978316b77
|
|
| BLAKE2b-256 |
decc954b9f838ca892f13dc058b4cf55186126e3479d61a4272ed90743ad95bf
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
e00a3c42b0b94f20e68f9f6e47f6f654cd2334544088a97bc3df165f1f4e53ea - Sigstore transparency entry: 976359834
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: locstat-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 45.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56015399512359a2d3b58a6638589d049bbcec796dfa21a32754707da096654f
|
|
| MD5 |
83cda3ec1e8d05d1b63680b18a03db62
|
|
| BLAKE2b-256 |
dae744086c61a6c1b5a897c1e5ced7bb3cb8462f8380183c7446c9b7963ed89c
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
56015399512359a2d3b58a6638589d049bbcec796dfa21a32754707da096654f - Sigstore transparency entry: 976359821
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: locstat-1.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 44.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9b569ce4a7f48b19de7867da449a3ed8711b165da5120b891306775979ecea7
|
|
| MD5 |
6de30553363664ee413764ad1c046cc5
|
|
| BLAKE2b-256 |
04cafaf5126660c83d290220e21146a2650bfe44f976a71b9da83f4f51ccf33c
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
a9b569ce4a7f48b19de7867da449a3ed8711b165da5120b891306775979ecea7 - Sigstore transparency entry: 976359816
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type:
File details
Details for the file locstat-1.3.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: locstat-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 33.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a8421a03380b6a64b807ec7104ea0704c711c3b4a59fbd319a6229604f2cd1a
|
|
| MD5 |
80a9af61bd078ba46907fda60cda574b
|
|
| BLAKE2b-256 |
d13eee71c00f558f7c3bc4c900c69948498ed00e7aa13b47c73948fea1f5b984
|
Provenance
The following attestation bundles were made for locstat-1.3.1-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
tests.yaml on parthacharyaaaaa/locstat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
locstat-1.3.1-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
1a8421a03380b6a64b807ec7104ea0704c711c3b4a59fbd319a6229604f2cd1a - Sigstore transparency entry: 976359790
- Sigstore integration time:
-
Permalink:
parthacharyaaaaa/locstat@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/parthacharyaaaaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
tests.yaml@c58419f21056c6ed08e652b276b8b815cd0aed06 -
Trigger Event:
push
-
Statement type: