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.1.tar.gz (66.1 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.1-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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

simplelocalize_download-0.1.1-cp314-cp314-win32.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86

simplelocalize_download-0.1.1-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.1-cp314-cp314-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

simplelocalize_download-0.1.1-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.1-cp313-cp313-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

simplelocalize_download-0.1.1-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.1-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

simplelocalize_download-0.1.1-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.1-cp312-cp312-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

simplelocalize_download-0.1.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

simplelocalize_download-0.1.1-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.1-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

simplelocalize_download-0.1.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

simplelocalize_download-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1.tar.gz
  • Upload date:
  • Size: 66.1 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.1.tar.gz
Algorithm Hash digest
SHA256 132dbb6abe33dc0d2d3132ed7a5ebd319ce22f1e87b419af5763b58dd6ebce28
MD5 477965c6c64c57325a1d8ff81738cd76
BLAKE2b-256 a8534f25098753f10c8d78092a8abfc96a16ba9bf5a8a57fbf43c4dc70b859bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3eafe1fb4747e3f2cbc33cb873885b43a7dfaf17d59e812029488d9195175ecd
MD5 5044c0e264ebba47f0132ea16ede5d6a
BLAKE2b-256 79e9672a0546701ec8e1f619205f77b032af4e1f3b7431044e30920d43f655bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e1530398f37ee06d2cf1ed77e8839e4841cfdbfd9201259849c42d08e4b3ef7
MD5 df3b8ac8315419fed75984f718cf5395
BLAKE2b-256 e44bf512de4e96eca81fee2e99d58233382fc85dca22b0a18fcd96ec19b5bb37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60622e89d7885a0493573e32cf675c4045b2412a9216d3fd480b72be4fc12be7
MD5 210a1813c17b67e969b2cf1669ef4a89
BLAKE2b-256 e43b7785dd73a499a3cf54bbf9059a4934961d38ea784ac0e15ec9cea033e865

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 060c4f4c6823d92e70ed3606acec48491732a46b93b672d455b1afa005407671
MD5 5844ca743ba200a8fbd93f5d3bb67e4d
BLAKE2b-256 7dd9d1256cdb9ea0e395b03be08e920a0da07b647eb337105788fcc55ee6db71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fb7e8e0e09a28f1c367b61db85a68b2b58e98fb9cfda9d4a3e283a0f09981dd
MD5 2e4b192dec456ae060402f5f6f94172f
BLAKE2b-256 c02876e8f6b645a02881f95510afab25c836b06798451bf6b4cdc9501ef80ffd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9d918d8ba488213f03d850b2a2b9e208c003d2c3ed3d6cf03dcb9a602f29f74
MD5 cfb7011860b0d33c12e2f9368c45d81f
BLAKE2b-256 77c91252839e73e2bd99d1c4ac2b5d29c13ebb88527844f240cb8f8f8afc730a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3962001ed9ee5d438adabb9313e10bcddf9507041e9fc32ec6f1de3db2f64266
MD5 f9daf938370356301228363086a329de
BLAKE2b-256 26f93712784d2feddaaf8cb9fdc39a6725b031a649c8228a0ebc4d0296d08e49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae5640a74701ddec90623b276f3ba6a446cd3f5b4b186ff08e773fd32c5c9b0a
MD5 20fda955dee2b9e49f2dc1048d2a03d2
BLAKE2b-256 1880edc4cda6ca825bef44be3fe16f51f86fe62162a8e065de1cc25898428cf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc5a396ff71eb83ad4438a2f136484c0c3de43aee0661e06c7813601d16b9f5f
MD5 131e864f51a387d8d111a4efed664528
BLAKE2b-256 525882b89713437687a5a212e3fbbd8d5193585e825ff44af0ccc42533b62db1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b6760c3d9106cdb3f60254ddd09d4cdf45d798258f476073cdd8e0b88de7259f
MD5 57c90ba2a2c13cc6edc6d15739b0dd4b
BLAKE2b-256 c9b4b776b7cc7946e54ffec11eca22c7083e7b375703b7b585b60c27a611cc0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edef79ac30a2585f2a219dad60cfb8b32d3e58ac7516152491ec392dcd533b99
MD5 41f4a69b07680f6a6ef23361e75d7a7f
BLAKE2b-256 81210ae7b2f2f54b8a2677ed084c0a0d88549f23701e9923c316a9aa9b9a9723

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 826bd0a060782bfdd7b9b1828e46c3edb9cb4704a66214a3b504691564c90536
MD5 41e278afe1a55c711af11ef06c32816d
BLAKE2b-256 b7148f29d3621ac4096292ac6c98c80fc244370345a6a3a03a7a23c52ce6d757

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 197421305f498689efbceeccb99e7c90c4657643a6eba7dc5b25561596abfe95
MD5 b67c3d2aaf1dbfe37d88d643b5b3158c
BLAKE2b-256 fa78f35af86cd32863d1173d5d718abadae0c2cc242ff184e1ce8d5478ff73f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8972e45b878c9d7cfcffc852d4e4024b2860b0e5f073b0ebc5e6cb2daf258cfd
MD5 6aefdc30f6266149b4d97206049a244d
BLAKE2b-256 0f66f1a8ac75e3bf459e929a238fb17ec82b8bf02e14718518bfcd6c758978bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7be42d68d78d7ec75e112f9b07a196dfc16cfa3e966300369a3fa99aaa119757
MD5 969e7828529f9e866b3828d2879e473b
BLAKE2b-256 3a6eecac5290d7a56ea970a6f10031297aaf2e4a16358554ed5689e702a08e3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16004ecbacb74f3f0b66053e152343945dd6518e30671350d3943addacd0d1a4
MD5 f88201ecda1bfb72afc14e0a74c53a81
BLAKE2b-256 810d614bd40b2cd845ad5430e5fc1067f4518b6c4cfedd43b6bc41c87d88ae75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7411c35a51ffa3fcdb6d1332bf83fbe3a89864c32ed87241d97851e9c91fe18
MD5 4ed236cb22dc632b64f22a9ef7b21c46
BLAKE2b-256 c296fc282d86bd04c2e26478fa099a83395668b461ac8d9d6badaff618541a5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81a9060b897d8024dd193836677491c85b9c8446cc7367b6db5417a7df191739
MD5 05d94d3f6844da77e1de37be936e3bef
BLAKE2b-256 4cc6caed6ab31ce02eaea3bbc063b24d8cee41825823d1484424606de7ec30d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b63ea51df1caf2d52008eaf19cda64bad4fd26954fe28a3eb6cf36d79186b42e
MD5 5e83f458eaa02aa795f86807b0f0f144
BLAKE2b-256 f2bbac9c12e9007dba7255785695740d4fea44321616aa4bd6df85757065e379

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c73d01570fb94494bf1f691536fc047027f1dab0866a72820b5040af0125382
MD5 7ae401d7dab60720c0b846b9d4523204
BLAKE2b-256 f6d5b74f9462fb19d37f25ca2b53d952a9e91392eb76c8d7fe3b688e5106799a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e869a038da5dd138827f08559094f591f99788ba2909b60b7c983902153698ef
MD5 25abc49b3539840220d4656daff052c3
BLAKE2b-256 d2fefdd507317aa92e0c29a21afc1a7757555b082403efd64cf99953fa69cc1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e91096a44587f77b1379c66bc73226320092218faa8168651bc244b43fafddd4
MD5 42f503ea1e0b7b4a4e71877cc727eb1a
BLAKE2b-256 cc29413f469168f9546eced70676e0e51cc7bca2e9f1ab031785f58bd944a03f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 025accbdcd5d90a62c5a06336d173e5a196d5a2b53691bc1b48c5c619641e0f9
MD5 817e6c72bb4202ad88a24dfb98415e3e
BLAKE2b-256 32a670f5febdb45c3419c07f9fa4eb89ea9f02ee751e6d82ee9570c72f2d09d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5758fba87ddc3cf1ac06079710a0ca84b4d0a1238cbe4f90f9ac1e7ffe52cd9b
MD5 123913fef18e82bd4f1e77509133dab7
BLAKE2b-256 5147e37f94ef5922ad68bf4271a575c37e6ff01e93f2ae42d16e78e1b20d3f92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0c01a80a0a8ece04fe85e5de55ae2711604cd28aa6789c79ed33baa178df5a36
MD5 7b50da7201039e3e3f7dff44b1eed451
BLAKE2b-256 38275e5a26f68e26b6dffcedf3e096978c49ff3577e6fedea9739382f1d48cb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 234c8ab1d07ded71fd61a18645e5a5cff2d4cd2bc33259af181fb0b88ae2062d
MD5 6ef73af0057853237221be005293fa0a
BLAKE2b-256 ce727406f0bfbf31ae6c927d85a76d51a02d325e0bf0283f684168746aacb714

See more details on using hashes here.

File details

Details for the file simplelocalize_download-0.1.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: simplelocalize_download-0.1.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14, 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cc7958521716d57a5bfccccc78dceadb1d419706a839075c93b4caeeed48d90b
MD5 dede17ef278aed297bb31372574f1e5c
BLAKE2b-256 a26d945a240f34bacbcc907d8f3d34cae29ab584d8a93593516ffa191c4dfd2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03c0c26a150e26c54fb4a5f8a25b317cf9630c773898ca29fdd1f79f4264cf94
MD5 1d9be476507d43804532b45093a70090
BLAKE2b-256 31de56b822c117dec2c6ae75b50033d5f6dcbe38b6444787beff30340ef71179

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d2798cb75db430b44871724cf999eff4b005fe3391e33f164547f7cc327cf47
MD5 52b50ca71fcbceb49d9b19a433d218b7
BLAKE2b-256 b7618d01c5d80bf40a9507033f72ccaf0ad8960b3f755e274985d9c57b0f2d21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7fac90ac6c22cc520408f78bab1be1208b4ed2cd15826ca064671f4751395616
MD5 73bc919c3f5232db2fdd5a9e139932d1
BLAKE2b-256 4a6f5fef169ed72e3e309ffa55cdef4d8c8b120d678d8d347d268aeb84e2e830

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39198943be700500e8865aac60dbff8c76ff6dc83c5408101767cc7a6713d9f0
MD5 0ba8c646f245f07ecd7c8cd1842ee577
BLAKE2b-256 4b852b2c19b8cb044f342cbbc1c96d1f246177ac71b56ca6b71befd6d8380716

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a83ecc876b92cb6c223f7649613b43bc918c72d25444e367a1309966aed96fb
MD5 6db35e3f99a77565e9a6616cd62e50f1
BLAKE2b-256 810188b39c208d06df3a4d691b6692627b20df0efcffaf567009f07561fc1ccf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5cb50cdd9a533114ac14a3ddb92622de1859be3a79b0dcd0ae16fd9f4a394349
MD5 f77e3d35a12abe9eb721db32c041adbb
BLAKE2b-256 b1d4959d6ef5b18089c735a68379345a7ae98810326b2ef546e54ff0432f1cad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 017f19c440eaf209a51af34e4e1c31e5caa52746f3f770098b07ee8e24313ac8
MD5 f9df2546bd39220a73368dd3296f6157
BLAKE2b-256 053eb6f1012c003db7f7a63ed30b3c6e64832da9b5e1d8c1be3c7ae3c79b9102

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6597a24d2fec1180e5bcc068f644d49d88da8f6bfc87f7aee72e41723be20df3
MD5 a4ace1449506bbdbb0f2f17e091d3a22
BLAKE2b-256 1e8b78923251d3b4dee19ff43fec7945226ac52df3c52703856a06555ec8f22f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d300ecc6ceb4393971f711f8c93bbc418d2240ecec1bf4ff27903e63efe4ccb5
MD5 3064b79796cf66cefc2a0f5c8cf11050
BLAKE2b-256 50384ad98a26defe0277abf03413b6d3681d84b19162f9c694463fb8647af9e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bf592596f93125b5c0a0521f42579aa322e97b11eeee107efd3a6cb3c41be21b
MD5 4398c7c9b4d1ea306f22c1bbc9376bb8
BLAKE2b-256 045d7694103c0fa7f52cf6a77283154effa1d9b677f1fc4807a52ffaeaa16682

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74b03f98826e4748cba4f5ef74e68c9d789b3f60fc16b5da3044ca91ffd54069
MD5 512a028789732f588e3e4f674818867b
BLAKE2b-256 641ad69f30eb91fe211e6cf6946359a72117d5ddaab21d6fd01562394631da76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8465a3235ce46ac5411c9eaefcdc1cb1de80d3b43d789203a8dd802cc4a25a8
MD5 d49ff738f08c5720072e79513f050fe6
BLAKE2b-256 6b96f56c4f86e306dcc233bb4c867ef81c1cd75acd108c5048c7c514211254bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6f5603d920be7e8f2298daca7fd84ae882e4597042680278cbf9bcfee5fd69c0
MD5 9b0cb36a622cc5b69ec970a501355c95
BLAKE2b-256 011aaccaf35f7b4ef79755a94fa530bfd334dd37298d90a8260e176afaadd354

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 af1d299b912351161b707e1087633154b24e239726046f91b3300f58cdfcf83c
MD5 c1eb26aa7897a927d3180aa32d9e1b8b
BLAKE2b-256 461d6a8ea10990393530c3dbe276cce11d7dd4de4d6d8be86b95b4c3be8f171d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1d161ffb7bdaf1bf598a635013e480b5e6487e57d09587a258bed015403011b
MD5 8b6c97b67a491d67a44f3e3191c0e395
BLAKE2b-256 3856213fb7b819786a2bbdc24959ef835b1c6508ea49a735707fa5686c85acce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fedf35b33191aaface0428acdd944ebbb7caf4bc3ec245754f31a29b2b2ce41d
MD5 d6ad77e74e332ce8da159d01c977c9b8
BLAKE2b-256 33dbef812fb2f0d4de984d4eb3497e6c719b04bcdc527581701cd520c0a50d47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e393464693ac9922b1a9e8b5dc6d60ab3c3ef259d85c3aa23ca6c92dad6ba43
MD5 3a39d7835ad4f96a27d6de2fb6506103
BLAKE2b-256 907ffe5d90e0679f581e2d5b23afba0d3e57f90dd2aa37f1c6ba4e6e155a697a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6e2df8e5edf85469a93e72ffa9daf21609a436d2a718628105c21f14b6317d7
MD5 2e2a1d5f561ead85f6a35c3fd9b87015
BLAKE2b-256 09f2b03ead1a56f36fcaa9757f92b31bb611bb88bde717f5ca333d6f6b498f2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d350509209a555a4313b8d01bf71008ced27ce78b77a0ed45941e8a3927a7bf5
MD5 9211c4b06d66b97742e1fe06d4725661
BLAKE2b-256 fdd1f4480cefc6ddaad73690aaa058b8c8b4c692de9155097cbd578a2cef8ef2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5802bd08f0e970085e6ad00e124bb45f21046c7eea2f192a0f27345e3509d5d
MD5 2ed886e8d034bbbcd85844d64fe46aa0
BLAKE2b-256 b8a48643dc8eae32e0da855b9fbcdd8db2215980c1e211797815245a3a3728c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc7f08f3ac067b20251fe40939f557d5ef6af30b6ff2c9a08f61c93b5a1b4fd3
MD5 59046cd80a16b9c089d16962006d8c1d
BLAKE2b-256 7d48b6e3a18af25c805c634aae0c46dacfc05875a3ea2dcee1c24d574023bea5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27229a1df5905d8e373ead90d170b48a5ebd4d14f8ac91aec93a04d284b9f8b0
MD5 b05f4c18e677664091b9f76a550a6c17
BLAKE2b-256 9d9d1b53474b70349dfeaed8b18e9d773102e45e23089a275c4cfd22951fe498

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a54fdf5e1aa667cf4c77750b2fac724464ae85574dd6967aa04412e53083a93
MD5 9d891b895c4064d621912fb50b4788f1
BLAKE2b-256 6509963ea49800970cacaf541d127bc4ca452ef361788efaa3e51ff1167373a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5997a68610206cc0fcf1cf7749ec27632ea4a9cc812f0f0f6ed69c961c059f98
MD5 2f7397cb8fdfcf97d9ca84daf26ee53a
BLAKE2b-256 0876c06ea734b27717919055f90bdb7c104c38cba2a8baf3216b1c1e0716f996

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 418554342e098335fa38895b5c291594b01207041fb2a47da579e1a820a484b9
MD5 84c82125c9deff48beb14c28b5dc863b
BLAKE2b-256 b5d1f2744d2f6e581a407d36add27df778d63ff5d61f6edbd0b95082136ed5a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 babf729de105a6a0579e9dcec44cd879838e0a9d71993afd6193f34aec46a7d9
MD5 98d096557fc1098d9edc36ad94973b34
BLAKE2b-256 9dd510217efe32f8945dbe3dd79eccb6c3f34eb3f6ebdaac3b353ca15b0a2f1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 af9df510b9afe6f75f135b4fa37ad63f6453aaa2219f6c1e11b7f8c51846f118
MD5 ecc2a69ec730e0a1ecb3bdab068dfb85
BLAKE2b-256 b70873131dbb75b5683623391e583225b2a01fbcc8c7aba058e8da9a3db1c0e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 503c395301ee89deba9021d0026ba8e9a19682a1a1c08e0bdd4168c68da23c9f
MD5 a8753996395d3057d46707bb48d37f1e
BLAKE2b-256 5433204bf4327f5ce9891cb2d004e1e0dae3b7809f57ee24b889440a379c2190

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25fadb71a63e7e3b5e551bfbc29f2a1c6da027014215fc91f32ec9e2a3fedf8f
MD5 a595f47ac6218c203c89abf2259dd829
BLAKE2b-256 e30e83bf84eb1a34010ac38d57ba94c84769623ed5da562fef5fb38e5a88a154

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56421d3b24b7d8c895e002f27635170f506eef56bab8e164610a9d2b69bb3399
MD5 9384a9c0c726f5cda484d4c0e7b82536
BLAKE2b-256 66921ec50b81e3a4850e56887add5397842ac2d92b288675d2cd0dc9fd10edac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 760e4fe957dcba3011a9b13a9e670cadcad53079b6e0d6a5b62dd15e8f36ef3d
MD5 a33586d0967912249c1c006ebc36282a
BLAKE2b-256 952f97a82ac56e227572b53025a62125b65a2f8f53e1bd1f6f80d321cd6140fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e159f5a125d917bdd41648b2bc35f7c9434367328527a7a7a02ff2a1e7f377ac
MD5 163c635ada06ee09ed8039e8fb8c8c40
BLAKE2b-256 8f60eceff98c9430df4dc7d3d2ec1fdf15811662578dafbad9b9b4f4e872a7bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8e2aaae77b57234f20ded7a062810a74370e15888acdef69314ec706bd5fea2
MD5 4824dbec8dfd3a6d7debc1797b3f3915
BLAKE2b-256 6efb3574155fc890b4e70f8d322cc678d92c1cb1fc67f0572225a8073e27ce81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f62ca7e30ee7d9a6eb15afb18f56524ed780a1fb743d4ba362c7c6e625242a89
MD5 481207cdfaeb9164a6e0e3e007f3a419
BLAKE2b-256 983296b24f3988e89c88ce22ac4429411f3fef9cf3babb401d07c9e91df8aa41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 283859ab2e800188ef789b186463f2f10cf3be4cd112e8c5a729ce607c85d506
MD5 544d30ac47b816ba22554a9b573dae92
BLAKE2b-256 7e5121097eb47f03e8aacc6790c931ff0ee7a511fc60b0576dbf1e3d423f5e64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae5c4db8808979fd63f9292219c6a0611bf0b797d44a332f61cd477c4e74ea60
MD5 a1c9ce552f8e7eb75271133c020a45e9
BLAKE2b-256 b866f9cc03f9ffbe0b632d9006f70af4f9cc86105ea0b27c371e8c3cbc727879

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1c7dad4aef833d548e7b164974ab924425cfdcb90ad741a1dfe1574892592ba
MD5 5344321b9c9f154eb3d585726e0767f8
BLAKE2b-256 5074de8c62178a6ddc33ec9594ef56c6b237fa4b170e5ba01c6281271794f976

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3824502c1491a43a9a4d09b3b082cac3f368bc53738ef9bb20c3dc80d22940cc
MD5 09bb766be256d341fa6400efec630eba
BLAKE2b-256 c8128a49b7de54bf88dde833092f48d62807a5011f11d48b3218b634be1b6abc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6bb21197b98398de9cb97da36e2c3fc4fc56a0487e964051966c49ebcf6bb06
MD5 e035c1ce923db151871272d829a0cbbc
BLAKE2b-256 360aaf98b27c5c6278c06fa0e86e267a350e9db29c85da19f7685de2206285bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cfced25c085393623b2e3021569bc200c7bd8a03a004f179f3e93899caf31552
MD5 9045684e46d4bc2fd0911c3937f49368
BLAKE2b-256 bb35fa0da6050179a2e269457275503befe81f4274895d00f9780883d86de885

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a539d4f438643bd2ddc2b4901fd26bd5a54d03310ae570a28efff9d81f6df8c1
MD5 52c034bb9d0f11ce8d2f32613d3db103
BLAKE2b-256 971031a9b9e1fa19c7fa2abd7de4ebe6a4d52fd42c3ee1dcbe66f68bdf090140

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd75acf41967ce268a6b19536894d8e7a0027337516d4a9f0779ec9710323a5d
MD5 87118c9d807d532ff4cf777bd86802f1
BLAKE2b-256 d1edef3f4eb3bf0339e029edb7f194d457e6088a448bb447e470f9f275d4918f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 93382c3ec3c3c4416030d1c8fbe43204f8502f1f110154f2ac9ac312288558da
MD5 9d6baf1d01686d0e1ee6b7a97dfae2e3
BLAKE2b-256 d08f28687d8f63223e59c8b0dd0939629f91db5ea61a3f5b5cf69c27a7dea07f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 393dd13b8ea6c19b1de8b3645146247374cf8dbd6fd34ee94a1b5c6fadfcfb1a
MD5 71aa3f67615edd7b043bd47eb8725a6a
BLAKE2b-256 3787b589fda56578a45a39099702568d34db9012291869fb5f2e4eff72599b44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 166a1da2ea56056641aa5d8f3682041e2b0711e97fea9d2a511aa4ac1b518a65
MD5 4692f0e2108e589645e4e4c991af6689
BLAKE2b-256 35096f27632c16e96b37f131684060e7eec7a8e0a36a5474541815efcff512e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fa182d3480433fb0fc20e10611a4a1e326fa9bf40c91f05be7dbe179ef4e21b
MD5 07a712cf671b4bfb39faf75ec3aa1f74
BLAKE2b-256 5c7f80063c211f441abd7ade190ed7938fc30748d735bdd0de0d4ba271a1e854

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 804539ed456de1eeb367806fe9ab1dfb624fb293b18c0036312dce772bccd6d0
MD5 9e9121f4bfcb082dd19c5d7cdf7b3052
BLAKE2b-256 3f59a32a2986972fbf654511bd5077c8d03f34f85648c7308fd9ddd7a040bcac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46ab5b8ca8cda86f935836993a4418b1fcf88ff24e291aae5acce6735eb4ebc2
MD5 41e10707e565529306b07b6e317ca584
BLAKE2b-256 71b29731c508f1588dea4d91208cdff9954aedc65bd0fe9a7c1cdc23f1c3dccc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ef879193f34fcb5ecc7699dc91d1444676424ed3a6cd8b9007466cf51fb2947
MD5 619405cac7ee4f5a5a6cd8421b4f258d
BLAKE2b-256 7123af18344be1d082a657d8c33f92d061cfbbccc35830368945825b4536bd73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce3aee0b380b395cb34997c63f2853a97b920899933a5d42ac416bf651cf647e
MD5 24b38d0a7c3ad4ae45f5605d232fafb2
BLAKE2b-256 a4e643860344e5a35e0342fac3aff83178ae6dbc53a869a4dd4deccbfe2cb9e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 690e2dc092ac63175243ee8e3b181f0ff7f4844ef43e7ee18e658086e501b880
MD5 04719c0cdba1c13f0036e4422659401c
BLAKE2b-256 54a2ae0f8a89430bc0c8a9d6cbe75b8d1655b54f9236204b3ce6e430faad241c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afb9869e68c3c31a042532191a8025fac88e88441dc05ce93b457121acec337a
MD5 7aa9e9d0980c13e2cb223e3468ea3672
BLAKE2b-256 daef811eb69a584faebf11841d352fb1b353f033ac7af70d4f083e2c0583641e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.1-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.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8549adaa9597937e430bb790767de52336f10729b87ff44497e38f00615e9a5
MD5 3f831e3ecf5d768317f1d728b55c6753
BLAKE2b-256 b39058cc96f3787931d81813d245e2ab57a6c2a225ee6ef2d16469d620f243e5

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