Skip to main content

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

  • -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.

  1. BUF: Default parsing mode. Allocates a buffer of 4MB and reads files in chunks into this buffer.

  2. 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 mmap and madvice on Linux and Mac systems, or CreateFileMapping and MapViewOfFile on Windows.

  3. COMP: Read the entire file at once without any buffering.

-vb/--verbosity: Amount of statistics to include in the final report. Available modes:

  1. BARE: Default mode, count only total lines and lines of code.

  2. REPORT: Additionally include language metadata, i.e. number of files, total lines, and lines of code per file extension parsed.

  3. 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.

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
time : 0.913s
scanned_at : 19/02/26, at 16:05:11
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
time : 0.204s
scanned_at : 19/02/26, at 16:06:15
platform : Linux

LANGUAGE METADATA
Extension  Files    Total     LOC
---------------------------------
py          2211  1088097  851618
bat           32     2327    1959
ps1            6      571     451
sh            14      918     582
css            6     3248    2570
c            485   652306  498587
h            637   356061  319201
js            10     2431    1775
html          18    10327    9132
xml          119    31796   31615
m             10     1029     807
xsl            2       33      16
cpp            7     4989    3796
vbs            1        1       0
pyi            1        4       2
asm            1       46      18
lisp           1      692     502
ts             2       37      32
kts            3      307     236
kt             2      129      96

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.

$ locstat --config
max_depth : -1
minimum_characters : 1
parsing_mode : BUF
verbosity : BARE

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
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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

locstat-1.0.12.tar.gz (23.4 kB view details)

Uploaded Source

Built Distributions

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

locstat-1.0.12-cp314-cp314t-win_arm64.whl (32.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

locstat-1.0.12-cp314-cp314t-win_amd64.whl (34.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

locstat-1.0.12-cp314-cp314t-win32.whl (33.2 kB view details)

Uploaded CPython 3.14tWindows x86

locstat-1.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl (40.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

locstat-1.0.12-cp314-cp314t-musllinux_1_2_aarch64.whl (40.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

locstat-1.0.12-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

locstat-1.0.12-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (41.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

locstat-1.0.12-cp314-cp314t-macosx_11_0_arm64.whl (30.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

locstat-1.0.12-cp314-cp314-win_arm64.whl (32.8 kB view details)

Uploaded CPython 3.14Windows ARM64

locstat-1.0.12-cp314-cp314-win_amd64.whl (34.6 kB view details)

Uploaded CPython 3.14Windows x86-64

locstat-1.0.12-cp314-cp314-win32.whl (33.2 kB view details)

Uploaded CPython 3.14Windows x86

locstat-1.0.12-cp314-cp314-musllinux_1_2_x86_64.whl (40.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

locstat-1.0.12-cp314-cp314-musllinux_1_2_aarch64.whl (40.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

locstat-1.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.2 kB view details)

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

locstat-1.0.12-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (41.3 kB view details)

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

locstat-1.0.12-cp314-cp314-macosx_11_0_arm64.whl (30.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

locstat-1.0.12-cp313-cp313-win_arm64.whl (32.6 kB view details)

Uploaded CPython 3.13Windows ARM64

locstat-1.0.12-cp313-cp313-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.13Windows x86-64

locstat-1.0.12-cp313-cp313-win32.whl (32.9 kB view details)

Uploaded CPython 3.13Windows x86

locstat-1.0.12-cp313-cp313-musllinux_1_2_x86_64.whl (40.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

locstat-1.0.12-cp313-cp313-musllinux_1_2_aarch64.whl (40.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

locstat-1.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.1 kB view details)

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

locstat-1.0.12-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (41.2 kB view details)

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

locstat-1.0.12-cp313-cp313-macosx_11_0_arm64.whl (30.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

locstat-1.0.12-cp312-cp312-win_arm64.whl (32.6 kB view details)

Uploaded CPython 3.12Windows ARM64

locstat-1.0.12-cp312-cp312-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.12Windows x86-64

locstat-1.0.12-cp312-cp312-win32.whl (32.9 kB view details)

Uploaded CPython 3.12Windows x86

locstat-1.0.12-cp312-cp312-musllinux_1_2_x86_64.whl (40.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

locstat-1.0.12-cp312-cp312-musllinux_1_2_aarch64.whl (40.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

locstat-1.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.2 kB view details)

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

locstat-1.0.12-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (41.3 kB view details)

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

locstat-1.0.12-cp312-cp312-macosx_11_0_arm64.whl (30.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

locstat-1.0.12-cp311-cp311-win_arm64.whl (32.6 kB view details)

Uploaded CPython 3.11Windows ARM64

locstat-1.0.12-cp311-cp311-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.11Windows x86-64

locstat-1.0.12-cp311-cp311-win32.whl (32.9 kB view details)

Uploaded CPython 3.11Windows x86

locstat-1.0.12-cp311-cp311-musllinux_1_2_x86_64.whl (40.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

locstat-1.0.12-cp311-cp311-musllinux_1_2_aarch64.whl (40.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

locstat-1.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.0 kB view details)

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

locstat-1.0.12-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (41.1 kB view details)

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

locstat-1.0.12-cp311-cp311-macosx_11_0_arm64.whl (30.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file locstat-1.0.12.tar.gz.

File metadata

  • Download URL: locstat-1.0.12.tar.gz
  • Upload date:
  • Size: 23.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for locstat-1.0.12.tar.gz
Algorithm Hash digest
SHA256 e23d5d89c4511116c2165d35d87e4e201a74c0df3185b2d5256805be6d091b86
MD5 c40cbcb60fcde2a24f3d46448ba0c7b8
BLAKE2b-256 bc56f1869352a39250e8fe89df8d982f72a106d87f3d28c5274c7896762de4f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12.tar.gz:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: locstat-1.0.12-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 32.8 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for locstat-1.0.12-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 8ca84db609841c58e3c0a01b177bea488bb3da97220ad1d2d153b21338aabad1
MD5 98b07ea546f51022b48fe4e4a642e906
BLAKE2b-256 e8049ae874f7cdd98dd20e120f0bb7cdd194f57bc152851e6cde4a6ee911d671

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314t-win_arm64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: locstat-1.0.12-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 34.6 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

Hashes for locstat-1.0.12-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 99a20c2ea62a4b68cff6f83daea43ff4c945c10c484a08441eb02c7b7dc3d598
MD5 57981001c630898ad3f06815e53dd0e8
BLAKE2b-256 590d5e366a4b2760e44e6cd07711d86d2a431783fb59e6b67b1dfc3e24e457d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314t-win_amd64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314t-win32.whl.

File metadata

  • Download URL: locstat-1.0.12-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 33.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for locstat-1.0.12-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a50ee6d6936cc82abef1fe4349bb423659aed4e55361d8ae5e910ee8e870783d
MD5 85e84b6c7556d21f52ffba06ec2a7d3b
BLAKE2b-256 d92d46862e658cf64d70436987d4e473e515d72ade014a2c179556bc987842e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314t-win32.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54e6c95d58db3c6975c326ffe3072e8068f517874213c47d3e95e806eecba144
MD5 1013db3c8f1dbddca3cc7d06ddcdc5d2
BLAKE2b-256 ed0fd5fd2b5338b272990832d9a914bc472aa39717d11e555d43004dcc182fe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cca8a8c80ea14de85710fb48c864ce1e06a5cc5367d8735562f05497c95a5a87
MD5 5203b035d6804cfff60037cdee7c853d
BLAKE2b-256 da299dd75335545d76cca11989b084c3d6bcb818017b6194d1a925dda84a8016

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f791af5341ff88f629544dc081f7303b9c9eb9c3e7ee35df6a55a2137b66241
MD5 d243e94640893f5e67a90fcc62701fbd
BLAKE2b-256 61207060dd640c285054bb9b34e9f3385a1ab477787e8b27d5283777b5444047

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 67162c71f958f8619c409cfce1590377bd611431772fab3065003b9c3eb36e88
MD5 25c026da70a20ab87f0483a16b280bcc
BLAKE2b-256 20a825d6889707a94d2fc8f4a19bfcbf20d8368167f3a9423e226a968ad5eda3

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14f17e975e17949073727494d7b6cc47832a95bd35e44b814c5f1ec67df3c2e0
MD5 328a05274ba50b7dc3f75f67a98de6b2
BLAKE2b-256 2336df4bef6e1c6fe1f7145582737d6d4a589fe4066495f101a481c110aa6544

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: locstat-1.0.12-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 32.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for locstat-1.0.12-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 518d0e898c2f82d247d7ad1cc9f926da5d2fd461d85b3ed363c39fd0c102f878
MD5 ebbcd85a7b0aa1c4da27961dc6cc8bec
BLAKE2b-256 439f558aee489575d419bf1dfa8a1b75363fd5f1f319a53f3e3854de831f3c80

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314-win_arm64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: locstat-1.0.12-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 34.6 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

Hashes for locstat-1.0.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0ff10eef29eb64edb6161ee3788feb282a42ab7128a5f3d9a1981b7defa3ab70
MD5 3ba5fbc2ee045adac008c53eb436d083
BLAKE2b-256 7738787c9e0ada60fe25f09689dd5608ce381b3392cfaee5181da058f35cc0db

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314-win_amd64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314-win32.whl.

File metadata

  • Download URL: locstat-1.0.12-cp314-cp314-win32.whl
  • Upload date:
  • Size: 33.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for locstat-1.0.12-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7a28bde9a801fd83189f23a9a3d04f919da4468984051d0dd2f8064d03ed56ea
MD5 4c673f4bf8f0fe5f52ba7ed849141d14
BLAKE2b-256 f79aa0651d33617bb6230a9a1326a18d345b23592b75d1f4d445d6db41185d63

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314-win32.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a2d6492956abc733a2a484bc5c86bb2972517dbab3df541cd0c4ce257d23c28
MD5 3601b475d6fac5f3ba3c9190f718cc53
BLAKE2b-256 cbaf459eb121a73283ac7a6770fa632f193d47fac527a12647ed48c7e6264f48

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de6ca3d0488b64f4814302965a1f28961e8b53c49c3087595f5a08545686dd1d
MD5 084679d1cfb1674b99b98a6938492a69
BLAKE2b-256 4f22063b7ce8b1b378ec2bb4914ccb2f58194ab71fa2741eed831d156ca53043

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ec99ac6beaa7e2342616ca9c84e7d55554b1160adab80f01bd948ffd6ba4d73
MD5 9d59a6a51e27537e23335382b656b99b
BLAKE2b-256 3e56c5798cc9c569145c6a74a9a5437d6fc49e15500067a9b9246a3578eb8c60

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 dd0e9c080480e12fc9ed4182d908f5c008c177a3af8772a5a66778c07fc0cbc1
MD5 dcb1a903652673b3a37f6f8df4f0da5f
BLAKE2b-256 6627db7845ca6dc1bfec64aae9f9f6382afe33a2c785b5889af2c8d0b39ea6f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6aebda452fd0b268e6d3561823d8ecfcb1f1c7fd962b954e881c52e3082a6dc6
MD5 99c320868d6d3dae05424399c0ffe1c4
BLAKE2b-256 81bb33eeecbb3ad49913a9566f47ad4225322e3a83f18176675b75c82745d79e

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: locstat-1.0.12-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for locstat-1.0.12-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 160427b09c61182e57c2bba2b7458b82e3a1e87724f8ed970d28719b2d85cac4
MD5 e509ed727bcd7ee64d7d356b8cde2caf
BLAKE2b-256 6713c1d6986ba860df12752b8b2bae47294fa539f1bdb4cc3ed654db3a641779

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp313-cp313-win_arm64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: locstat-1.0.12-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 34.3 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

Hashes for locstat-1.0.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8cbab4e9cb8856d0d165fb43db790038e3e64315488e923ba96ee2528ca48997
MD5 16cce3c5324c2f42bf5f070302e58ffe
BLAKE2b-256 f3f0891d12ee661b7792f57f7f186e5707e72738cb094f43a83796052c1909ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp313-cp313-win_amd64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp313-cp313-win32.whl.

File metadata

  • Download URL: locstat-1.0.12-cp313-cp313-win32.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for locstat-1.0.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3e644e0ce053754ce5a7642ad1d3daba4cb0e592eb54c8a20db30b811a3f3d54
MD5 5c5669e2e16f96552e4f5e2b4c45b420
BLAKE2b-256 95dad95391f00002cdd4af2672dcebfff50bacaaf07ed157db2ba10e33a5abad

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp313-cp313-win32.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c35a328bf1e1518b01f7dd157477181754cdc318d4d352cfae83d7ae49f4013
MD5 5e4f286863a4d66cdd9d48dba2d1e542
BLAKE2b-256 9607635e418536d8cdfead43102e68bf497e5d9e28add9f9eb4c77675db0580b

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7608098c25c9f202db21849a47a539a4828632db0fa4a96cb8d3bd49b3d8941
MD5 9e8293cafcd6ab1b1ada087368ab5c67
BLAKE2b-256 6345ca0aed29e545e20a4bc9896d13ae9811df3865703e20f860f76a14beb130

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6f7b1e8014be4adcc00ba1414842b19a4acaada972cfb65b037a0f051086ae8
MD5 c96b4f3593c6102b792e099ae0142515
BLAKE2b-256 c63384d3c70e92ccae43c09625f2d07ae1f1cd289b78c61c58d91b5aa15afbfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 533cb33cfaad24205acd8e812ff624a1a8823aaad70eaf9f912266e209bfc367
MD5 d3252751fe484e01cee1daf6d18d663c
BLAKE2b-256 4c3111339d6d7b90fbfbb3e70fd56f1c93f91e8c9cacc745c9f0254a2946027a

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d347e827610f421fd6f601ccf5c4a4dfd8dc21744dfefe3dc332c58eb6bcb38b
MD5 fc237eeaafb1fbdde1aac7317450bba3
BLAKE2b-256 fd66f329d112907efb7f995d595e090fbb0cd9b07d780e3adbc98f7ee21bd017

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: locstat-1.0.12-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for locstat-1.0.12-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 384e9ab555e88e07fc392722e83892bc797597e50533e5b072e0a051b93a6fad
MD5 6e94817307a49f930e12b6e27a5bde40
BLAKE2b-256 f0da0e2665bc403041d17c741a8474fbb6504fa3e6092d2bb8656b6652a682c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp312-cp312-win_arm64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: locstat-1.0.12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 34.3 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

Hashes for locstat-1.0.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 493c6ecc60026334d8340fda09a2b28cddde139fe870f2b70d83e23761feaea2
MD5 c874d289a4e0ba55f5e6dd1cc68e6f2a
BLAKE2b-256 31a9e3cac7728595fe91be0da667eb8554f1563e2a4500bbd7d32bd9a00de4c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp312-cp312-win_amd64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp312-cp312-win32.whl.

File metadata

  • Download URL: locstat-1.0.12-cp312-cp312-win32.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for locstat-1.0.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9c79d90e061867b45594391e809df5b34425e4f1e0821e4b23734c22cd5b88b9
MD5 33589e800698e027f2bec5718d861693
BLAKE2b-256 9dcdc5d1d0571131f06aa57f11e7724bc44b73226076339a4ddf48e81c0dd079

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp312-cp312-win32.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7fa46196cf6c4d1bfd55fc5996a0bc8a9cf219115e7593d2c47ce99e7723b0b
MD5 034118c21e22b9af63011e6c4b247405
BLAKE2b-256 37893b639ef1887c153c7329e085e10a86189b2bd55ab664b950b136356dc96a

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3251f5ff33b7809bffb2fdc970ca5dcc005ad1112a088b6574f25bf22127f298
MD5 a6467c378413c48c14ade20eebba8597
BLAKE2b-256 6030cfff0dd0ce2fa52ed32922cb58918c3bb61d42926f90489623cfe9b8175c

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e794013e82698c929fac80e34819dcbe45e7935f940ae4149cef4f86658b121
MD5 732029468aca2e99445d2924410dfde8
BLAKE2b-256 9e62e55d0665714093bf26fcd5b48c9ac286621f40a2d7982e11a1ede1fc6b59

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 85a30cc932821a4e14fd8dc15b824dbf920f49ac2a333e5bcf035053e28fd4d2
MD5 ac34e8b8f4333ad723b13cb2b9afe6aa
BLAKE2b-256 b15a9714d17e39958d3b7372aef85df37b4d86abe36b020bb32b78465b9c8066

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6afd849c6be4275eafe5c2a92618176780de1a9184c34bb8e860bcf6ce91dd90
MD5 44f67fb8fbe1bf1dce254f2b753eb74a
BLAKE2b-256 60eee81b34e592412d7155e3307da730c0d548aea7f2c84835b8e7d541ba859e

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: locstat-1.0.12-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for locstat-1.0.12-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ef70d2ea5612e260d2142b547ff85d5a17b064574e1c1febdddbbec7a5f4004b
MD5 dfc615bf7b41e8ad6e449b1c1b9b12dc
BLAKE2b-256 9b4f86f09718240bb2b5a45d1166643632582bd4552a0585275f1da6ebf5c0c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp311-cp311-win_arm64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: locstat-1.0.12-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 34.3 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

Hashes for locstat-1.0.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b0dede816170fb739d5f6926d523793b5eca77253029e29c954223f07ad786f4
MD5 63e01cecef8790c45643e8eee3fa9310
BLAKE2b-256 1932a44196e8a2115d358d0f935022b3ff3c49f07796b31137a0ca041ede243d

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp311-cp311-win_amd64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp311-cp311-win32.whl.

File metadata

  • Download URL: locstat-1.0.12-cp311-cp311-win32.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for locstat-1.0.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c53600cdb8d3082d3d94c1e32e7be6a9ccee816730bea91506bc1a024a1c55d4
MD5 664ecb833017b9b7fd9c4d512ba921c0
BLAKE2b-256 d8e08fdcd285cb5cfa08ae355dd0304dda881021da41ff174083acc14817d78a

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp311-cp311-win32.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea35b18b237dc23c9f032cdcc098680a7cd5885ea8f74572514fe83dabf4f3f4
MD5 8b1df15e0990c35648b3c0f10d97e153
BLAKE2b-256 ea82b5692272dffe994bd4a5dcd4b4801e99f94f092312fc09715131eaaf51aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e66a95a5438750eacecf19fe914baa43ab9aec1ea49f98bb2858b446e32e617f
MD5 c0f6f7a435dbbd7e600234916417ddc2
BLAKE2b-256 3250288208e2aa55020b2e207f0a66e64577bc2b28f5e603d5a29cdbb69764a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53026194070c1b744aa79b95c9e40b8fad9db4a785d6beff3d4062cbcdbdb3ee
MD5 a31d5cbf044fc1dabd8d49da1ce9b2e1
BLAKE2b-256 1676831a5f0bf9ed3307f014e9002ae2f93ccf403c70b7e9cf5efda2c64ee58c

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 141ccacc5afde3cd6938b097e5fbb458b2e766f3bb78a02acede7be98838e5f6
MD5 f6394d7db362334b35d09777b11241bb
BLAKE2b-256 b9b36b812012ad7d4ae7983da5f49fa3aa8b3604730add41314ccc310dcb5345

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

File details

Details for the file locstat-1.0.12-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for locstat-1.0.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e6a1b1d37ea7c83c1471d784a04bff0c4b7700ee96cf74eb429715b99fc2fbd
MD5 2fd39ddc3811e622a89ef309bf8db0a6
BLAKE2b-256 9aa923923de0e98c44f36ee3771dd48a382e6e3fdffa4d3fb2565fbf2dc08e46

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.0.12-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: tests.yaml on parthacharyaaaaa/locstat

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page