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
Comments : 213946
Blank : 218408
Time : 0.911s
Scanned : 22/02/26, at 15:40:51
Platform : Linux

Additionally, we can fetch per-extension metadata using the REPORT verbosity mode.

$ locstat -d /home/tcn/targets/cpython-main/ -vb REPORT

General:
Total : 2155349
Loc : 1722995
Comments : 213946
Blank : 218408
Time : 0.196s
Scanned : 22/02/26, at 15:41:05
Platform : Linux

Languages
Extension  Files    Total     LOC  Comments   Blank
-----------------------------------------------------
py          2211  1088097  851618    109836  126643
bat           32     2327    1959         0     368
ps1            6      571     451        48      72
sh            14      918     582       237      99
css            6     3248    2570       202     476
c            485   652306  498587     95501   58218
h            637   356061  319201      7124   29736
js            10     2431    1775       281     375
html          18    10327    9132        51    1144
xml          119    31796   31615        25     156
m             10     1029     807        85     137
xsl            2       33      16        15       2
cpp            7     4989    3796       385     808
vbs            1        1       0         0       1
pyi            1        4       2         1       1
asm            1       46      18        26       2
lisp           1      692     502        81     109
ts             2       37      32         2       3
kts            3      307     236        31      40
kt             2      129      96        15      18

Note: The drop in scanning time in the second example is thanks to page caching following the first example.

Customizations

locstat allows for default behaviour to be overridden per invocation, such as:

locstat -f foo.py --min-chars 2

This overrides the default minimum characters threshold of 1

Furthermore, changes to default values can be saved permanently using the --config (shorthand: -c) flag.

When invoked without any arguments, --config displays the current default configurations for locstat.

changelog v1.1.0

  • Configuration settings can be restored to their default state using --restore-config (shorthand: -rc)

locstat 1.2.0 introduces a new customization: language metadata

By default, locstat uses a flat languages.json file to infer data about comment symbols. This file is shipped as part of locstat releases and meant to be read-only.

However, to allow for customizations, locstat introduces 2 commands.

Example

$ locstat --copy-language-metadata foo.json
$ locstat --config language_metadata_path foo.json
$ locstat --config
language_metadata_path : foo.json
max_depth : -1
minimum_characters : 1
parsing_mode : BUF
verbosity : BARE

Now, changes can be made to foo.json, and locstat would always use this file as a symbol reference. Of course, these changes can be reverted through --restore-config

To update any value, append the flag with the option name and it's new value as a space-separated pair.

$ locstat --config max_depth 5 parsing_mode MMAP verbosity report
$ locstat --config
language_metadata_path :
max_depth : 5
minimum_characters : 1
parsing_mode : MMAP
verbosity : REPORT

Note: String enums are case-insensitive.

License

locstat is licensed under the MIT license.

Compatibility Notes

locstat ships using cibuildwheels, allowing for platform-specific wheels for Linux, Windows, and Mac, spanning different architectures.

However, some platforms have been excluded due to cross-compatibility pains or their packaging requiring extremely long waiting times for workflow runners (such as Mac systems using Intel chips).

This does not mean that locstat is completely incompatible on all remaining systems. The source distribution is also shipped alongside wheels.

Acknowledgements

locstat (formerly named pycloc, but that name was taken 2 weeks before I got to publishing :P) started as a one-day project to allow a good friend to count how many lines of C++ code were present in his UE5 project.

Since then, many features and improvements have been added to this still simple tool, all of which would have been impossible without the collective effort of thousands of open-source contributors, spanning across many projects such as CPython and Perl Cloc (the gold standard!) to even make programming possible for me.

Furthermore, the online help provided by thousands of contributors on StackOverflow, HackerNews and countless personal technical blogs has made it possible for me to polish and refine this tool.

My deepest gratitude goes to everyone, however indirectly involved, in the sphere of computer programming. Even for the smallest steps I take, I stand nonetheless on the shoulders of countless giants.

Project details


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.3.0.tar.gz (26.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.3.0-cp314-cp314t-win_arm64.whl (36.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

locstat-1.3.0-cp314-cp314t-win_amd64.whl (38.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

locstat-1.3.0-cp314-cp314t-win32.whl (36.5 kB view details)

Uploaded CPython 3.14tWindows x86

locstat-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (43.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

locstat-1.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (44.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

locstat-1.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.7 kB view details)

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

locstat-1.3.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.8 kB view details)

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

locstat-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

locstat-1.3.0-cp314-cp314-win_arm64.whl (36.2 kB view details)

Uploaded CPython 3.14Windows ARM64

locstat-1.3.0-cp314-cp314-win_amd64.whl (38.1 kB view details)

Uploaded CPython 3.14Windows x86-64

locstat-1.3.0-cp314-cp314-win32.whl (36.5 kB view details)

Uploaded CPython 3.14Windows x86

locstat-1.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (43.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

locstat-1.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (44.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

locstat-1.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.6 kB view details)

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

locstat-1.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.7 kB view details)

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

locstat-1.3.0-cp314-cp314-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

locstat-1.3.0-cp313-cp313-win_arm64.whl (36.0 kB view details)

Uploaded CPython 3.13Windows ARM64

locstat-1.3.0-cp313-cp313-win_amd64.whl (37.7 kB view details)

Uploaded CPython 3.13Windows x86-64

locstat-1.3.0-cp313-cp313-win32.whl (36.2 kB view details)

Uploaded CPython 3.13Windows x86

locstat-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (43.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

locstat-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (44.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

locstat-1.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.5 kB view details)

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

locstat-1.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.6 kB view details)

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

locstat-1.3.0-cp313-cp313-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

locstat-1.3.0-cp312-cp312-win_arm64.whl (36.0 kB view details)

Uploaded CPython 3.12Windows ARM64

locstat-1.3.0-cp312-cp312-win_amd64.whl (37.7 kB view details)

Uploaded CPython 3.12Windows x86-64

locstat-1.3.0-cp312-cp312-win32.whl (36.2 kB view details)

Uploaded CPython 3.12Windows x86

locstat-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (43.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

locstat-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (44.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

locstat-1.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.6 kB view details)

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

locstat-1.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.7 kB view details)

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

locstat-1.3.0-cp312-cp312-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

locstat-1.3.0-cp311-cp311-win_arm64.whl (36.0 kB view details)

Uploaded CPython 3.11Windows ARM64

locstat-1.3.0-cp311-cp311-win_amd64.whl (37.7 kB view details)

Uploaded CPython 3.11Windows x86-64

locstat-1.3.0-cp311-cp311-win32.whl (36.2 kB view details)

Uploaded CPython 3.11Windows x86

locstat-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (43.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

locstat-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (44.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

locstat-1.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.4 kB view details)

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

locstat-1.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.5 kB view details)

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

locstat-1.3.0-cp311-cp311-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: locstat-1.3.0.tar.gz
  • Upload date:
  • Size: 26.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.3.0.tar.gz
Algorithm Hash digest
SHA256 6a67ddf51fb3683618af07618d70c465163c5db60fa45e285aaa9283884f5ad3
MD5 02781e3b8902c365f5400bf39f80bcc8
BLAKE2b-256 18ae6a97871fe78130420ae99d3693ed56fc60667ee3e9f3e16ed7a77bd68282

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 18a97af397c8898a66bd488185f3445277918b91034d852b940086f480507e42
MD5 420d2c69e9d0afb78852e22a658ad63c
BLAKE2b-256 ad87fc73b575ecd8f37f3df38fbcd758d404d26ee6bc9b32948d1e16853e1365

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 59106d6259e090d24a2131bf8d2c6a5f56d1598f665e0b7cd7282864329de11e
MD5 c6de13ed71b40ca4268cdfd55d456beb
BLAKE2b-256 3fa6c2df68f0f976dd12119d26e7bd12927a7e26a783de024ff90cc14238472b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4f31afb1375ea0bf666198f54e037bb052c6681a794f5141d55ccfde79da8bff
MD5 1dc3f98a2932b19826ae4cc99d0b98d8
BLAKE2b-256 6e1b7a1626d35664e9d8ac80ac67f86a8f14a15d6210e7f1b02f3d3c58f4f056

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c2b6eab82c70538ee0af455a0ed56232000643ac1ce7442c4a6cbdf3c1150ad
MD5 afb7e83e8467f81cfa86f9b391fe6ebc
BLAKE2b-256 c20511e56bdef63447439cf17f2ea6cb81bede1332bc924a089473bc21a01180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 427807c98f018f7cd22c922682e9deb7bb114c47805f9011c097ca80b002016c
MD5 9b67cf0f1b2a904e24953298901f93b2
BLAKE2b-256 2eef12273de00654d5e97eed9ff1fce1d5e58cea3ee12580f183c695a21a3c6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a036272b4a74eaed655eafd1e36d7ee869d1e0c1a80ee94594d885c06ca66c6
MD5 3e04bcfe633f922064fe27bb5d621132
BLAKE2b-256 102b9aa01d9745c75671a43c5161b0770431a1224cc268e83f325c652ef627e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.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.3.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.3.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 84140611522e37bc640eece97a47d671bbb0911048bc4840a91236cdbf23ea07
MD5 3a45fe19a5ee0d0051fe172abbde2e3c
BLAKE2b-256 96a820c788ab98fac3a087520ff9a67994f9499c0d6684923b5615e4c099ce10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15cf764c924663d2a4af48594efa2042cbcbf0a41685eba34f1f3a88ce85b657
MD5 851703503553b7bf528947211908375c
BLAKE2b-256 ef9ae58a90efa926721c10d48e3f3e7354e44d55db88649e67e17bf77da5cf05

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 36.2 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.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 df9b76e53aed199ae06b9acd373c9dcc421eb05797afa5977db47900713f9681
MD5 39f6c60b66156916f1392438c0863669
BLAKE2b-256 d204e25c60cc6de4e5078767280dc40cfe54976aa8207d63b4847be601eca7d9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8f0ea7cc1dad59d3b18b34fa1b187fc118e4dd8dc7201b708ed6e509e14f91c5
MD5 75defc3de46e77839394fee3ee7367ca
BLAKE2b-256 eed0c7b3caf0ce181c9fe4231d13fabeb18f33eb5f6680c07ff54e8c245e3e8c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9dfe6ff3befc6180f5ea944a900e46631fc21ec7541bb0c633d4787d7465f6c0
MD5 09df45d688480069921478c59446014c
BLAKE2b-256 467db22db93ea89fcda02244b41879367092d70fb2fe184f60bed64e79a7107e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12058f46afeeb2bd90b3be6352aee96e701bbc5fa484d85637fd9ebd59b43cb8
MD5 093358d2140a13016db55a56e3923030
BLAKE2b-256 21c0d625f56da940dcfbe6b29015f81eb03fceed0e9a37b4f1efa652ff76d80c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ddc8c57cdda089797d57858dd0b4c2f680abec25ff96ca208e14986b57850fc
MD5 29ea62f0f69cd5b4b797943cb1d413aa
BLAKE2b-256 07453034e1d566d918cce42c8642f7016e53edc8efa1bd399dd300284316ce2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb1a1993dcb0a617c70fdd83a938117a3e013b9061e9184e660a4135de0f26c0
MD5 9184c756224289c152e68690c5d59d13
BLAKE2b-256 7b579d66d89f1b1d8aea6049e622d4a57e7a8e974d9d4af4af2c797ab0cfd1a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.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.3.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.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0a5e56e0e8af716af8912572bc3a946854268a268933361648cf543760f8c106
MD5 4ab301423210b1771f0cf1f32f0d1e0b
BLAKE2b-256 60b85878f6cbdbcc6e3027887da09d2ac0122340381e6dd7c0e51563a9a6552f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0bdf15802ff12161b5fff7faf2c9194a8d53341b473a598b24e781404cd09b7
MD5 7325a57d0831912dbe84627c7435faa3
BLAKE2b-256 a46cbc3d656e10cab3f21ae7743c72ed4d77ba0b1c36e7bdbe8d91f917d15287

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b15cf5a66fdf39f2a34dc35347c2c97a5e91af3185126a8a67023b6c30b56237
MD5 9a57c3d699c29898b4ac35ba21218f12
BLAKE2b-256 aaada4980b810e1345d0c2cea63a1c60c704471f8b5cbde367695cc4bd1db767

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 37.7 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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ba27020fe3911ed1a0c914b45a3b18c4d0cef27eb7978cdf84c7c502f38e7b84
MD5 e7504f587fc0d44ad8d617c28aa560e5
BLAKE2b-256 cde3f96c3e6e7cbac70086e024359ecdec7f0d65c0bcded507217fb458f78f25

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d401e5c18a62fedf42cffe804a97f5b7a39d8a05366bf2bd5322e456a7e967cd
MD5 5bca4a5e05d954e6c9c8e2a9dea8de08
BLAKE2b-256 e071fe6e4922eb6ea34ee80aa852c5ea84a922cf7f443b8cf886df1b616f5076

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5346e4f1fcc2dc4e74f891b4605173ba1ba64c1fe36d0ecd1afddb0e96f6b31
MD5 7c59f96b1718e7a0669e67dab8857577
BLAKE2b-256 478c18a5044542a06272a87d8a92e19cc5f67297160d56d9b5bb7adc69e6d50f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11fa3dbe8d2a2d35cd4e87cd4a00392d66a4bb52ca91f07358d98caa172a9598
MD5 c1acae22e9127a478c0b83474febfaff
BLAKE2b-256 d4b06ea6fbbf86bc65e32c3b8f8de0c667d9fb4e2cef277fd81664fbe9e82a17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6764ddaf910eaabdf256e3a3027ba3136a6ed7619ff79707fab1b800afc6d673
MD5 f239f60fd53e0bb6cecad886c111f057
BLAKE2b-256 a9c739b71b0203728b67659c194d6c0404ac4df72cc31d01889de9c27eb47617

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.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.3.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.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8b2806d4427634a0913bb93af6a6ec9b526f574d13b0455801e905c6594cb44d
MD5 b50f6bd807dbc941f75742162ed43138
BLAKE2b-256 4c81585fac9de466eb674abd60e4e637615b320f2dff355afcfe453c1c76bc38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3aa2f82cf7197817b674d40bde6d8e51dea17025fdd237574335851ad4623024
MD5 c38a7e776e156d4cca73128bf494b3bc
BLAKE2b-256 25f307446c7a97200d5d1e7fc2fe0066e9427cd12247b6b3626b60ca4edca60b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4a1fc7036603083c94e7d441e2c0480e666f6c1ce54fb2f8d99f688c3a0ef9a9
MD5 b5d75724ed2ea00b52a8942a4ee30c5c
BLAKE2b-256 7db2fb2dd81d733c66b30db9a815054beffbf2912dec1dae65bc60ea10c7a49f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 37.7 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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 540a77746c2344c54172641c4b62cc814b06862ff00fab85036e11761b544031
MD5 74542a77bb9158aae9b775f7f53e5376
BLAKE2b-256 c85330a98bc4dc079cd7a07fe2ea426a5dd75e4835b1855f181e6d43d4a413f2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6e357e943ce1fb05ad184eed68c91b0ded5b8348397767dfe69a764d95b49c2b
MD5 23993c413d0a9cc76052367c32b20ff2
BLAKE2b-256 2495b8029e013c6c73cb56eb2b330408414c75ce20ff8ec169e5befa97bba9d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36c295f6d0cd7556ba4f50a560499ceb9178511bcb432952237d699a8700b4fd
MD5 152d2e94e4348cedf788f913186207c6
BLAKE2b-256 c724c3e80590d4a34ea90b1a94a6214c77c893f28006c61926da51ea5187fec9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b293e93c48edec15695523d087bde95cf2121d16eb22c400d2604931d85891d4
MD5 1ba2f517c897d76d8520f96bbc0927ae
BLAKE2b-256 9eb363113854c6e2e8dc331a6edb267200cab9ea2c4752a3b534a2e3ecf456b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8fae0335187d4640c055802a0f44b0f428458722b26aa07f79a4833cae69216
MD5 cc69aae44ae805245b51aa4b29003c34
BLAKE2b-256 54cfb1a8356ab961d99f831e17047b49426b6c9267218d7db6088b90a3fe0ce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.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.3.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.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0a25c4491219440d86a77705515ac6bdd04d8a20fb73813d327ef48f8fbf34d2
MD5 d09fc913d0f803022cf85e7be357b572
BLAKE2b-256 90a4e8d74309e277f7c139077a593d4a9f8a7b2b0b2f309633ca3f043ebbcc7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8626575e055a4ca7fa275107698fc715434fea3fb87e90ad138116df76ceba17
MD5 bb78e5daaffd7c6918009ec3d4f4d998
BLAKE2b-256 e5067f5ba1d41718b848b7b2d6a1cc9d5d5f10736b2dbab2cd06b0ffdc29324a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c5d9fe0eb34f91197329249f1e149a5a0204aeacd911e4563053bcd0227d8676
MD5 8d881dcb5c464d03d66e6c9b18e54212
BLAKE2b-256 61351c2be4fd8cbdbef6581ea9b5c18b2b178d1b8b61ec1bd5c12ddc99ff3982

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 37.7 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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 924deea891bcabcdbc203d1a897858750831299f51a8552bb0fb99d5381b22e9
MD5 520e3234e395b2a489150c2436e9b9a7
BLAKE2b-256 df6021df72ecd41ebd0554a05c8f2ce94f46f97c72fcbf8c629681cadb5a87e6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9cbaccb6bca9bb2508853723221e37e68d1b90a034f493c6132eafe515714454
MD5 d148fec89f10bd531ae1237e9fbd233a
BLAKE2b-256 6a169a4029d17d4eef9cfb4fa29578fad9e53cd175ce4ff5a3b33ead7d884a6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca27f4b796d50c8d513c32d042599b4d8d23b13e00f6f46fea07bbbb8b449bb6
MD5 60fb2fa8cb538412b904d83e333932b5
BLAKE2b-256 149b8875b7224b6555edae5a46849666f28dd0f85f38e3d6056b42724e1c010b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1dd3fcfde5856ff6993a1541c1378e560062b5d1e577c763e314543929389dd
MD5 afcac54c48ed08aaee36d44e84f63369
BLAKE2b-256 525f62b20d0404fc0a07c529234bd8f7e99efb4e07df17e503080d1a330084e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5643e14c9e2e71cf86febe95c64bb1f0ae9ed1018f3a398a2adfa6d36f2fd81c
MD5 3dfcfa9e737a3d3645bb6e55d44df0dd
BLAKE2b-256 f7261389020c02b202c5d6822745ea4314727719a778a79ed1f58fb34106f408

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.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.3.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.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 25a7c1d008e3a41be851fc1bab65ac443abbc612c94842780ee8cc5e3bbe5363
MD5 d4b9dde27aacb4764ea2f9c6b1798056
BLAKE2b-256 96d3ee668597efa7a00f7fa861a192d1dbe4a49009b84f772e5b623977d382f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e83145f1653f1816231fd0c6c9726f241fceb786595d1ced07eca75c8dd6d1e
MD5 9eb6760618ea1b203a185b074294501c
BLAKE2b-256 038b74d8c8c946086e4ee7e9632859a166e6e0c0af97560e791100099abdd8c6

See more details on using hashes here.

Provenance

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