Skip to main content

CLI tool to count lines of code

Reason this release was yanked:

Bug in newly released feature

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.

Emitting Results


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

Examples

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

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

GENERAL:
total : 2155349
loc : 1722995
time : 0.913s
scanned_at : 19/02/26, at 16:05:11
platform : Linux

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

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

GENERAL:
total : 2155349
loc : 1722995
time : 0.204s
scanned_at : 19/02/26, at 16:06:15
platform : Linux

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

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

Customizations

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

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

This overrides the default minimum characters threshold of 1

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

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

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

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

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

Note: String enums are case-insensitive.

License

locstat is licensed under the MIT license.

Compatibility Notes

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

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

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

Acknowledgements

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

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

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

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

Project details


Download files

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

Source Distribution

locstat-1.2.0.tar.gz (24.8 kB view details)

Uploaded Source

Built Distributions

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

locstat-1.2.0-cp314-cp314t-win_arm64.whl (34.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

locstat-1.2.0-cp314-cp314t-win_amd64.whl (36.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

locstat-1.2.0-cp314-cp314t-win32.whl (34.7 kB view details)

Uploaded CPython 3.14tWindows x86

locstat-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (41.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

locstat-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (42.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

locstat-1.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.7 kB view details)

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

locstat-1.2.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.8 kB view details)

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

locstat-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl (32.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

locstat-1.2.0-cp314-cp314-win_arm64.whl (34.3 kB view details)

Uploaded CPython 3.14Windows ARM64

locstat-1.2.0-cp314-cp314-win_amd64.whl (36.1 kB view details)

Uploaded CPython 3.14Windows x86-64

locstat-1.2.0-cp314-cp314-win32.whl (34.7 kB view details)

Uploaded CPython 3.14Windows x86

locstat-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (41.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

locstat-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (42.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

locstat-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.7 kB view details)

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

locstat-1.2.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.8 kB view details)

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

locstat-1.2.0-cp314-cp314-macosx_11_0_arm64.whl (32.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

locstat-1.2.0-cp313-cp313-win_arm64.whl (34.1 kB view details)

Uploaded CPython 3.13Windows ARM64

locstat-1.2.0-cp313-cp313-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.13Windows x86-64

locstat-1.2.0-cp313-cp313-win32.whl (34.4 kB view details)

Uploaded CPython 3.13Windows x86

locstat-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (41.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

locstat-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (42.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

locstat-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.6 kB view details)

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

locstat-1.2.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.7 kB view details)

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

locstat-1.2.0-cp313-cp313-macosx_11_0_arm64.whl (32.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

locstat-1.2.0-cp312-cp312-win_arm64.whl (34.1 kB view details)

Uploaded CPython 3.12Windows ARM64

locstat-1.2.0-cp312-cp312-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.12Windows x86-64

locstat-1.2.0-cp312-cp312-win32.whl (34.4 kB view details)

Uploaded CPython 3.12Windows x86

locstat-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (41.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

locstat-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (42.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

locstat-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.7 kB view details)

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

locstat-1.2.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.8 kB view details)

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

locstat-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (32.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

locstat-1.2.0-cp311-cp311-win_arm64.whl (34.1 kB view details)

Uploaded CPython 3.11Windows ARM64

locstat-1.2.0-cp311-cp311-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.11Windows x86-64

locstat-1.2.0-cp311-cp311-win32.whl (34.4 kB view details)

Uploaded CPython 3.11Windows x86

locstat-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (41.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

locstat-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (42.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

locstat-1.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.5 kB view details)

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

locstat-1.2.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (42.6 kB view details)

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

locstat-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (32.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for locstat-1.2.0.tar.gz
Algorithm Hash digest
SHA256 4ca3812b91ec41cc187fb7c8fc6ca3cb5c0db3cd906434d9d7e4d7af0943462e
MD5 a1e0f3e6e7534a6dbb2fd0384e20b145
BLAKE2b-256 554669f4e2bfc10c62372864f06ef58bf5e714749aa205a337e742db446cc624

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 34.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.2.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 58e7a5328390c1d2ddb78ad4b0852b6c5bface5fcf7a7b3c15e035a762bb8f18
MD5 fca8690ac3d885b424cb2d8776c2323d
BLAKE2b-256 b2635d40f0c373868354016577afaac4073f2affe43160f2e177fa3b259247af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 36.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.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 99085a1bdb50eb629a89676bd95d853b6d7303b74e3f1bba008a51b05c13849f
MD5 5fe5120a33d98e98b0f0da85151f8dfd
BLAKE2b-256 4ec3cc16bfd8b4957008d9603e48788061bedc5e39391f2f642dd402a067df67

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 fb67d9521833df5f2359a1dcbabd71ddf5075bd9e2c7250ccc9fbe2e9f52db43
MD5 df0b986a4b8ff4b556456b2d6a27a9d4
BLAKE2b-256 d1314c4919c0546ffdef33f56b8c38756ccda673e15992972c2529df2d09714f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00e9439ff8be605d1fa82ca302932b2d2d6abfe88bdb820fc1f0099ea37f8f01
MD5 cceefde3a241ecf17a4d5666796d97ed
BLAKE2b-256 225d1c6006baf49d2cd223b0b2dc314ebb497d09d937f3f1e1ae88f1eed1850f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21be1ad22436e97cc34048ca6e94b677e5745ff826e2e8dff304185cbe2f873f
MD5 869e9a05ae766b0b2faf3832cedce658
BLAKE2b-256 adfef6b0be660e434a7240b96e99122da3b1deed2256a8faa00dcba5e3610dc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de71bb26c044f7f042c4e81a0de915d8d5c0c9969c5a51e3d2d84ad3dd8a3bfc
MD5 3988d6dc60cbf8de742e9d3985a74d2b
BLAKE2b-256 1e09a218e71ced2e8ade802fd7b58c25f019b71351c409716ee1c2985ef95e2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.2.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.2.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.2.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0539a9a51e3cb5c82a9a9f5d770aa2e4de686a75d9571eebdc8f3a907327068d
MD5 6ecbd5cbe95cee4d9290925e2c4c7521
BLAKE2b-256 70f897397cc587adbed2e6e9399a3dd0f8b1d1bdb66f2e4e9b54af2ddbb81f16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 161c8f11579f51bc1d336d67eb6fd977eb31bb0aaa4059b3cbb526c71f8b0778
MD5 921fd2b6c9edc47817d9f0f5f53389e6
BLAKE2b-256 faed69cb420cac2125a2af58b332587359060c5262163f756d7b660db03dbfb9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 34.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.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 62f1ac7ed8d15e2ebdcd31ef4d59936002c2ec7f912d1b037a421d377ee1175d
MD5 c42591d11fdc5c4d931b83d9452d56d5
BLAKE2b-256 039512cd3a4b09e9ed569cf28913a1044714e55aad35a52f51157f8b844808a2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 36.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.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a095063b9f894eb2e72da1d55772d3cf9d23103ec73ba53183829bf491751cf6
MD5 be2cfff47d46944b7aefded8cc090716
BLAKE2b-256 0969fdc40d3b18ed546ae7db6fdcd2b8f85b5b084d7c8779a70261302579879b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d74f1dfa1f44861a2f99228b3bca5dc8021e89633af3a3523ddebf5c9e6b7b43
MD5 01930377f75720d7d9909950a352d04b
BLAKE2b-256 5172261019652f0b4a3be988a6aa02a29f9433d1beb3ac39b635f8d7b7bd7f0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b2dac2a08a56c8464fae46e01886eb669983e7061ec3c054c2b769610b1c3b4
MD5 1fea8429ed0cad285a29c6d270e25f8d
BLAKE2b-256 3c4fbc4d70e47a68136a6e6b3a4167479f9a52b236d2e84940cc6be14697633d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6af3207fa6312014ed4796fc2c9d243e9817f51152015216f789f31431e944f5
MD5 8a5e775dc1c14509de047d17c824f337
BLAKE2b-256 5235941cdb343706356c3dc16060904a3e6364c75cde7fff21b7364ffabbf28f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0630ad78093a734b78163fb47f00dc5d958c134869540d20f1284a5af94eb1d
MD5 cad6a239e70e2fc10d1f78c947d7d912
BLAKE2b-256 aeffbcde5ee382bd1cfc43e489da3f4bfffacb505c71802d82a84cab12eb5067

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.2.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.2.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.2.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 48e403172a4cc13f6d16c5e08c9cbf7d69db6cb173bb414e78e03eb2b794bd4d
MD5 295bb1f6b24f8cc8ffc02d1f8d1dd74f
BLAKE2b-256 98d4b266fa1c477d2ef4c80152a452fdee7d2389dbac908686193e5f21529d05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bf30782aa652a8ffe57890f14a956c9bd7ef69c65f29f4e82b025af6887d92d
MD5 d04ee9cf51816f3a49f8eb40a0182327
BLAKE2b-256 36e03d5cd0e1be85592de192db5c4f706015c0e6acae7f7afbafcd04e8b2490b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 20e42c448aba0e0b803740fb630a5c228ddce086712a0cb4c7845f81c0b34ed2
MD5 78215baac89f52f2baba5549c30aa108
BLAKE2b-256 0fe7954efee116df7f2bafeccfab94f660d3a0a2e9eb1fe2cdd2fb8101fd779f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 35.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.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2669fe3bdf44a73a5255677f40f2313fdbaae72204215ad6f7a8360e17574a59
MD5 e367456c40295f1aa1dcf97ed2afb058
BLAKE2b-256 0a5b86a372a04642773b49e36a998aa98a98d7719b98f2d6446350b76fe9512b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1f2a45e1161d55886df7d27cb5e14c1786909d0b33d54fcfd2920b51c7e18d21
MD5 df70232dfc182bbcb99bee8b068d83fb
BLAKE2b-256 4d121ea1c3d10d797477584eaf4898f0be5e5e810ae774b9b5a2b5f0116eff9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ff7b095378ba20725c96dacc8dbce8ae0c657150405629c9308e37105b344f5
MD5 6f43f004c6da811f4384addbaabe8717
BLAKE2b-256 b59510ae0d46ccce05785a3811757b9c4a93b41604b6869a0f56f80c213be7d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8c9960fd63667581bf62caaa72b2401dcc7f7d1a3f939c3f222cf60508b8f09
MD5 62dc014c37fd6b928c7851cc713b579c
BLAKE2b-256 6925ae9e17f6de2e17a44c8ee8bc7569eebb940c44bb0f659e811876374e78b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3cd154b836dd0a5292d29c476b23a8c0d958c9ec50d0387ab394351a4703f6f0
MD5 29d93684391e05cd54a72ff9cb9e6e82
BLAKE2b-256 419bf371f14760abd8ecac31006ae1b08c56a472f7a4393a921758ca43f9bf3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.2.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.2.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.2.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 edcb36f36585e78665904792e8d517ddacd75a6e273fc9dd48fbe125c0c46d2c
MD5 1f19eb5e5984ed0d5f9102b3f9b94e54
BLAKE2b-256 4c0f169926e18180296740c57186b945f45309725d1977c7ff4419d07a0f151d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95105cf10d93b9cc6e3016cc3aa923b37cdade2384fd446e7cc9eeb8564f73a8
MD5 975123b8db093ad65b347858f02a52c2
BLAKE2b-256 1f128dd35d2ddce0fc61c17de88391a9fdd3a192e320bf62f16c0a0691578a59

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7564b86b59d23860269f2a69e2fbcf1562ac761a4da3888dd960b2d10be9c30d
MD5 ead46a9bac127b90a062c0c5d4e41ecb
BLAKE2b-256 c839d9c67e79d1f544ad8ac14f3a98951d93018e5894e9d9e61e21df032f7f17

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 35.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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 16eef678beeb3ccbfe3a029873c4eaf8cc013b4a18e5aef0a2b20d76ed912173
MD5 a99b3e96258870e6bf5638d7c741440c
BLAKE2b-256 56f6c32f75d9f5484d7d464579ec0cb62bc1dd4a2467618bb136be5c26535879

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4a266af75c4757223f10c7c0d989e0ad9e110ca692178763619a085705fe8620
MD5 b99b7cd935f38b8c9b497ddb5e9c1f95
BLAKE2b-256 b4262422cf2a56cfbca9e729fcec97a9110b22d30044a8b77b51b30dba7bdd81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffda43c9d0812226443e59c5ac3aa73d9ddb68413314c69644879227e6cb2f37
MD5 257ca544f3ffd30a232b242a81141074
BLAKE2b-256 afdf4643436504a0cfff3d299ce075a61c2b636b04ea14df8c75c7342144d86b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 600ce60e846a31ce7dd9f1221ac2ffa4e6301d1af427af37daa94eed012ff48b
MD5 14c2a15e491859f91db9b10b88e541cb
BLAKE2b-256 ae759cf26836c3ed441b34a30ffbf0b534dab67b47c9f979853c938588f1b7d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ba5eb8800d6b2e3bf9e2baa17d6862f166d0e27fe066dbb5a453b7d39d1ab6e
MD5 5b11fdd79cfc422a0ce0de17b7f6c8e9
BLAKE2b-256 6a024ed3064a8bc8a3904d6ace6091ae914bcace78a90044a5ef44fed0e1e3e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.2.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.2.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.2.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 902828db1758111400b3d16b246b3329de342e1f3c502b0cb4b00889b44f123d
MD5 e1b58df831f82caf7e88740bfde9b8fb
BLAKE2b-256 e99cc42e9f55455242d1227e04565828bb8baffdb99c72c8cf451732f0f3b9d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be6a57a739c6ab1bc49731289726193941007384f275473507d4a65737b38fae
MD5 71dcd8b2e54ab6e0aed33c8a57f17db4
BLAKE2b-256 3bc0d3f311b70c59d8089f998577e8c7fa5bff504b3f31c6fdeeddfd5a4e2793

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 96eb3e6a930882f54ad116504277448c1a041e41add99d58dca88b202e1e176f
MD5 31c875f56154e280484f0d879d39c127
BLAKE2b-256 730ac07971fbcb7181693d6bc288fa3256bbe196834162ae0c36fa4d47868a06

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: locstat-1.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 35.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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bd2eb0ad83614aca4ba87b17a910e514814d7c335ac0036c39687db6c1a09bea
MD5 f0f9a2d4b9647a172f84031810c61124
BLAKE2b-256 2c83bc0875af7a7839709406243fb0be7ffd59b1a6c010870ad6890f06a21ebe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 11576341318cbf5a23e0dbd0d861c44ba9df1fb1ac0c822b4f5f930478530aaa
MD5 422a6af7a266c6aa0541e04b9852455b
BLAKE2b-256 056092ad7324c17ede312a97abf13ac4b18595bff2196cfe9a82d804dcd52fb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 099e30e90472da27f576c948353e22858ce4936139501f98d4c23f7549f577c9
MD5 21b7e487507346122064811f0379a942
BLAKE2b-256 2da097c0acef2cc870c2889da7a074c0737b2c8b562741b5ae76b83146dacc2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3b69d1ab9da6161cb2f282e5ca441bd76f964d63109de7bbe98e5c1a23116a7
MD5 34b90f87294a538f31633a1f629cc909
BLAKE2b-256 ae395ce26e59c29c9608d981e325bfd7baeb7dc4c5ec31eaf25000ade5b9a143

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0b3ec358d5c1bcf21af3e8e4d1a0cd33d9430772498b4aa7e59374d11b7264a
MD5 ea4107f54a5f9948dc6facffdae3e717
BLAKE2b-256 c774609cfed96fb9ef782dc0dad61e060938b765528ff9007fa02a30696fcaec

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.2.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.2.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.2.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5ffdbc662d7053f230f35fdbffb302414bc760c001b48ffd7ed1c6e5df81bc64
MD5 3683e9e9676d1810ef2f5c02fb1f3b2c
BLAKE2b-256 7888db56fb5af910ce927c067c98ad7aa98ec1e64dec55e7220f97b5b6ccc98e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 818700740a42a458dae0796bbdf17207fd68ac0aebaf79e525352bad8466fd00
MD5 b5249c1a7265bebbe8a150870c68d1f2
BLAKE2b-256 63fdea6d3ee6eda2d8314642a371ff9a3729996da350cf94f4023df3fc7d0de5

See more details on using hashes here.

Provenance

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