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.1.0.tar.gz (24.6 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.1.0-cp314-cp314t-win_arm64.whl (34.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

locstat-1.1.0-cp314-cp314t-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

locstat-1.1.0-cp314-cp314t-win32.whl (34.5 kB view details)

Uploaded CPython 3.14tWindows x86

locstat-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (41.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

locstat-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (42.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

locstat-1.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.5 kB view details)

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

locstat-1.1.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.6 kB view details)

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

locstat-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (31.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

locstat-1.1.0-cp314-cp314-win_arm64.whl (34.1 kB view details)

Uploaded CPython 3.14Windows ARM64

locstat-1.1.0-cp314-cp314-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.14Windows x86-64

locstat-1.1.0-cp314-cp314-win32.whl (34.5 kB view details)

Uploaded CPython 3.14Windows x86

locstat-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (41.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

locstat-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (42.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

locstat-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.4 kB view details)

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

locstat-1.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.5 kB view details)

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

locstat-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (31.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

locstat-1.1.0-cp313-cp313-win_arm64.whl (33.9 kB view details)

Uploaded CPython 3.13Windows ARM64

locstat-1.1.0-cp313-cp313-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.13Windows x86-64

locstat-1.1.0-cp313-cp313-win32.whl (34.2 kB view details)

Uploaded CPython 3.13Windows x86

locstat-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (41.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

locstat-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (42.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

locstat-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.3 kB view details)

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

locstat-1.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.4 kB view details)

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

locstat-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (31.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

locstat-1.1.0-cp312-cp312-win_arm64.whl (33.9 kB view details)

Uploaded CPython 3.12Windows ARM64

locstat-1.1.0-cp312-cp312-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.12Windows x86-64

locstat-1.1.0-cp312-cp312-win32.whl (34.2 kB view details)

Uploaded CPython 3.12Windows x86

locstat-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (41.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

locstat-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (42.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

locstat-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.4 kB view details)

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

locstat-1.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.5 kB view details)

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

locstat-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (31.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

locstat-1.1.0-cp311-cp311-win_arm64.whl (33.9 kB view details)

Uploaded CPython 3.11Windows ARM64

locstat-1.1.0-cp311-cp311-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.11Windows x86-64

locstat-1.1.0-cp311-cp311-win32.whl (34.2 kB view details)

Uploaded CPython 3.11Windows x86

locstat-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (41.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

locstat-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (41.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

locstat-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.2 kB view details)

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

locstat-1.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.3 kB view details)

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

locstat-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (31.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for locstat-1.1.0.tar.gz
Algorithm Hash digest
SHA256 02cbcea93dce4ca34e5b507a761b3c4fa6d40098af14828d35074a4920699517
MD5 74914dea5531b492ec3cf9b89b89656c
BLAKE2b-256 8a0ff7f04a4a8a85f94d8710135f0801c03c4bb30158357dbaca9b9c22f3b543

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0.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.1.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: locstat-1.1.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 34.1 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.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 872b1fa3082247bdb7543ad8350df3415e362530fdba4faf9010ff84117e2003
MD5 317433a02f1fda53c79529d2cd1c8af4
BLAKE2b-256 3405683a59aed6313c79275e68ddfe974812df39ca51cd37c712edcb31e2bacd

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: locstat-1.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 35.8 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.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3ae8d745ba93ca476ba4f5a327a33284b78868724474b64b306f9c663f78e606
MD5 0a9a55357dc9ae109245ea104da5a4f6
BLAKE2b-256 5b161ecb3926b169cb730efc7cd1cda7b02aaa50502786a52437210b790c97a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: locstat-1.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 34.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

Hashes for locstat-1.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 464961b60a2fd7f3c12108483f682b761cb765f9453906826ce708f13c21bf52
MD5 6aa0ff567fae06b5b2351250d98864e9
BLAKE2b-256 019acd3036d01406f92d88b0f6fbec3e592cad2eaeb28146ab0ed4735a1ecdb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5a907f6123c0b0fc85d90e45f1d4257104e46aab3260af5582fc5e624ab17c1
MD5 5bb9642371088d031d0b1feb2e40138f
BLAKE2b-256 f1c19b5738d6f7dd20a830abe57ec1a9329ed766316018b8f28d974ddcc84362

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32cde1b56ca6e58530f7647560cb5843354115c54eb8875ef21e085a5ddc11d3
MD5 8d0cf4fdca0cc2d249684cffd49625d1
BLAKE2b-256 62ffd3a542ec7608b03be36ff87bd7a0dbc288f4087f3c936bf3ab54282c1042

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1677be0d7236f6c5af516f60e7c9eccb58c2d962c2e8b2bf6fd9a2d085dd23a2
MD5 371cea50d9265663c1d1f3ce48f875ec
BLAKE2b-256 280af0d6668c738ce87b92d91bda8037190c46fa3abeeaf8b7fa57212b6525d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 06fa4771b77e083f538ab381f6cd6cdb644827b6ac7a248c5c731e299b239232
MD5 136efb8e397130f229bb58298c4b3c6f
BLAKE2b-256 d2ab97e60fd9d27bf55e8f06ebad4a6c90e26977d1dc2a778dad995bf7e907ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f6fb5a1b09150eb91a10cedf62ff09c3821912b298671fd03f77d69168f724c
MD5 43c24bad23edbacad130e2c81cba9d81
BLAKE2b-256 2846351cbea121d9120e2fd99dd78bb2b0fa6dd6ae5158db2ef93f1469a3951b

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: locstat-1.1.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 34.1 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.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 473e79843aac960f4851b3f79b063d77055600cc79a60591ccba8c337a1db1ed
MD5 80706544d61db0ff34e4239026cc63cb
BLAKE2b-256 49e4b729c99692fcaea7f9db4fc819a9a98202bd22e98316d12bf21433eb5bab

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: locstat-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 35.8 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.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 26371e7b04a094e1407b61c49087b08f0970175bd865a797847996d196a27643
MD5 d5de1a691a3e8f9e768e996645f3c530
BLAKE2b-256 192f767bdf2d07267a57499781092c4a0c83716d676da5eaa427bf233e5534cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: locstat-1.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 34.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

Hashes for locstat-1.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 68ef76256d42ba27ecf8f4abac055e03d9251c8933cb984528657281275f2d15
MD5 d4c8a7fcbbd30d1891fc3d685e03fc05
BLAKE2b-256 030e5dbccdfac401fd24865459a846c42c2db23896aee72b576775ecc5ed5026

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d50247c16cf76ce9f3b9c60ab7f8687877d96971fcc3ed3adb00160be6a84e91
MD5 116943735d403109fdc41c256c8602d2
BLAKE2b-256 dbc76f599780b8d502dfa8291e7a64fb167336316b804cc1bd715f452fb2129b

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45fd1717405402f4294c81603e08ca29563f740c657d6f61f7ed5f063cfa39d4
MD5 b0941bf5f926fc51cbda1a889157f44f
BLAKE2b-256 f83d7a0581a3ab9c6004eaabe224a5103309b0e8d96848220f379e2945735bd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f283712888772316f1c6a836b1a95e38897e1dcda0bc120120870f6f03134e3
MD5 ecb1b35a8c74b1cf962375dfacb65520
BLAKE2b-256 4d22eb1975ca4388f8a2cc5c54855a2a7e2618c3799f8753bda61afd56398082

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d0a163f55e8a123cd051dbc447be67b8de0be2687d178cc6ba77f53228b74dc5
MD5 c08c2fc7cb522ddd94b294c0e62f2309
BLAKE2b-256 daeb40a2a3f5c45bf8f6cd0b6156f430ff4216539413dda3b86d60e7cf6739f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef93eed47fbfcb82345a3c78a50a4ff0186822c7f391efa75a3fcead4e4fb413
MD5 098d5ceae61a72eaade8be7c28597b2e
BLAKE2b-256 8158c6bafeee1d1c32d6cf14400c8dc3b604da29fdd77249dc392d447b3942ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: locstat-1.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 33.9 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.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8e91f929f8ada43452f64e7e16f7216d34f42435f1f9cdefa2112a3bf7f242f7
MD5 c64ad33848606a1f01734391685fbbc9
BLAKE2b-256 cb5da6bda45d54361578735c5640ceb130c04f83645e92d057d646e0b103279d

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: locstat-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 35.5 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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 83dcf6a74059fe8c16dad7c8f99a17047e7a15b7b964e5ef80ad0736ee0a916a
MD5 ca92445a71b83f1d548e6bc03d1a5f82
BLAKE2b-256 6c2418ff3cfbdf73b78ce6acf8ce03aec85634d3b892c046eedeb07038822196

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: locstat-1.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 34.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

Hashes for locstat-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7424d9bba0e8f6ea5b12d0a9033630a33c114ebcd143ec47b6bedc3ad74cbef5
MD5 4dfa4072457d774d8f71cd0d433c7872
BLAKE2b-256 320292372baaaa68ca67f1200f6c9ae4ba74eeee2173fb0bfeb21a03c1a84400

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 084a16bed9f713060dde62fcbc09b8ccd5b597a37d3caef5fe6686bf32223b26
MD5 809376a1202558ee94ec63ba34034838
BLAKE2b-256 3f4b074c0d594d876ef13ea3c4c30d129bc70d53a21c4e96601b506e10ab8009

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 648e8fb0e92ba650319541479b0746cbe7900f49228c0726209bcfffe23d339a
MD5 89972cd30d00e094885d4bc65fd99e40
BLAKE2b-256 b2fd168b7290783971344c7d3152c385c46637aec970fd6bd0ffbdfa9f63f802

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b770abe8911cd2e2c4375995a85f937d504fea7fc6adb85447eb897e08dacf4
MD5 529a68cb6f12bd173a837bbd1672dc92
BLAKE2b-256 ec11ce81e4d4a81e415290710f73a74e451b405a17cf409bd196d2d80a23360e

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3599e370fefded9ac4d74dbcce8eca2e63dd55c55144312821dc050691c1ad47
MD5 545b8799a7006e3aa984b6aea74a8fbb
BLAKE2b-256 7c169e48be0a9ebbdca62a33fa142dd62e7cb3da8ee217e1f15c7e5d1951f751

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 883ad9f1254dbd31495b223b6cd8576cac0bdd361cd2b6f71f536a7dfb9b783b
MD5 0cbd3acf89580946738c147985b56edf
BLAKE2b-256 1d8a4fd6260e364d5e5d2e3a6595b9309ea8ef93d5c14b626f225ad3d6015bda

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: locstat-1.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 33.9 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.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 556bd065c82f81b38d1047bf68f1e1996f8597f21b9ba38709976f38604b0e50
MD5 1ff7d634652445757655531f84f7ce96
BLAKE2b-256 7c59c72c7f71f683818f6411168379af5492203a90900a05c1ae1f37600d0383

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: locstat-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 35.5 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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dcc5020321f56e96d7243fe939e025159d5c0450289d26f623b7c28c7c8267f0
MD5 ae3b85074ecfa4090239cad21960ecc5
BLAKE2b-256 ff6696a548adfc6a2f2ca0b3fb052445d93039b00ce37576cdecf7ac7c2a3f3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: locstat-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 34.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

Hashes for locstat-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 80c3005b23bd11eefdc68da8e1997347e14f333323c2acf73147428b917c0045
MD5 a6e8b1ff51065e7df3620b28da7d6f3c
BLAKE2b-256 70431c0ccec0cdd4501ab1e677817c00f01d5566f5728219b195eb21f5d89f3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc3d78a86250a85877d51faa3485269ec22773664de9af643d61d6ec6ff3a10f
MD5 85f9682b4eeb0dc6604c0aae72b2c448
BLAKE2b-256 4af505b803d7b2dda2a81f3ec339c4a6e1adeef9f115e1e06289c92c21e27706

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50c48d7a98bf23b5d7493a2fd02820552e5289a73a6a293e4be5932b5884bf18
MD5 f605cfa80bc40efca0fe839cea0b2f35
BLAKE2b-256 1f8f207d4eec02cdeae71506110522e5fc9c1ff50cd27379d3922c69eba93225

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66954f040cdc0db5026bd64c977132a1a3609bcb798544b26e50368b57fcea1b
MD5 19a399a051c36a1507c31c7c476c657e
BLAKE2b-256 855555758d73a0d1a44c0fc39989f5c95be20ac91a567a134540869c74d3e158

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c0d5dcfc1eb8a5cd406ab3e24eb7821ff6ea5ee21952c1fc421e720053f60c0d
MD5 7fc57739c3a6ce78fedff8b08480422a
BLAKE2b-256 ed4b952d61f9e56c089af56f7724c1e484acea4902d87599309b4b7bdb1622f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db8e76c9aa3b58f962d7aede9156371314e0e17286e8ac9a568722f99ee36f0f
MD5 10ff1517a08814df0f2a191aeb5fec13
BLAKE2b-256 51f781cc4badf511c7016cc6e48964410fc0c82250e08f019d6bac79ad54ddd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: locstat-1.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 33.9 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.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0aee429cc31d4072950ea34ec1faaad4283d8a78017c66098c775cfceba7c749
MD5 620f8af3503915416aa3f834fc7746ba
BLAKE2b-256 455de310874ceda1794a79689393237bf8f12232ab08345dd862995c5f5cb176

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: locstat-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 35.5 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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3bc0632c3ab8d7155cdae6e6b2cfcae384f0f456ac83ca364b5c7448ef13ea2d
MD5 7d321d052113e8ee1f15fdfb22fc6b27
BLAKE2b-256 810d02cf64c1a21239b0279ad3fae4be1116ac688e8b00341af8b1f87705d73a

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: locstat-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 34.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

Hashes for locstat-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dd5fec422bb957d2a937931187abb1ffd9541b60af8ae12c0e625ee6189ade33
MD5 7c206a0051ab0a467b6368539594a50f
BLAKE2b-256 c345fd5d062152f0c5a3a40b411bc2168b403efc4f1699a6130392156d4e8040

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2c3a7515c25b23e639ddcc6b59c65fe3f3d6f826fbec944a82a57c3b0b4b834
MD5 de1011fd12014ccfda1b9b71c5afdffb
BLAKE2b-256 8f71bd9d803b230a459ebb9d703c6214bbf05141b9725beae8dcbd0974ad80e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbe9058ae67666c8d28e163d5b2ab1a69f25ad9c5848911545c1db566a8a7d61
MD5 a2104701c6380cbb614caa021bed886d
BLAKE2b-256 034d6a5f372240f4b50fe8a967794fc78c338326016aa6be70abea0d36c34684

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 164dc38e3baeddbb44e00966ad5c445818d7c39fd8aa98752ecaaa0aff878398
MD5 6545327b491bece586e77e410b2cda84
BLAKE2b-256 ef663f4e21106c8e47e5307a703a6ea020d6fa24bbd335bf7dd3cf1b5ab87e5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3153da25ed5049df5b5f343352107b1bcc97474365de7ed9f87fb90bcd80abfe
MD5 ae09aa7276e02b6bb750097b1fc28c2e
BLAKE2b-256 f72d740ef814fe4aa706e7fc9cf270273a372bedc1cfdea57351c9d4844a1cf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for locstat-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b27a8f28925de61fa628af588fc3360f9f9910d1980c0e11eae0acef1472fa7
MD5 08443115916069270d9c52c903adcf95
BLAKE2b-256 1f5522df36e57f11cc967b8e96888a8ac60ab704ce75fdf7e01483bc451ef579

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.1.0-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