Skip to main content

Get code statistics.

Project description

locstat

Get source code line statistics

Installation

$ pip install locstat

Usage

locstat is designed to be a CLI tool, invocable as the package name itself.

$ locstat [-h] (-v VERSION | -c CONFIG | -f FILE | -d DIR) [options]

Primary Action


A primary action must be specified when invoking the tool through the command line, namely:

  • -v/--version: Display the installed version and exit

  • -h/--help: Display the help message and exit

  • -c/--config: Display and optionally edit the configuration settings and exit

  • -clm/--copy-language-metadata: Copy language metadata file to given filepath

  • -rc/--restore-config: Restore configuration settings

  • -f/--file: Filepath to parse

  • -d/--dir: Directory to parse

Note: These options are mutually exclusive

Parsing Filters


Directories:

-xd/--exclude-dir: Directory paths following this flag will be ignored.

-id/--include-dir: Parse only the directories following this flag.

Files:

-xf/--exclude-file: Filepaths following this flag will be ignored.

-if/--include-file: Only filepaths following this flag will be parsed.

-xt/--exclude-type: File extensions following this flag will be ignored.

-it/--include-type: Only file extensions following this flag will be parsed.

Finer Parsing Controls


-pm/--parsing-mode: Override default file parsing behaviour. Available options: MMAP, BUF, COMP.

  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: Restore configuration file to default its state.

Emitting Results


-o/--output: Specify output file to dump counts into. If not specified, output is dumped to stdout. If output file is in json then output is formatted differently.

Examples

Let's run locstat against a cloned repository of cpython-main

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

General:
Total : 2155349
Loc : 1722995
Comments : 213946
Blank : 218408
Time : 0.911s
Scanned : 22/02/26, at 15:40:51
Platform : Linux

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

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

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

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

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

Customizations

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

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

This overrides the default minimum characters threshold of 1

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

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

changelog v1.1.0

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

locstat 1.2.0 introduces a new customization: language metadata

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

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

Example

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

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

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

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

Note: String enums are case-insensitive.

License

locstat is licensed under the MIT license.

Compatibility Notes

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

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

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

Acknowledgements

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

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

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

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

Project details


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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

locstat-1.3.2-cp314-cp314t-win32.whl (36.6 kB view details)

Uploaded CPython 3.14tWindows x86

locstat-1.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl (43.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

locstat-1.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl (44.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

locstat-1.3.2-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.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

locstat-1.3.2-cp314-cp314-win_arm64.whl (36.3 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

locstat-1.3.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl (44.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

locstat-1.3.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

locstat-1.3.2-cp313-cp313-win_amd64.whl (37.8 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

locstat-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (43.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

locstat-1.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (44.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

locstat-1.3.2-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.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.7 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

locstat-1.3.2-cp312-cp312-win_amd64.whl (37.8 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

locstat-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (43.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

locstat-1.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (44.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

locstat-1.3.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (33.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

locstat-1.3.2-cp311-cp311-win_amd64.whl (37.8 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

locstat-1.3.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl (44.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

locstat-1.3.2-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.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (44.6 kB view details)

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

locstat-1.3.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for locstat-1.3.2.tar.gz
Algorithm Hash digest
SHA256 b590747d43792856244d31b1b92a860d84ce9fba8b02d8b2b0e458bbf819f6ec
MD5 5dcf9afaf7af3f7ea679a57374827a15
BLAKE2b-256 2f44dc6c67299264502ea2875205f396c4c6bc2a156b47843719c13f55a453ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.2-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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3d062f8fb392d6c9b28abdd76d762b1d3bcaf2951e25dc9bbd64e3b6ff91f056
MD5 5c7aaa1d30ef077f7c2a211deea3f97e
BLAKE2b-256 45dbdc17ec8615527fcb18912c8ae47116bd9c22e86c0cd3acd49dac05068da5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.2-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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d917e75ab602c3034bca32ace2953c213086edfb85df8ea17686332a42296a04
MD5 9a22e8ec52fa1fa6c6cab23226054f27
BLAKE2b-256 371d0de2be517c4d0f0533a7b5611645e003aba0760bd0bb46312d072e4f9af9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 36.6 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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7450d9684f463d1c01bace6302789dd046af9ef52edff4f50a6f45b07db9af46
MD5 95cb95510da08dc240b32bc8455d16ac
BLAKE2b-256 6e8d8ece1960f494b7384904ad8aa086df06360662335abac8ffb0fd7439964b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cebf43d51af85fa5a61299f75203570a6885fc70d4f986ab9790e74d4ef8918e
MD5 3205de61a15c618bdee030562fc85f77
BLAKE2b-256 d64e51f8c7b4c2551e0cb498950ce9c0d499e2a2057400efe817dd0232d85c8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9a7945a647273055f31626501997ecd73005f0d509850c61df40304ecd4b255
MD5 98f1186c1b07a8eedb78ddf9e9eb54cc
BLAKE2b-256 1471b2a9d8f934a73ef8ae506d1f6f5b06cd1e46b0d50ffb1b56c67a990092d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65bfdcad607ea1473935441ee71a4756fbf20c4dcbd7961090889d79fa17fc4c
MD5 451e9a2cb0ddd5befdf024cfabb9a47f
BLAKE2b-256 80ce48ec08fb1141f80ac18686e2a574e26a6a7dffa240271554514f7d7919dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.2-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.2-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.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 572b23359fc95b499d1afb94e6575f03d3436b649f3a8223db355ba3d8a27024
MD5 cd34bc991e2779d2c95df35c5d63146d
BLAKE2b-256 b38274c2bb7e194e3685582dce3d26b8e2e18fb6e6d1c4746ca7b1b0e9cc061a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a35fe5c9dff676ab7e85ab44b36d1cee3e435e88c6718a815b20167918c75f05
MD5 1908a523dde8c40ed0db129afcb7c324
BLAKE2b-256 134fc003aee93e02ee95c07c5dca5575a4abe2f46f2b58eecc3de5ef715bc806

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9941e076581d2bf12132ec812a0187e01993061689bdec88897d48b517d51b03
MD5 b77686b2a23f1ce38158d361ce1a286b
BLAKE2b-256 e98790c8bb7ebd2a641df2c18c5750be2e83f329dc0475f925e0e5bf94d8481e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.2-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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a355923c1b03c17b26026b48b0df7eabcc4761fb076ac8aa3197c46f02dd1edf
MD5 c657846261c0f7594602bd8277166844
BLAKE2b-256 9f104526f4b58c2559c08992992c57034844a86bc0060efb5f6380b4fc783c45

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.2-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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7a292b6eccc708f7de5fee62fa683e73b3615deee924fafead41da29cb56c090
MD5 0266742498c50ea7f45d7c99b67ba781
BLAKE2b-256 2c9fe518553574cdd7a5f3a4414fd385d4ce99336cc35f8ee85fe34696cb4da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 702fe2d5afb83c8766a52a9629e6530cf180c7fe2c40a883c68f2099d074428d
MD5 25248f15738322685b904329431275bc
BLAKE2b-256 b4003a72218abc582e4b16ce95a97f025074f8aa48d89d859763402322e0ccb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c597088ea5417f3b8e1a750d0102fec28e6fdec633f180275b65822c4a8b7247
MD5 fbd98dbbee6f2deed9c08448910c038e
BLAKE2b-256 855da11fc1754d21c6d3f5ef634d17bfa8d6fb2862b43d236954e2cd7912de65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b7962ea916132f2dee6d19c637713f5b6a3e88d576e6bcbddd5f6423a8b7d8b
MD5 0c11348868a4a93001ddecba872d070a
BLAKE2b-256 114b5ac26ce068c7589772f88d6db48116bf12324c631f37cab57a1c0484f8cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.2-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.2-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.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f9d68aeb7d1133f705b7d43368d8123bfd4b75b16dc627b7d9ea456cf39964f6
MD5 a375daf70e16b37a3eb3f029902d0d33
BLAKE2b-256 b656bcff0b67b3aaaa872f8af24b5b69f250e49b587e943d7847c711de7c1fba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03ea2a17f9d83730dfdf42394d217e349fcbdcdfd0a4d13c192d7c99a89aac0b
MD5 3b17c68a9c3872b3ca40a441769a2512
BLAKE2b-256 776f34d2ad30c83a43d81d557d8458710b413515439bcf06b546dab9cce5cf11

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.2-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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 588bf0cb8a6c3ab1eb9a685ee7db866315743461a51b4ed3ba5667702921ba15
MD5 851181c61d6c8d6d01c10f42369b0ba4
BLAKE2b-256 63538e0175f60ff7ee2d065e284dd967fc08ef6b35f3dc482047c7e4fd528135

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 61fd5917e4b723ac92018efb0973496388815246bd220b905f6d7d9d260538b0
MD5 0cb05847421bd96d894c0abd0d7b6a7a
BLAKE2b-256 32bdecaf10266c0c162112ac3eb539d2c09a12e98560986028d34fa672679a12

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 412823a98b7e3fb9a1d229802df9c1dceb38121f74a772cf6c7cebf9d4eb28b4
MD5 8d0158f5ccf34e0aeca4b465fa44af47
BLAKE2b-256 734b525df3f5b93f27ceb845b56c63b5d1a53fec267e2dbf586770341bfed813

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2c850ec3f6dafe4f9be6be5d92710437c83cc771aba8c8f21089b5c749537cb
MD5 b0d41b1bd329b8a18577e76f272f1c6b
BLAKE2b-256 cc8e4b54bc4bc166843a0ea7bbad48a5643795d607b4bfeca567d48e9e3ffb5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd08ddfee2fd60e3efc944ff7dc4b23635bb763ed5ea285fea7fcd129cbd571a
MD5 14c75676efa7dca14eb59ed06350c8ba
BLAKE2b-256 8415bf9881ab91a8175647d83baf10da593fb5d58b83213dd85483b52ad9e377

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 731fae35cdf6ed59306d60fe33035a3e94d192fb35688e10f2e0b08273707488
MD5 8c31a6a02534635f51eb5d1c50c171de
BLAKE2b-256 54ed3b1a238f1904c8f5927a2a184c447ffa9e9e9e2daa1b5ceb7026a3ee5997

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.2-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.2-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.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 247f1a002aafbfc8d83479efcd62d39f93514b5e40a0fcaa5c4e5b90c7d73141
MD5 94d157fae78a28d5df2fa12156be1124
BLAKE2b-256 438c1f38f259f9d60d316a56290c491a1c0c801a656f021144ff061f20c57a9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7594a3dc48a40128d9cc0b425f3ba4164f617ffe631c6d52b67b292bbcf79dc
MD5 2d9891078733240d2fff5f1cb92ba82f
BLAKE2b-256 c0360e9f632c0901d55439b6d552c766f9d51af63a10b3871c612ec91a91ba2b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.2-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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bcf5fb6c772e01ade3d7602e681e444c8aa638bc3798617f60ade245cc490f3a
MD5 bef551bdfa811b9986115cd07a6f2427
BLAKE2b-256 2ba8fb49ed4123fda73354a1a17a5d0fda54cc93e7039dbfbbfc6e1a7bc41d92

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c0df2f9a197b9d0ac93a3226c3b707792b2654b376490f99d5ab13f2c0afd05e
MD5 201539fa7ae9ac7654fe6b23ff90c501
BLAKE2b-256 0a107c4a95edd61dfdc5f87dad9374379846300e415634def71d0f823d4e90db

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b72b8aba68a4fd59fd89666056f229d6ad6c1b85f55e431b755250c5e8655578
MD5 cdd14d339d7d0329dc29ee14992827e8
BLAKE2b-256 ebd36ff0bfbee19a36fee66798ec645111185557cabc0dcdaa5b201f85d38ae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1392dd96849dcbb2ddbfe5e4844da2169054621e47994a06e5c7dea4a3f8a62d
MD5 2c7b742b5e5c449a57ad0b57a56b0730
BLAKE2b-256 bcb60fbe6d38af61ff7279a7e399ba2f1bc4b2d7d09062fa57fe703855642c99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff673198078e7c94c613bec67c4d262ad784db171fb0a51de8a15f0bdd5fb8fa
MD5 4fbdd9439a4930b948884941adce3071
BLAKE2b-256 5ecfe5e4e19c1db9c9d7ee29774f9ba3480d1514b27cf02c779e65d774b4348d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e22228f1e3d37c9483dfa295d74e4641a8fa336a8d4b845cda358b74dc11f83c
MD5 9863b2eb9ed4d1cdc391137cdf536b13
BLAKE2b-256 b47ee4548d143c780de5989f90b39bcc9dd45a8e4891fe63b4fc31f26d515cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.2-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.2-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.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fbbf637f683c733aa52d6fd41f4cc97aa819b35ceed26f0c5b7ab79579744fea
MD5 012bd610cee39838abc4f2e8e2f90ca9
BLAKE2b-256 3be7aaa2b490c169987e35a74b3439f774a502660cdd442f0870d39c11739e29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62469c4a8a343a24db2c61aadecc49277a94a4f6b71e2bd5d622c68e2b85bed0
MD5 1d33e0332ab7b9bf60453ea29be07594
BLAKE2b-256 9721711ccfc47a374f7c1a0512af708210616d4f1e8c9233c1adbbdf0c544e53

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.2-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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d41238c8317588841ae38a4de7641f993b5dbaa382b0c6ba214d87688dfa39b1
MD5 d9ffa96c739b298c4a15ebb65235b9eb
BLAKE2b-256 7449b92652c203868648f0febb04b8ea4aebc57e97ccfa78edd36c59e5c9b806

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 23d6fba098d59597345971ed8c30de995d0f4aa886f0ca842ac2b87d62123eac
MD5 a9943153832ef274d0175a8c1e5ee2b7
BLAKE2b-256 d58744af01cfb71cfb601889794b3adf065d8b8408fb47ec42808a238d20d6e9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.3.2-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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fe400aae705fd6d4fca3afdd3630ee2f180cfca3bef793d547bb5848be63f5de
MD5 6614b6bb807e76a2abe829bd0c1a0cb6
BLAKE2b-256 a24288ff852ffac62bb0f15d09f46da3763a66e4004f10a8daf5508b1df0959c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04c9a3a5d014dc9f7a22dbde46aa2e866725aeef7ba8ac720a7f920bc206bf4b
MD5 1d33165217319f670c7e30b99ecec22d
BLAKE2b-256 16e707b8c3554e9f03dec249f7bf404110ec9d4fa7337cd33176956ab4214a3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd269fd1285beb84c49628d53c053a8c768fbd944770b4d565401017f92040e0
MD5 38596c64e2062c29ef7833bfe3165e03
BLAKE2b-256 c6798c19e6f4956ea3dbfe2eb634ee86052b07adffc5facdd349ec556a6609b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca7457dd2bfead24e5790b1f3b785abbd11faadbf21cda3eddad169af1707fb7
MD5 eb680a6e70a58bd588e8976e674405b8
BLAKE2b-256 8f8fd0f66c38d96332b84dc08c21a065722f5b9b0370dd15bd744058d6745422

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.2-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.2-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.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 eee8d878fba9c7be5b9404f436caff8d8cb61d4f2544b9b0af0a17f2dc65073c
MD5 3c636969798b2f44fc379fd0b85a4213
BLAKE2b-256 c501786ec31b54877cf528c946e064713f30859142f244f5d4c4174ca12d2744

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 015ecec2c2adfbbc1cf60d87e8b3afb4ed5c15a9648b956f2f77bb8b4d34efaa
MD5 d725fe8096c19d5aea5cfe409db7d5e2
BLAKE2b-256 5d34a8775f3ca050440175151b9061909eb128a1cefe29e7adea5751433c8f5f

See more details on using hashes here.

Provenance

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