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

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

  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.

-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: Resore 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
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.

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 -f bar.py --language-metadata foo.json
GENERAL:
loc : 4
total : 5
time : 0.000s
scanned_at : 21/02/26, at 16:24:19
platform : Linux

$ 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


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.2.1.tar.gz (25.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.2.1-cp314-cp314t-win_arm64.whl (34.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

locstat-1.2.1-cp314-cp314t-win_amd64.whl (36.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

locstat-1.2.1-cp314-cp314t-win32.whl (35.1 kB view details)

Uploaded CPython 3.14tWindows x86

locstat-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (42.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

locstat-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (42.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

locstat-1.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.1 kB view details)

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

locstat-1.2.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (43.2 kB view details)

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

locstat-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl (32.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

locstat-1.2.1-cp314-cp314-win_arm64.whl (34.7 kB view details)

Uploaded CPython 3.14Windows ARM64

locstat-1.2.1-cp314-cp314-win_amd64.whl (36.5 kB view details)

Uploaded CPython 3.14Windows x86-64

locstat-1.2.1-cp314-cp314-win32.whl (35.1 kB view details)

Uploaded CPython 3.14Windows x86

locstat-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (42.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

locstat-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (42.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

locstat-1.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.1 kB view details)

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

locstat-1.2.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (43.2 kB view details)

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

locstat-1.2.1-cp314-cp314-macosx_11_0_arm64.whl (32.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

locstat-1.2.1-cp313-cp313-win_arm64.whl (34.5 kB view details)

Uploaded CPython 3.13Windows ARM64

locstat-1.2.1-cp313-cp313-win_amd64.whl (36.2 kB view details)

Uploaded CPython 3.13Windows x86-64

locstat-1.2.1-cp313-cp313-win32.whl (34.8 kB view details)

Uploaded CPython 3.13Windows x86

locstat-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (42.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

locstat-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (42.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

locstat-1.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.0 kB view details)

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

locstat-1.2.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (43.1 kB view details)

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

locstat-1.2.1-cp313-cp313-macosx_11_0_arm64.whl (32.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

locstat-1.2.1-cp312-cp312-win_arm64.whl (34.5 kB view details)

Uploaded CPython 3.12Windows ARM64

locstat-1.2.1-cp312-cp312-win_amd64.whl (36.2 kB view details)

Uploaded CPython 3.12Windows x86-64

locstat-1.2.1-cp312-cp312-win32.whl (34.8 kB view details)

Uploaded CPython 3.12Windows x86

locstat-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (42.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

locstat-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (42.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

locstat-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (44.1 kB view details)

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

locstat-1.2.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (43.2 kB view details)

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

locstat-1.2.1-cp312-cp312-macosx_11_0_arm64.whl (32.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

locstat-1.2.1-cp311-cp311-win_arm64.whl (34.5 kB view details)

Uploaded CPython 3.11Windows ARM64

locstat-1.2.1-cp311-cp311-win_amd64.whl (36.2 kB view details)

Uploaded CPython 3.11Windows x86-64

locstat-1.2.1-cp311-cp311-win32.whl (34.8 kB view details)

Uploaded CPython 3.11Windows x86

locstat-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (42.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

locstat-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (42.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

locstat-1.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.9 kB view details)

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

locstat-1.2.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (43.0 kB view details)

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

locstat-1.2.1-cp311-cp311-macosx_11_0_arm64.whl (32.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: locstat-1.2.1.tar.gz
  • Upload date:
  • Size: 25.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.2.1.tar.gz
Algorithm Hash digest
SHA256 f7738ac66180b95ad0eb1ab272aaa5cfd60616a9bedb15d8ef121695e7f281d3
MD5 5edf29ef5311c6aa21fd01b50bd08255
BLAKE2b-256 dd134b05b2872b4073732bfc7474eb23a1059ce9f02b455397d7c8ba89f9243c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 34.7 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.2.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c817954663a5901fc20a81a9c8de20494e479d12345f91b78099aa4cf3fc6199
MD5 0fae97133ce0d7e952103777ea1f7899
BLAKE2b-256 644b264172339709344af18eaf7f81e9854ee92fe92e331cf5b003bcf7acb442

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 36.5 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.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9c7bb9967fdee3de970d30bcf184dc5550d66cd4e2f4bf95bb1f9eaba632a672
MD5 4656da42d9cd3f28afbddf5c83da5531
BLAKE2b-256 5f9cabc60ecea26b6b16ed87bad909a39b99e60e27be38dc51248a87a29a829d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 35.1 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.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 714defdca8c9d3f00ea2bf37cb851dfac9201acba1932ae3c7753cae5e96f144
MD5 cb97ee0ec18a0a8224d076920f958c9c
BLAKE2b-256 aac3373f8b73258c79a4a5514b395598f338d1fb10f0b5082311803fc52de20d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00c600a9444148b23dbdd633a8adc5194a1cebe970e389c2b16cd4db1a1ff749
MD5 b8716dd3f36500dee8766ba0aa74ee15
BLAKE2b-256 696680be042667409378077574d21f3bbbcad0a487f5a9f34444c1a52d1f43a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 530b2d103f840e1c36242104121c73ea35055d3ad9ab7da63a06554a8ee09478
MD5 b60bff00abb96eb2aa72374a629f4748
BLAKE2b-256 e348f57555ed599ea82e8b434ca1535ca5e7e8e7d4df63c6d576fc8b92936e89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89aba65672e8306871f7d6bd1c9d560c2f0948b8c3b837de7a412d04c33d17dc
MD5 fa96802c6e816b0eea10bdbdbe197a83
BLAKE2b-256 32e858010c500d4e0fc3bbd8af3699e789012526ee01b55b3443a4db7a334bda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1ec4803d215f9c56d76aa71f0003719b7742fe75ea75bdb39635f679595c13d0
MD5 871a3eae96c8692bb6b55c92af11e866
BLAKE2b-256 2d9c8fe2f321996f71537d3b394e65c148b75ef8800efbf04c6b6871d06aec9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 412b4bcc278b9463c1bbf8821c549d00237046f02fb95f3ee457d2cd87bfd1c1
MD5 f71d129647166631f5b0148e1b204e05
BLAKE2b-256 4c0ff6454f3ebad33eaeb2d6688d3805c64f9e434630bcf1b70dbcdb2d9d6596

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 34.7 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.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 952aa5716ce5ab841a00f1d21a506bef044bbc08f4be78dda98264e1eca37106
MD5 394ec9f4cf9fdb9f36b9547b5a845c13
BLAKE2b-256 365e34d2ba188ba66321f0c2e01437187a6add9519d45ae9372f3dd98041e359

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 36.5 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.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cde89ff85c0b300255c8332bccb5a70f27b4b0edb6c33d4e69ae752a2e745a23
MD5 3df48d6967f9b6d748076a9aa00d527e
BLAKE2b-256 3988b944af27d11a5e31701b1e9d17f6b01c362d0dd94f4a1c51b8f4d1fca76a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 35.1 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.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7cd9eda300a365e2e0b4c74c6579f409db452226599ca71f9247f1045898c7de
MD5 87d411b602c3770c1147cad7cd741da4
BLAKE2b-256 c10105b0a0e1ad0c9bb360450e71e0ec7411c0e60a26b0048fd9ff19ee36f317

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57e253b47aba64796c7017a1660130c77594195de796294580374a016c324e10
MD5 0076e4426b58b1417f8e6c9b78ad5769
BLAKE2b-256 b1e378c413d1921296aac0825ef35b38ec68d2b5eaaaab49b8fffe1c151d108b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37ca591102926af5ce0dd1bc227de96a8f37e5f3faf19d5af630202e4fcd5418
MD5 29bc7aee4bca04259731c275edc0c879
BLAKE2b-256 f4179771ab5eaa916b52d1faf5588db4507b6e2ce8706ec21da9fa853bdd3976

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a4d3c2a614afb624edac7109a15702ed2ad6dc7c950ef1ce9e627ea60856e9d
MD5 788ab0aa941d27299fcf83f9c3ebd310
BLAKE2b-256 78da0af668130e3ecbfe50aa89e131547af77f2aa0d72338ab204a8a58d60c65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1e11984b043fde64e304e71168b88f8b96a381c25f44670d4735bd31899db17c
MD5 b1d614620ce4a7b5dc0dcc814f9392b8
BLAKE2b-256 7e63216d3aedc0a2a8771fa40fd202946af0d18ebd7d2a35fdc589e1cf8d0dc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01552f7c62d8ff4de5d0313b6ccc7184197bf1735012aa442aabe34d1099c9d6
MD5 9026c2a53b56f518e9b45cdb9dca8478
BLAKE2b-256 be7daced2348bb9c9ed23a22a2f87101dc897d46b08c475449796478ffc05fc7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 34.5 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.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 186e68496d33ad5d5104b7aef380ae6e43acd157fea4ae147006b4dc0279d6b2
MD5 26c8b5a61633c98fb31941d29ca54964
BLAKE2b-256 8d4d7655949318e56dd8b7206cfa98d8e816b0489cdb3dfca0c6baba8067930c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 36.2 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.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 12e81087864150c4936dd8f6bd532f78e3c52a43fb1b317987acfeafdebdf08e
MD5 18955cdc10a401287fc4cad5c3bbd0fe
BLAKE2b-256 d945c5da61d76094b983ea2d9583116ac86c8e5645aa38d4d90ee9edc5d0775d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 34.8 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.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6724cf14099bb85998fd7effc62e52d10c2f0b88d4f11fb7b917a3924c333139
MD5 7f1c3d10c8f01b8b4467925263c6556b
BLAKE2b-256 3cc304665183f3c3775bfa0c47755a6bde6292d351d3b85333dbd113e5b07451

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa30767ce5f35100c1fd077548c1e2bf4ddf5fc9c396369710a39fc174078c99
MD5 c8505bbbe01bcc10e4136e25e4b6d0e4
BLAKE2b-256 5a56d64dd4cf550793a339f440ddb4080b77b554ce2018220ef6a414d4dcbd31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87fa774900010e19db80f1417dc364432eb8b6de6980673fac19a95ba9954676
MD5 42f7fc71cbe0c7c0e1ae93d75e305f9c
BLAKE2b-256 909fc49c9ec8a1984556a7f1a0955f17ede88424a25bb26986b9aaebd06c44d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00beff4f6d3a9b2c845fe148c52dbfd84958e41edeb460ae3c53eaccecfb39dd
MD5 ea779b33a5d38edaadcb7b5a0d4245d4
BLAKE2b-256 0b46fc1bb214dcee0575ee93f4891fcf99f2b6c5aa94bab89156b2178baa574d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 afa4695ec036b7668a545c8f4406bfbbe538abd131020c872903ff460132367c
MD5 3da3e7468de513b6bce77c7229013a37
BLAKE2b-256 18447309a258433b3a3332f3901abee5a69eee9fa82f630084cfd0783b62895b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30d9382cdf2b431fe512484b8bda075bc4da297d8d1cee2e54867116b49d1fc8
MD5 9af70f962e2ad1b5d9b3b3751cf67feb
BLAKE2b-256 bbca31561915a2a6c058ce5b7172bd9cbb7522102a1f01996850de516b30a8f9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 34.5 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.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5bb5fe235f77bcd78de7a8f8e7f5e8a9ef5799126039a4b9c8ca3caf95d9c7a2
MD5 462caddebc1842b30380ed309284f57f
BLAKE2b-256 f30735440989153011d5111dc2db13ba2c2f5b0619ca31d2a09bd2d8e1360d8f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 36.2 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.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c4d078b4a5254b48945f42002b83a9c5bae5d8a6abbe4c1b4766aa3747daee88
MD5 47b37c92bfe7884a0ab4cdc7a36dddfd
BLAKE2b-256 9be89779c1a6f245469640148f0017526e26effdff1f21e7cbc58374b205eda9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 34.8 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.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9e6b0afe6255d1b21c796a2d075fd556038f7c84242c6cd264449cf0afa21950
MD5 f55e56720ca7b15ede5cf4ce60f1329d
BLAKE2b-256 0063702f60c31e47df118bd6bb0d2df2bfb4c46cbee093391cd71a3f3fc00447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f55289c1799561b3549afc333802e14946cff3015c05bdd914e3e67da84ebd7c
MD5 2c9299d9e453554b5c16a761ac674969
BLAKE2b-256 d7935e7e05e095d98b355c4a76586665c2425d81cc23fca7cf2139ab7437ed02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08c6dda7b9cb45e583ab6a2568e31c2ba598ad98a00ca430a0f4d44d0de32d8d
MD5 cb22416aa2006b58aea0820ed0b3d64e
BLAKE2b-256 a439f022a57c79963bac8e058a90a094f71b203e58ea8948aaeed4ec515b8662

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 352bc4d6a6f0a321f9a4a5464b13b50c07b17fbeb6f25b401ab18a6c754b7bcb
MD5 8deb023fbb665a34d9211a6dabd5511a
BLAKE2b-256 5e43bf42581b8fa583042111fbac257e190281908ac91fc757154012762b3c6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 eae0a567008bbc702607154416047ba43339fe0c55e799196dada974440a8be4
MD5 13d01023a65e565a03c255511b5e14d0
BLAKE2b-256 7339d7084117d0622bcaf3167e391da4e08a27baa74800fcc37e2b1bd79ef6c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bf6db734f0305b753e8502a0a6895ec24ebc4a72feea3f4424947a65c949c1b
MD5 49558eecc24b26dc62341ad55bbf7e97
BLAKE2b-256 d59926a67b8e9650d49a72ff561689579a8a5b45d106aa1736f368b68bad48f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 34.5 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.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 00dfcbd98a6ac8b76af948d21699ee951fc51cbda18f3b54a6767c4b143c7c9a
MD5 5f39eaa7617b1876b3463471aab536c5
BLAKE2b-256 c4f611a636052b8cea1a8932a2bd3fc4f4642329bc461e0e694c138ac79182df

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 36.2 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.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4b3487001e6cb758f46874c298e07ff4c1bd4823c37fb3bbbb17583c1e89b351
MD5 5aaa49211427e7b914d69ca148e1a6e0
BLAKE2b-256 83da242e3c29a1f639d2afc17cd23fd6589c0036be61130307db2b2248950f16

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 34.8 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.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ef3642bf0825b4bfeb261b5f0fc147b7385d0b912ce21ac0b43ff2d7109ff985
MD5 75c66033f5c2ab68b738fc1aa3f62da8
BLAKE2b-256 b41ddfb86adcf131153f8950ac1c68645bb0cd3dd7e4e4e2a848ab76dd9064dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16fc0ae458eaaca27c5d55500b1a8d2cadf8e7c101bfef7cf964da88aec82fa7
MD5 ab58b971d60fe5bcde7068f78d540be9
BLAKE2b-256 017dd3fbc9236851009235c4dac45afcca09506b04bb398f146db545daaaa363

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf4b73b327c008c2f3105cb30ed5e5d6c866a266600390d648c67fc02f1339c8
MD5 adcafeee5a18bb0f54b416f2df2c959a
BLAKE2b-256 c8d4f60624d15e9d348f094d5ee76a502100d049eab040f2c68a86d56ad7e514

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b086fa0b920c735bc52ab942bd98d18fc8ce225b6f26253904c30d42cfef2389
MD5 cec4ef41ec908b30a48f2175ae4afa97
BLAKE2b-256 78f6e9fb2ded937e908d312bce2dd716e8efffad982cb6617133e515e2a1abc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e9517255443b928f643c2a56e3220099a0874ff6321b5bc537d87ce85ef1e481
MD5 eabdd1be8362c64e5d279bf9ec6d8413
BLAKE2b-256 829cd5c045532ada2185de393ca3c876c88f73c9f4a2d2c05927cca85e1bed16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfbb3b2504745138e92fe5ca50a330ab30a45d9d338fd2039bd12bc4b6b1f411
MD5 428555e58b83d2ec0c3ae6d3dfbd3ce2
BLAKE2b-256 03cfce86eece7ad77d8dc08788ca6a5afcec04660e6cb4b0bf10546361e71a85

See more details on using hashes here.

Provenance

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