Skip to main content

Get code statistics.

Project description

locstat

Get LoC statistics, fast.

Installation

$ pip install locstat

Usage

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

$ locstat [-h] (-v VERSION | -f FILE | -d DIR | -c CONFIG | -clm COPY_LANGUAGE_METADATA | -rc RESTORE_CONFIG) [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.

Path Resolution

Assume a directory structure as follows:

├── locstat
│   ├── data_structures
│   ├── parsing
│      └── extensions
│   └── utilities
└── tests
    ├── integrity
    └── unit

Furthermore, lets assume that our CWD is ../locstat, i.e. a level above the structure.

Here, suppose we wish to exclude the nested extensions directory from our scans (-xd flag). Locstat provides 3 ways of achieving this:

  1. Absolute
$ locstat -d locstat -xd /home/foo/projects/locstat/tests
  1. Relative
$ locstat -d locstat -xd locstat/tests
  1. Implicitly Relative
$ locstat -d locstat -xd tests

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.3.tar.gz (28.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.3-cp314-cp314t-win_arm64.whl (38.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

locstat-1.3.3-cp314-cp314t-win_amd64.whl (39.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

locstat-1.3.3-cp314-cp314t-win32.whl (38.1 kB view details)

Uploaded CPython 3.14tWindows x86

locstat-1.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl (46.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

locstat-1.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl (46.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

locstat-1.3.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (47.8 kB view details)

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

locstat-1.3.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (46.9 kB view details)

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

locstat-1.3.3-cp314-cp314t-macosx_11_0_arm64.whl (36.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

locstat-1.3.3-cp314-cp314-win_arm64.whl (38.4 kB view details)

Uploaded CPython 3.14Windows ARM64

locstat-1.3.3-cp314-cp314-win_amd64.whl (39.9 kB view details)

Uploaded CPython 3.14Windows x86-64

locstat-1.3.3-cp314-cp314-win32.whl (38.1 kB view details)

Uploaded CPython 3.14Windows x86

locstat-1.3.3-cp314-cp314-musllinux_1_2_x86_64.whl (45.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

locstat-1.3.3-cp314-cp314-musllinux_1_2_aarch64.whl (46.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

locstat-1.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (47.7 kB view details)

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

locstat-1.3.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (46.8 kB view details)

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

locstat-1.3.3-cp314-cp314-macosx_11_0_arm64.whl (36.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

locstat-1.3.3-cp313-cp313-win_arm64.whl (38.2 kB view details)

Uploaded CPython 3.13Windows ARM64

locstat-1.3.3-cp313-cp313-win_amd64.whl (39.5 kB view details)

Uploaded CPython 3.13Windows x86-64

locstat-1.3.3-cp313-cp313-win32.whl (37.9 kB view details)

Uploaded CPython 3.13Windows x86

locstat-1.3.3-cp313-cp313-musllinux_1_2_x86_64.whl (45.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

locstat-1.3.3-cp313-cp313-musllinux_1_2_aarch64.whl (46.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

locstat-1.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (47.7 kB view details)

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

locstat-1.3.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (46.8 kB view details)

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

locstat-1.3.3-cp313-cp313-macosx_11_0_arm64.whl (36.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

locstat-1.3.3-cp312-cp312-win_arm64.whl (38.2 kB view details)

Uploaded CPython 3.12Windows ARM64

locstat-1.3.3-cp312-cp312-win_amd64.whl (39.5 kB view details)

Uploaded CPython 3.12Windows x86-64

locstat-1.3.3-cp312-cp312-win32.whl (37.9 kB view details)

Uploaded CPython 3.12Windows x86

locstat-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl (45.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

locstat-1.3.3-cp312-cp312-musllinux_1_2_aarch64.whl (46.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

locstat-1.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (47.7 kB view details)

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

locstat-1.3.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (46.8 kB view details)

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

locstat-1.3.3-cp312-cp312-macosx_11_0_arm64.whl (36.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

locstat-1.3.3-cp311-cp311-win_arm64.whl (38.2 kB view details)

Uploaded CPython 3.11Windows ARM64

locstat-1.3.3-cp311-cp311-win_amd64.whl (39.5 kB view details)

Uploaded CPython 3.11Windows x86-64

locstat-1.3.3-cp311-cp311-win32.whl (37.9 kB view details)

Uploaded CPython 3.11Windows x86

locstat-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl (45.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

locstat-1.3.3-cp311-cp311-musllinux_1_2_aarch64.whl (46.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

locstat-1.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (47.5 kB view details)

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

locstat-1.3.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (46.7 kB view details)

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

locstat-1.3.3-cp311-cp311-macosx_11_0_arm64.whl (36.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for locstat-1.3.3.tar.gz
Algorithm Hash digest
SHA256 b2c4e812dad61a3f81e2b28ce128b55c6fdea7e2f2e196115eec617c7d921418
MD5 5e1c7608c64020835567136e8f28537b
BLAKE2b-256 092c23ea7f193921fdc62dc97ad3231553f7963e4fe85ce3ecb67d4020c180e9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d703608eda26a225c81f8a42ccd35a340ebce78a777f962abf936e055a8276e9
MD5 d6bc0f4321c9ba85c19a5a7d9f72dabd
BLAKE2b-256 051be6a7ad29de793304cb2949f228cb2bec0e67b8a9ba999cd6a5c51c571f1a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f4417b372c6bbb9fb1178a9f38bb45015c5d1926812f23c383647167df7dac23
MD5 350cac4081bd3a50ab254a10a4ba8bde
BLAKE2b-256 5207a9ec3e2d42b28833fee90b56c97b69d4561cf80e12ca287505298b237799

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6f41af74c48ebfd8450f08a0109271a2d16c4190054a0fb4a52bb0b6a13e01c0
MD5 c2977d2650a2e9b7adfc8c4a2704bb0e
BLAKE2b-256 b49f8df1730fac3436201658703764e2b0bb64368449101df00db6097573ef31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 431da5fc59b492f7681a8beb6476dcf936e778a1065def7caa69ec1d6fe1f74b
MD5 de97c6b60d4884e117c5b7337b2511e3
BLAKE2b-256 f9ddcf9a962c0ef7393d892d4c537dee086ed925a2b92111739ef9b66542329d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a809dd0387425d4994b2c0f1dc755aa5fec9e0732146a074e82e643eaa01c44
MD5 c90a22df0f5b9f5bfd8fb98667f2bec4
BLAKE2b-256 3ba122e82a65ff0b10c43290f8695ec2a16fefa84ed7a2c21419f20c191bcf60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8de2b2ebe151df1bc64d26ba92aece18074ff66fae1cae5ce6e501222fc58670
MD5 73ccb267fac4dc80cf48b5cc2e5b9629
BLAKE2b-256 766c1f6316fe44853446c538285550e9b6553a3ac215e813c37c5750a59b446b

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.3-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.3-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.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 913eecf66a29ffae4a17f01acc9fcf50bc44facb98010df530451bd834991975
MD5 749c82ee106c400a1bf42be6a7f6285d
BLAKE2b-256 fb328e07efc36d78b16bba63e95696579796ff0de743eb54d7488e632763c1ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38c9be99b9994923e3d1064d26b0a0db2da0a9262d8b9082b59f6599f4d64fe9
MD5 533829653f5773ddeaaaa46c48eea308
BLAKE2b-256 7032b9fe3b7bfd8d597003c2b929e5f82e396fd2ca673dacb471a159a70e6927

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 885ad9a468f8da68169b19db1645dfeb6e2e7ec16be488d418d5292c98369acd
MD5 b59638dc8357b09b353e7790d93d3d5c
BLAKE2b-256 bd60f412e93c40712c3c738f85f2f61fd2cb8a77c2210c44b2f0e05346635c2c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b9c08da0d3c6477415100ded0a1fa3fbb770bd16c7b1499441354fb7b5eb912a
MD5 23df3a6e3e1dd11e06fc1a33874dd9a7
BLAKE2b-256 b0a583a4eb243c42cd0c633b42598969266333cf928d116e352d9cc38b6e367f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ca9c48b244406ed5036754bec19a620c99ce3cfc8f4fb27f696f501f981b6067
MD5 bfc07cf54f567fbd326e21106c5954f3
BLAKE2b-256 e79cd1264c97152c2ba38ae8e156bde350009ed119c40c39c39f81ec5c65c18d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23df5db8060eec673c6fb7e1cc7ea322cbd0899b7f62112e732502eee3350bb4
MD5 ff3f5347b389837cb9186584084f2400
BLAKE2b-256 834d8e0ef97c104e74ce3dffe637a765d92f9aa426bc98c204b63891ec4513bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8aca499a35f916787e8f67a5e612c17dad2e1a46f26931ca6132025ccbf5360e
MD5 4db703e6cdb47ab979f01544a38a143e
BLAKE2b-256 70278e7b857060527e608cbc8cfb50c11c55ece863d6018315d3a135de2859c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52c30835a5a6e580e25630446a910f4a96fce1c567503e4a76ae36ee894d818d
MD5 88735e4e542b273d447fe578ba8a5cc5
BLAKE2b-256 f7aa80d6ddf86ad6a37362091f012720ba6434f614dc1e4a611cb15604bb5683

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.3-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.3-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.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7cdf0bbd626a03db5df514a2085a4b10f5409abceee615c90f8f6d0d775e406c
MD5 b39a6dae6fc82fc66064cc90a330b5e5
BLAKE2b-256 8d0ff46ed855986f37a181b1ed2ce0db07e120f40442f11d81c949c84f167f41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36e1bfa86650ba3e88a93e31a0a09e12bff2602c9e0c9f0c13e6b669dcc402eb
MD5 abcfb55123aeb4e016f2134ae12e4dc4
BLAKE2b-256 e63780ac3b450a9aa2856aff47111df408daa8d316e05f4e0e1000f9f7d3402f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 20c750b43ca44ef945178a29276978ee840013a032a1da94a97b07c9da2d754a
MD5 8f960388fe7d887977e312959235e646
BLAKE2b-256 3fc64189157afff89deaf7a159b2bc50a1dda4ca5afd00b05c568d1c08c611e1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c92ff3ce2967dc9c25a68b94f0f4b19d1cfe60bb0a76bce056fad2f593d69555
MD5 11853d537076f4b7da04e5f6e47b11cb
BLAKE2b-256 faa750e09a9a21e03dc044fab0dee1e63e4137a852c9a0ad33fcadfd309925b4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2412b95103ec6a75d077977caaaa2a17ebe883a729c45feccadeff3342c21e94
MD5 63449ed548b74d44369c539a6adab1e3
BLAKE2b-256 0169b235378095a03cbfa629f17588d423345e287fdd17854a5d8006369fd86a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fecb6d293815c8037f02ec35e9940d99433dc93f60f686b7405dad81c6a5d0a
MD5 06513ce299a74c86fbf431144f0049b4
BLAKE2b-256 4409134479c50ff3c01f55864b7a48f9bc693b4fb8330f47f2a5dcd702902c4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06b436d0eabad7bb4448885ddbc5068acaae669f98cb872ed600a6a0418a8769
MD5 8b55e85575597c6b935c77293015b876
BLAKE2b-256 97fda9d5dd6af1f5997a6be414521605e1609945490b08c37d482c4974cc704d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd857393376992106315dff833867519dc67fa869345dbb9ddbffb67f1b33d50
MD5 679d81097320d3929c77ea3501282426
BLAKE2b-256 02845e6ff0f281a16fb40c1535fb4a00d358805d9a1d336df771130707f9592a

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.3-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.3-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.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 89de5f5823da93e1a115901a59c06dcac49ecb6fb14deb19b2f226facbc89ba8
MD5 1d425fe7066d193d1bb06740840a74a9
BLAKE2b-256 83e463adb15843893bb99c06ae4a55b5b50c6b2580e772932d280aae466905ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1b56f686c3f7f86e4048d44a8d447d2bb6dc376d8b8f280668ccf8996f722d7
MD5 8d575e0a2e84e023d73bb354dd17bb22
BLAKE2b-256 12ba7607aaf54974693d519bf4c8dad1eb4d2ef2706ea1b5f5c8a5a993b4298e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0857dd9d58a8621e7fcaa907abbe4726bf5032b507f64ac8521349c5ec0000e4
MD5 f097269ae31270b23c85821a580deb19
BLAKE2b-256 1bdc42e0c291233373c7d3000b9319a699dee3d467a66789beb89cda4d9d5d0c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d7d300c2af33ed7a06bb65b05d274cefce8f7150db5a0196a6bfba9d21979b55
MD5 ffa77d0b4eb15d5d7a2e7248336ab28a
BLAKE2b-256 f98ebc3c89d05971ed75508900fcf2e25c4ccdf83b56ae508925b25d264f50f1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bf7a21c6a07265d7af14409320822f4c076428f6027e0cb79ff65387d781215d
MD5 4e6199132e75db56af0cc701192ad455
BLAKE2b-256 2b72f96b76a985bce4ef9f05dde1641cfecfef5395bf540973e4181d509fd45f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15583e71c510619d43150c25d669ef004ba5830dcb567053f887d026d8a6bc14
MD5 cc186036446117d8dc4c635dace8fe7d
BLAKE2b-256 765f2d8aae4fded7f388be69ead1b707ce24ce8e7c2761c7bf9a251b4d4233ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e5dc436233d16c19211159469f9bcb672cdfcb4a89a7eb77158ad51d5b7a89e
MD5 e43c2b89ed84bc6cc7f3a7c54f618061
BLAKE2b-256 7b1afaaf27938736fa24d375107c642d4443d7d4b5392db524a735e6397303d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18d0ec20f3acf89237816d497dbba63ae163afc0928e201b7e1bbb110ffdbfb5
MD5 fcc33f67cefb4379d9c33c9b18632f73
BLAKE2b-256 61c08c6713a8825c9dc043729600eba789a9815a96dd509531d16c39e672255a

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.3-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.3-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.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fddda2b8edd1f2a8a7c99e462907ac9ad402bf498c82b2115c29a1414a26de05
MD5 bc22100e96e054a2990c5b2fc1014d3e
BLAKE2b-256 eaf65247c8817a5982b23f535d076be8246767c27812d067d3e3ce59637564c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f014bb28c33df1c7a9eff4f01fe24ffbc2f979e33225bde0fd46b4cbbd07822e
MD5 413dea2546aafdd04da398a933af736e
BLAKE2b-256 aab222e5bde31309c14e004b494b711bcf28e163c03f20cd369317316e330177

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 12133f18d0e0d72af921a4faa0168623a91b7559f6ad8c5b207df3a6493fdb8c
MD5 a06ca3cf8b6946c7d39e968e8fe69e44
BLAKE2b-256 7e4b273924f897f9c47388defb92698eea134ea070e6970e0f6673afb7281a0f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 56ef6f19f542c7804a3e9035969067caaccaf1e538af00345128bff7d273a356
MD5 c6c5e53b7d71b227640816083b2e4aca
BLAKE2b-256 9b6e34fb923f90aa6ba1129dc4b5bcbf892146318a1b1f2d1c73e8b9b3d86823

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for locstat-1.3.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d0e41d65fadbccd13ecd43dc31485bb29dca0c86e983baa537ea53e2b1ad2591
MD5 74f507a25c75ff56f93c611d1e2ce9ce
BLAKE2b-256 fd0306208350be8345390ead8051f7a331ca0177338cef3451178e642bd84ca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31f44db6e0d2bb29734115a80cee0aeba851cabda13d00427ff362ea4b0fef1b
MD5 f4721cf8e11655563d9b931e0f656675
BLAKE2b-256 f1f9a90095a51c87c045898585e308be537b6d56dc72b92a827551b9b8b2089c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5e205693b7aa0bf96699818b036fea113bb5d815f425fa8c09002e3d822839b
MD5 efba09f07c30c3ec6ae26eedda598f05
BLAKE2b-256 74cd72ed1a71077d29d22fbad511dcf58266c5397e50028351f5417b8cb4c711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 311bed38dca7d720860b2553811ce4b5961be543d5245c1795e3d8042a528368
MD5 1bc8352bd96fea8119bd8de7c1529883
BLAKE2b-256 f0b52345e0e4f297faa9efb9c14b31e77de05a7ecf82a40bcffc1de965a6ebdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for locstat-1.3.3-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.3-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.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ccbf0e1f071ae6587448c7f3a31ff2b99e6c2654a7ff1c9e76f5589aea933b37
MD5 7a3e39978b7dbf1fffe3239bf07fcf10
BLAKE2b-256 03f01b48f76c60a0bc33c66856a5f3b3bb3295311d89f1ac3f2100bfccd32946

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for locstat-1.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d7859fa7e91f91e404930af02e1fb339ce052d143150a5121b87b3af92a4e00
MD5 222850ece2e75b7fc4cccbfc87f613dc
BLAKE2b-256 95fb00862d17f3046922e8ce3e26cbf48c2927f8ec907f5b06fb7cdfbdacf224

See more details on using hashes here.

Provenance

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