Skip to main content

Resilient Rust-powered port of the SimpleLocalize CLI download command, with a Python library and Typer CLI.

Project description

simplelocalize-download

A resilient, Rust-powered port of the SimpleLocalize CLI download command, shipped as a Python package with a Typer CLI.

Scope by design: the download command, JSON only (single-language-json). The core is written in Rust (tokio + reqwest) for concurrent, retrying, atomic downloads and exposed to Python via PyO3 / maturin. No JVM required.

Why

The Java CLI downloads files sequentially with no retries — a single transient hiccup aborts the run. This port moves resilience into the tool: bounded concurrency, exponential backoff with jitter, and atomic writes, so a flaky API doesn't fail your pipeline. It also drops the JVM: a uvx simplelocalize-download one-liner replaces downloading a JAR, verifying its checksum, and running java -jar.

Install

uvx simplelocalize-download --help      # run without installing
pipx install simplelocalize-download    # or install as a tool
pip install simplelocalize-download     # or into an environment

CLI usage

simplelocalize-download download \
  --api-key "$SIMPLELOCALIZE_API_KEY" \
  --download-path './json/{lang}/{ns}.json' \
  --download-options WRITE_NESTED \
  --download-sort LEXICOGRAPHICAL

The API key is read from --api-key or the SIMPLELOCALIZE_API_KEY environment variable.

Options

Option Alias (Java CLI) Notes
--api-key --apiKey Or SIMPLELOCALIZE_API_KEY. Required.
--download-path --downloadPath Required. Template with {lang}, {ns}, {customer}, {translationKey}, {remotePath}.
--download-format --downloadFormat Default single-language-json; anything else is rejected.
--download-options --downloadOptions Comma-separated, e.g. WRITE_NESTED.
--download-sort --downloadSort e.g. LEXICOGRAPHICAL.
--language-key --downloadLanguageKey Comma-separated language filter.
--namespace --downloadNamespace Namespace filter.
--tags --downloadTags Comma-separated tag filter.
--customer-id --downloadCustomerId Customer ID filter.
--base-url --baseUrl Default https://api.simplelocalize.io.
--concurrency Max concurrent file downloads (default 8).
--timeout Per-request timeout in seconds.
-v / -q Verbose (debug) / quiet (warnings only) logging.
--no-progress Disable the progress bar.

The Java CLI's camelCase flag spellings are accepted as aliases, so existing invocations port by swapping only the binary name.

Exit codes

Code Meaning
0 Success.
2 Usage / validation error (missing API key, unsupported format).
3 Authentication failed (HTTP 401/403).
4 API or network error (pre-flight).
5 Some files failed to download (partial failure).

Library usage

import simplelocalize_download as sld

def on_event(event: dict) -> None:
    if event["type"] == "file_done":
        print("downloaded", event["path"])

try:
    report = sld.download(
        api_key="...",
        download_path="./json/{lang}/{ns}.json",
        download_options=["WRITE_NESTED"],
        download_sort="LEXICOGRAPHICAL",
        concurrency=8,
        on_event=on_event,
    )
    print(f"{len(report.downloaded)} files")
except sld.AuthError as err:
    print("bad credentials", err.status)
except sld.DownloadFailedError as err:
    for failed in err.report.failed:
        print("failed:", failed.url, failed.error)

Exceptions: SimpleLocalizeError (base) → AuthError (has .status), ApiError (has .status), NetworkError, and DownloadFailedError (has .report).

Resilience

  • Concurrency: files download in parallel with a bounded limit (--concurrency, default 8).
  • Retries: connect errors, timeouts, HTTP 429 and 5xx are retried with exponential backoff and full jitter, honoring Retry-After. Other 4xx fail fast.
  • Atomic writes: each file streams to a temp file in the destination directory and is renamed into place, so a crash never leaves a half-written translation file.
  • Partial-failure reporting: a failed file doesn't abort the batch; every file is attempted and failures are collected. The CLI exits non-zero (code 5) so CI still catches problems.

What's not supported

This port intentionally covers only the download command for JSON. Not supported:

  • Other commands: upload, publish, auto-translate, pull, purge, extract, init.
  • Non-JSON formats (YAML, Android, iOS, Java properties, …) — every format other than single-language-json.
  • simplelocalize.yml config files (pass everything via flags / environment).

For those, use the upstream SimpleLocalize CLI.

Development

uv sync
uv run maturin develop
uv run pytest

See CONTRIBUTING.md.

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

simplelocalize_download-0.1.0.tar.gz (71.2 kB view details)

Uploaded Source

Built Distributions

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

simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

simplelocalize_download-0.1.0-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.12+ i686

simplelocalize_download-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

simplelocalize_download-0.1.0-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.12+ i686

simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.12+ i686

simplelocalize_download-0.1.0-cp314-cp314-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows ARM64

simplelocalize_download-0.1.0-cp314-cp314-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86-64

simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

simplelocalize_download-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

simplelocalize_download-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

simplelocalize_download-0.1.0-cp313-cp313-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows ARM64

simplelocalize_download-0.1.0-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

simplelocalize_download-0.1.0-cp313-cp313-win32.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86

simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

simplelocalize_download-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

simplelocalize_download-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

simplelocalize_download-0.1.0-cp312-cp312-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows ARM64

simplelocalize_download-0.1.0-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

simplelocalize_download-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

simplelocalize_download-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

simplelocalize_download-0.1.0-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

simplelocalize_download-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

simplelocalize_download-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

simplelocalize_download-0.1.0-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

File details

Details for the file simplelocalize_download-0.1.0.tar.gz.

File metadata

  • Download URL: simplelocalize_download-0.1.0.tar.gz
  • Upload date:
  • Size: 71.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0.tar.gz
Algorithm Hash digest
SHA256 dd22b71b1b6fcf161e3202c543f9afc3cc1346155f7503edff7a8c64c977913b
MD5 01876fc321433bbfea30e725ebda8f4d
BLAKE2b-256 c53cfbccfa1a5c6e7a7006db8c629b3945122bffd3a51bae13a55920af320a73

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9858420fff266d2d57f5ca73fb9aecf821d07f252d43bd3a76cdf411cc7b39a1
MD5 869bae6ac45b7bf5b9c6195195249376
BLAKE2b-256 14592c8c16194db5c7ba0d61e1a3817be982071f620daf6a270f153c20bde5d3

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4206acfd4674c921cf902e1cad65ea675ad90f371daf75de7e5bd02f9e59e96f
MD5 04a4b9c3643497aba6e21119d1ef6aea
BLAKE2b-256 cb1c55a4e4e4111a365c5944cf4716632d60c1f29e61ae6edd36a7a52c7177ce

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ad8e2027ea13bd4387709cbf5f9ce342f62887f16f2861146e2c0d219d64e20
MD5 8c4b2adb27437daeef4ea7dbb7b5325a
BLAKE2b-256 c5b18c00782d528538c72557d5c036cbbab242724304284980452b1a56396798

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 425220ecad4a6fa844ec66f025b8b297c75e88c8a7c78b439b4e458a73d270b4
MD5 535e82512c09282c00d91c37503639e6
BLAKE2b-256 bf5663f6d6085e64a6b595a3d952a529c6a331af911739c2df4f633a698af1e2

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdd0237b6d2402ec64877408686c2b485306327e021d5ea72248e51bc3e9ef43
MD5 62143d301ef3eba1bd29e9962dd0a478
BLAKE2b-256 8d22dd7aad1ca2e4826353f6be817c02f8e27e5d340f2aea345b46ec4c4041c4

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b3f682aa63b662b8b5001161eb2e36f619e80ba567ce916430e7cf240200b6d
MD5 d9b9eaeb12c8d3f6ba2011a9635815c6
BLAKE2b-256 850d7bac7be7e2b98db9c83413473932f4da522e481dd74dfd4c5a89748c2cb8

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c109cffbc7173ee41909cc2a8ae82d9d0a11761b9e502a4b8368e2cdc0b2ac34
MD5 f28e4ba629b91e86618a17b3fa86a31a
BLAKE2b-256 ebe6e334deec5c8c5bb7d9fe3e670cd8c14af8dfb52d34243651278ffd8138fe

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77191236bd5804d55b33b2ed3e3161e62ec5d3d2e21d6e331a257da87f0f08fa
MD5 dc77bae3e7d0b4452265d6489bca93c8
BLAKE2b-256 a697cb02daed66f0b3837b689ce523b470ed7a5cf4088a432d65ed01ef3c33da

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 290c988a0aee3c559c0f1d683b553b0d2c691648d48a209e4425c45a2092e5f1
MD5 90d6c3df59985bf1df3b67aaba41097c
BLAKE2b-256 75dd01d64f9cf0e11b4596e4f6b3d63aa721560db499c42c7907d92e8324d977

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: PyPy, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8f1b557feddbd4c43cbaacb6c1632d81aab442ada026de555d41a3b8963bb21d
MD5 3b26d317e824096b37d677e2ae823508
BLAKE2b-256 8cbd30b7373d5a637b904f8ee3a4025129c3eede9dd4c69d50f116e710dd7621

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49ff53d035d73bd98432fc023ca61adc8f68d2a56744d8f5a32abe5ad929d106
MD5 5e843767b095614e18d862d896b85490
BLAKE2b-256 caa542d8374b06a4627b501f345b984d4dac9138ade9215c8ba5cb1dec764a01

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a48cebf644de5b9632d0664c5140b0a18c24ee6ded1fb5da63fd4b5a4367453
MD5 58bde9eedf58c3b41ff3aff1b0bca07b
BLAKE2b-256 d986d586ad73f5d614c40623a191e452cec04e007d9d31cd5528e6548545d5e1

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22db11720ea7b2e88e535d673bed571a6365c32a0e105fea75f067563d33a31a
MD5 6e3f06426c3f80302d6f84d5ec8054c4
BLAKE2b-256 b6c2248649e51386b49c38e773887fa8a1fea509356804752e617a26068a3d9b

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.15, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8beccfaf5aa1f9f1a60ab60607fec826bfab4fe6820e1d2d7b441c7d787a5b4d
MD5 9850d5e8d387c1eb5210e36fdd72a6fc
BLAKE2b-256 dca2a75b2892c5721586946cd4c60823ee48acf4260c4165e1591ac456c4225e

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 409c7d013c391f68cbb79bb56e4a4a253588b579b1039a9010cd41adcb12d676
MD5 54c63397831d0c32999f6b9d0f436d71
BLAKE2b-256 4f90eab67aefb883740dd81e37ac8e311ea3278413e9878e00122da2be54485c

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 105e62d78c7499b38ff78e03fc1118b2f1de1951f47758608b7d59949a7c1e8d
MD5 ae094b00c70a0fa41d5f4c3200dfc5eb
BLAKE2b-256 caeff7ae33cbb182e200b428f9e18f32b9af50b3249c494e0f9a63a230fefb30

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed820fc5409f4a41cbc8f206a394443cae25c9c1a66104237849f014a51cdf50
MD5 f51eef729c3a8221bb530707e13494b2
BLAKE2b-256 3baf839bd028fba3bcebee4d92e92f034119c516ea71b3dd2256462a00461a47

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fae65080f9e0b26a673c6f1d3023c511f0d765cba04a8371f08a040ce5f34fe
MD5 10c9a08548654dc4f1c20c3485638bba
BLAKE2b-256 f1d3394b836f96178e2a36a84bb9398dbca5278d87df0ec7a8b46bfa2f43cd62

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79ef2a869eff08bb2347a348763ae608c7ae97815ad528756a2fa71a34b52b84
MD5 53bb9f73fe7f4523dfcc737da6ed1318
BLAKE2b-256 0553a417b0569cf9259caefd15e0234e7b836a28249757e661f752c0aecab500

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e018ca259c46ac3ab5488f6714d34529694a6b98dda92bf9202a7dfb9ff345da
MD5 5e2502ff0ad12793ca3cdc9549a54c00
BLAKE2b-256 bccc6908b4b200e59a919f266ff9e4c52efbba3db1ec3beb109037482369cf6b

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0617d9bc1a54019fb9fe4233facd39e79f91b74530f6168ade6aa845a0d91acd
MD5 32a9a21b1cbfb9ea998e51fece2a36fd
BLAKE2b-256 10241a0c5b111970174ae3542addab04e76910eca2d501ffe8c2b203dbae8d2b

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 695030d98de2ef63a728b000d0e5a7a53d28b3c93f553ff8d2c334498213be07
MD5 72e5b26aef30aa32cdeab8538e6c1e32
BLAKE2b-256 280e7c1d941b28dbaf024be0c2c97c14d006c872c5ca71291f50f9c41d84854c

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4bd2014ae324bdca354a2075ff70d5e4dad0d581b3f4793612cf1e4f318bb835
MD5 0cafbe34ebcc70e237cd440e6909c7af
BLAKE2b-256 256476f5b3767d15aa090d65724d2af27597612e7eedf5db05f9ab5a1621df2b

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e840ca406ef1e43b2a5e77ea2f1113947242479ef3afb8a53416e7aedf494fe4
MD5 fc862c3b78e85a8b00a29f9a2d1bade4
BLAKE2b-256 5d182cb48eed32ee2ad1571421e8aa72a17ca54ada98f5962ad7aaf1a33b5221

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 66ecabfe0b57b6d405a49c4b1772aefa3a7c7a9b801b098df41eb2ac2c1eb119
MD5 abc11298f97796eb36080d867b02509b
BLAKE2b-256 e55c4cfee04c6564158677d6ebb56135a0ea9b8f16826df317e8427be175ce6e

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d29e8ba8831d9d7959e83d195fe0e167c728273ece28a453f68292d16742f8e5
MD5 2d83434031c6651fc74220eaa68d5df6
BLAKE2b-256 21ceda1a7da098c28ea29f11d9a658bd2f3ebbb1a51a1d1b311d344e7ec3dc44

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ac8153bb647d5827d9fd0af03838832dd9e6ee8eda58754a33a2f0f40efd49a
MD5 cce7d3aa5933f0129245813928458098
BLAKE2b-256 28ca673298084cf2c976e46d8f1fb60396cf46de7803d0f5df27f535004c11c4

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d0782a37eeee639078bc90d61d339c61fe05ceaf022614bdee9421b5e179053
MD5 83d6c574134dc3c33dbf576e95d50af4
BLAKE2b-256 51aadaabc1bcbc0f4db9ffd2dde543784d6a5e4717bca4cee047bdd0fcc8f6f7

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad90e8aa46407d42037324780d51cb327b93b63915e1ae3945f2d6b6afca3986
MD5 1c2bf200993151810646f119ad7ab021
BLAKE2b-256 30e6b717786ab68ed12aba6142359830f595db74b068abfa8a488cf0c80debfe

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf78b1f5a5b20c62aa3ea4a05aeba7194003e3df51faa3e2a745f537a99c7672
MD5 5597a2e9e39ada18b990a0aba8ccfa16
BLAKE2b-256 786bc7730a8a3ef5584aa3216acf10a27a77ca00a69cddc0963d7540717e1617

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1898f663f6da77e412737b0a910147be7f3dd0b56e61f78b6c7e6fecdccf7ba
MD5 3521a284155086c5859004190d3068a2
BLAKE2b-256 70a1dd358c276320e4880019ffeeaf0eab8439afe14aa31d4e4d88d71cc54f5b

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca528e750a9eb0d9a410a5f9a4d087f67dc10d514c171059428c451426050379
MD5 39713746b83e19db5ce88265ee18f67a
BLAKE2b-256 714acf6251099fc866e95c06f21f7fed208565709351c0bdeb76448d4bf3eed7

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2cd08e2d557d6fd1ef21e3058f304198bd7d0ac81d762a89cd69b90cc6a60304
MD5 9308230ce5c813d64c2950cac09c16dd
BLAKE2b-256 6b7ac36a56a58b0e2db8cfa29ef7e38b357c56faffc17816617999501dc0d2b8

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b572c3f873ce6ed8aca5d30149aa5a6a7977b212e0da4ff0cfde07345249c5b2
MD5 e7348984c1b7610cf05eebf0d2906ca2
BLAKE2b-256 4b4007061a5e61a1d28705771c311c0b37cc2bba4eeb7ebdc1a0c01c295e7356

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3074953f99f833cd0e18649335b9dcd7af858d2dddcf171b82442433665a80b
MD5 2c1af8086c31538cec9499349f9834d3
BLAKE2b-256 ce41fd645b13df9cbce12d315e74ab37d4927aad0f6ff365dc4972eaadfb9b66

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a37cafb57303f0c5be5203b70b3f96c190b7ef0dbcea51a4d17aa3f6aaaef6e2
MD5 661712b0f4bfe3fe05bc36319351cdd6
BLAKE2b-256 4c03cd8a8ed7293275f61af6dbd58f9f3597e5cbc7926b15da1a9fef57d50a49

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed0591e937515dd50b75a77050c9a139e8fc870f0fb8382f1e989da000de1abd
MD5 902fb0c31559cb6d1809a90dda8fb046
BLAKE2b-256 599a2cd143bda91b14799e774f6f4feb2bbb97ffd8dfd4a7d3cf89f98bd6f43e

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0cfee891911df1d3a4736e6d0b499b3f6cf11065857214087103f51947c99ef8
MD5 1da4439672d8a92812e0f7141d054f90
BLAKE2b-256 3b5c8c0390d9233e0ea28ae5cb81faccaf7f0c53aad0cd3a3522616f5f688f46

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 de63bd48bc84a4202be531cf6b93de84151f0986ed5ab6a0d0633d28b761f63a
MD5 f7877029efdde14304ee97e095a321ad
BLAKE2b-256 bb61b0e6aa2be66ee3c06c8087dfb25bfbb9eb419151cd38cb40038856e01ef0

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 012c8cd82d3454a658a3bbb05197b6909ea1560de0d8a60bc8bbad58fdcb85d5
MD5 84710bb0a9e8293f6f89a416e816a3e7
BLAKE2b-256 ac607dec870afd60fe76a14fd6158763f85555dc1d85cdf95b9bb3c3c506a7a1

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1805bddc78cdb0b46074d4fa52b8257a1a30222d2087d9a99afc9d5f1a5163d8
MD5 a46ef673a1c792d9d44d677737d04720
BLAKE2b-256 ec9f890f5c17571993c9e37e89699d332ef4ad2f82ae35bc13ef7274e49ce2bf

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95c0c41cc4d44abd690895561f020c78735178e5f85fce705e206589f9d54d3a
MD5 ded497c2b496e9f200d8a2bef527de99
BLAKE2b-256 65d06a8fe4fd0df560350a25b246ca4dc0badcd1cc539ef36367dd3905a71a4d

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25ff5fa7b17499000ed1d4b31baa77fdb669672976ba81c103c7e2bdd06d74be
MD5 6325099b0e1521658bbfe1c15981846e
BLAKE2b-256 9fe3d9b0c8e4694fd2638c5497d8e5f62ab08bd2c8421bc145ca292b8175c9cf

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79cd0c2631dbbce32ea166554550fc54ec3a03c49bf098e6f550afbd16dca099
MD5 bc284a319f589978eeeefeb9962056bd
BLAKE2b-256 6d256c4ea5d522292ecc7143b4057baf2cf4dff716192b7828173183815d72c4

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff43cfa8d7b3d3c6deaad032290027713dd2b70d57ff561863ebba926fd93a66
MD5 76a7e0c67933b35d737966df22213b06
BLAKE2b-256 c674a2e435fa110537a330e44c10d7d4fd0af4343ec7eb37553c135ae0a6d788

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7480f87bef469ec6df08aff7cfbd94f4a749160fe8aad3a1be9c75ec3b6c5802
MD5 ed2d7426b0071887a344dc5c003595f4
BLAKE2b-256 bb62325471d49a1432b8fdb4f259900d0991318b8791261cfd310abc039950a8

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 353c5178d3b5469c65c871489675403040c4f2987367e522cd1f6d633d424ae5
MD5 8bed6811c6be1b2a75f0d2f99d475876
BLAKE2b-256 2580d205454dfa7e65626ecd39d86c217d4ff87ad6bf60a6b020168872ecedf9

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a00e607ffc2f7101b022814dec61bfa7daa8b715cc5197ac03cd856be5145ad9
MD5 0f4d9e5c8447d437e2d506531de6505a
BLAKE2b-256 19e37d61cb0358ff4c6db7c28a5f4318c4fc07b39f645c5891b8f3cb3762f83e

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5d5a732b67031bee6e65055434000f4f8e5353703016999b9793610c9f44af8
MD5 f30337717a367428578127e4ca30d87c
BLAKE2b-256 de7e5e626727c40ab33fd4d8b99375f867cefd383b247a858f5f821da9b3aa3a

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b738c4fe2c291d96f9101e0baae3773fdc9755214295d0bf0fb8c466978555c6
MD5 148704072a30234a6afb461341880779
BLAKE2b-256 e7aa8c071b8774db6d767fe1558357b3e74a7a13fb978b5e1afad4b3cd0080ce

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d96af970a3cfa4bba056de1376ae5df12596e915f24d43cb3845422977ce1ca9
MD5 fab0640ee8c272418582c338062891a8
BLAKE2b-256 066834e5010e3cb76a6e13d0d1ce13a91378db3d8d89768f01d374e9eccf505a

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f1c98ee7c4e29344b8f841cd9eed6de3ab27b4f000fb705d635e37ea5a08d2a
MD5 1eef7f8ba8acf511a3eedad651da04aa
BLAKE2b-256 5aa02560c1f4f466ecf1a9bcba77fa142911e10fff107cb8284b1e8c55ea7ef3

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d54ffe38cda2b3820c832ec464be99c34e16514e006e61e885668c7a555c0ab9
MD5 bf06403b0e946c4d96e340f47f746f11
BLAKE2b-256 acca3c7d3280c617aac368c6b110c2254f814d39a5427b564610e22a080dc21e

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7f61b216fd909f3ab411b14d101791031ec5950b37cc9d4c267e56cd5e6b6d7f
MD5 5ba59ee5567c70fdf67093442f458871
BLAKE2b-256 5d727db5dfaa3a9aba06285d589636151e79e459b711698e1bc9e4376095821d

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ec3c263b3d7434922ffff84db5c0208b64997bccd85977c98c66a99e8c315920
MD5 b89a66fc79950bc56338db8fd6b5faef
BLAKE2b-256 6760248370ca028201685a47e411a55ad08fd76bbe1af8eb3ef48c225cfb1d2b

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 094ec6cf3dfca900a2eb93f7691eaf07b5f01bba7400a7714c89a2277fda4a61
MD5 804eb92c0b990be78af8d637d7f283f6
BLAKE2b-256 32c0100f940aab9de63199b5abd8152961d2647ccd1baa48eaf274d850b44b67

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3199674f74fd15f636b11ad012043e423c720961a9988fefc70aef5b63b59006
MD5 1ce289520c1e520c9e3ece9ca3b545af
BLAKE2b-256 2c63e56f3ebb9ab8b21a327032dba8210472b9bbdee965a3721c1aaa5ba9f230

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8b8180db6b095b4f367abc3a45bc8ae729d4679af3a35413d9db4cc007a4974
MD5 421bfa9cc0c3b7a274613ec6db077a1f
BLAKE2b-256 55a2751dc4fc8b2da76eb892fbbd178669881806b5fd75191e18b0906968bf1a

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b83cf8f2aa524e9a9f4e1cfd868e0506c4b74f9630d78236680a6f8170eb628
MD5 18a0eccf8f7ffd86468781f9549b252f
BLAKE2b-256 df1c9f724f59a3bb7b33701cad35e16dece8be895a5e46a3c123d9683bfce3ef

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97d32c854485ce83db89c129f9cdf7a73fa122638233a324bc48f2a92f6a62d5
MD5 e2ae5a17c1acd1ce21fe424661092749
BLAKE2b-256 0e65fa126a786c0da51500f12d4790bf231f8f2f8804da5fd4ba07406136da11

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de9be75fd1a4aa572783e981135ed0f96a122a0941996f274487f4c1d727461a
MD5 1a1a437cc941fb3ee86ae95324047b99
BLAKE2b-256 abd56eac102c959d5f3edd82206519ee655b80a92a48b3d6a28ea66b51633b64

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcf9274301f759cdbe60a4e0212b85551a6a21c53ded13648c962dcf8a4fc3ea
MD5 260d56229338fa909f55fb8887ffd7ea
BLAKE2b-256 993b51041e8d70f017c9dee9790fd98eebd2287df7abd2ce3c5362dce7a26a4b

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f07b74e253b1af320f756e440328d870fdd6dc330aaf18a2554bc5b8ca060084
MD5 bc57cebb57f8b85bf1e5d58cb1945524
BLAKE2b-256 7e49cecc1739c94403041755ca17ce343eb4f1822ad0656c58736596ad21ba92

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e38d0b90976b6c0000dba002a84ac4de04d6533a45a56f389999888d6b0a9fcf
MD5 46541afb2520c914673de6fcf91dff2e
BLAKE2b-256 4d855d143bb71848e3c35eac9c529e33826fd2390ee7da4722399868b388513e

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 57ae9eb718b5a67d5571c9ad01d07a2691eb62c4e4d385120920e29bae0b4a0f
MD5 00c52f0197a6606676c812afda81d1aa
BLAKE2b-256 25023f6f8f05c576c2a79376a3a70bd51df735e7801f4c9223c78882134e96cd

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d7d94f07fd27a7f634b245b0837ac366e45942e39f3be7b980811fb1cebb6d8
MD5 845bc25840fb951e5317fdd58c7e3adb
BLAKE2b-256 2165c7047247b92e5b195f33cd80cdbf4a1f2372134bf476669bdeea00a91077

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d7ae7e00ace279023a3dc3a61bb3aa163d0c568ffe8e868c8d2b65f7793fb43
MD5 31e47053bc975c527884b117f8c06b6c
BLAKE2b-256 b76a3424d8b95f19f05f379d39e19974cd8215ebf1d3f00ef6bd2b409d3c6357

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bbb25ba4c945253524349392e055ddcec69142e2642b5dd873e27275e3bb9466
MD5 89a91a80d0c585be5ebe290df23bcc3d
BLAKE2b-256 473b47825546b90d0f5d3818b10e28df697527eb1ec6beff52afa0c04e61905e

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dee2e75f9ebd283822fe13d10d9e8dc07c1f1e85ef951e6b20a8f28b65c0608e
MD5 427e8412dc3afbda21b20d17d859f7a7
BLAKE2b-256 c9bc434a1d0fac2b7df3964b392864f4346e480496bb958d3369ca123dc05e8d

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82b9f49d8a1191361341aad624aa47457645145635fd5ecd70bbf3b739671abe
MD5 d1e3655f7e42f994bc62f52afdc86e4f
BLAKE2b-256 e4dd0526c6f87c8be117aaea6aa2584ac4d918bfc2a7aa6ee61f090823f75746

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e3dec965fcfbd2f55ff06e557e24e8d57437de5c825b8bf0b5cebaff449fb0ec
MD5 418994341988b833b449683e8480502e
BLAKE2b-256 d6ed2edbf70cdc481886210f64864562a8642b22c988df1843d2719c7ca3b330

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84b7a07881b375e796eea7d0c7f9188c533467af817a5abf2827fe1e90d7440c
MD5 ba7c1863c99c00c256b88e6a9becc335
BLAKE2b-256 9930f97575a7e99a795fbe931c3ece83f3006cfc4ce71d8840e539dd2362ec0b

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03b22902d1b3b6a63c69ece3489d6d906231ec9b89fb871fd30e8001adb6d66f
MD5 751e6221e6234df2418aa76162510f1b
BLAKE2b-256 92606ee829abfe857c6561d50f34d88a2855fd8d3e677f909fecaffad7400521

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4d08a2e09d1b629ac67799d4506df1e566ac4168c5ce784724332ed41bb68c1
MD5 9893dd7ff6cbb4ba0349e1464161bcbc
BLAKE2b-256 c16f569e8ffe6f06fffacaa83e07df472fec88e80592da8f31992dd141104e77

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9f179c543e3b3538e166cc9d956df988850f90c16c7d38472dc0ead3705e76e
MD5 5de1eda49d9974937b26aa50c06bcfa0
BLAKE2b-256 09f19b6b2808d292c00bf47f36f2737fe7555d84641af2c8ef6abddc09f92b9d

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d36b06f60889da293b2eddca158e7f8b0a8223b9358757e7b4a6d2063323e07c
MD5 678fb21c652659aac5f3438a40fc4739
BLAKE2b-256 4e91bfc4fc4010dd440adc941a7d7e08278a3d857b9b83078a6281ccc57a6389

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd4b5fb100dace7d6a5f92c091847336d17339e21d60c2c2b51064c3e55244d1
MD5 e794784310a066c302fc6a7f58909f1a
BLAKE2b-256 eed40d96cc5ec2ed7e1221fc96543f3de9561081bb12f49a7242aef22c9e007e

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a9726adab9d2cf1c3f861109ac8d1a7d916d9e98d863a23e2dfb540cfd764412
MD5 6c6770ba0ebd21ada97fc97105543585
BLAKE2b-256 52fc7dcb38b6eacb33d22674582194f2e1b79eeeafe175ddda12be372080ffbf

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13dfd2a8339df41c35b539bcd583abd5bfdc818ab6542d95c33bf4a5eca327a2
MD5 8fba7753b76a42eff45cf44d70f313b8
BLAKE2b-256 981bdd4f2dc4a0c728634450ce432961b2c4c0cea7a9b45db77e27da4ac4e8c7

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4ef61f4f4398aaf2b0f02dacbdd4d350143b9f67c01d6cad0d652b9c1dc5fd2f
MD5 145138febdfe5c1ea4182cb9ba0f26e0
BLAKE2b-256 0ad963a8c22ee9594b05da8625855f0550215c4c6cf4aafe050d4ee64ae9358b

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 05e417ae32bafd44b2b1176f5a99232b160e7842dd0716545f53c2a92e10921c
MD5 40716b7c6b21d54034eff4024c6811d4
BLAKE2b-256 842dec8a419e776831ba252c7adbfb0e24fcfa3ebcf202dc685f250965c7c597

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0fb5550e823c7ab052c1600276dfc923915d7e93e603023dc97d73957bad889
MD5 f5ce264d299746550c50dee3b3551271
BLAKE2b-256 2554b6cf24bc24e40e8e730da7b475ec05955e271c74cfbbc227425b33fdc785

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e7658a6c2e7780d7355aad579e6570795b3d66218ff6268c0245658679d4fb8
MD5 24241369656d9ef1d59b6fe297ced228
BLAKE2b-256 5b541c2e7f66001f7c3365e0940e083bd0236688a2ac77ac34866687b2e05494

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 01690f913a9249aecebf8a00546f90a927263ccd280c5538d9e0ce1061666690
MD5 474431a90678075ed2a0317f18472cab
BLAKE2b-256 2d4746fec6451cae54dd615ff842d179e9e68f934f297898dc5d8b25642c49f5

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09f3e184aaed595fbbc747fde55c81083da41c6405b0722558d13b0aa20388b0
MD5 f4d2ab430887b587a119c0c16dd7668a
BLAKE2b-256 a2a1df642f2cfd093d664c250bf1727451a34baa788d1615a293f098caa2cc05

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4f1d9097c9d4b6270ce6a07c54548e885ec15a090d3874f4724a140e70fcc36
MD5 89167567fef5460c614bc8374ae2348e
BLAKE2b-256 3e863136fe60a64f5bf171de1ca48949dcd3d43df15aac6e582dbe01cbe78435

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f580c571d7d6228e8abcd644cecbfadf08570be46716a73537f3cc9e6d07e57e
MD5 795848bb12b819583afc8f1f85ac0197
BLAKE2b-256 81810f5cb258e02de3d8748f35ec2d2fe0dc77c77ba634a1b2b2e1208918ca04

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24a86f6d2d738b3a1d31376920f1bbd721d0b5cc51c7b123026ffeedc1298f55
MD5 1181732fbc97a90e5fa94904c1659819
BLAKE2b-256 84715678ec5cbd1603c1dc49d8230f375c644cea0fa7f7f73ed1a358b66e328c

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ce9b7f2762edc8dd857327b2051b670b11fcb972639c58116a3f5a7cc45347d
MD5 3c5ff0eeb4a62344f91de900fb41ef54
BLAKE2b-256 eb192d0f686fe6034c9414b1785ffc3485152e412aa163d5eb41e1542fc4fa73

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cfce40769e4754a0ec8a74a9ebbbf0d47642a2d54b20ccaaef14b31c558be8b
MD5 2a5ab117b589bf68e19a309888837e85
BLAKE2b-256 f7fce601b9b8b46088f89827480055f8e56c53d780201ee0255b6a234dcc6e8f

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for simplelocalize_download-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b9b6783eda9ad282087c001740912f6b68c7bd98aba86824417ac3ac186f73ec
MD5 39cf0732573d20970ed523ace2c42bc1
BLAKE2b-256 11aa4d3a6a1124850c6d2e87e169954b59305723402d1794b4b90d8278faf143

See more details on using hashes here.

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