Skip to main content

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.
--retry-attempts Attempts per request incl. the first (default 8). Or SIMPLELOCALIZE_RETRY_ATTEMPTS.
--retry-base-delay Seconds before the first retry, doubled each retry (default 1). Or SIMPLELOCALIZE_RETRY_BASE_DELAY.
--retry-max-delay Ceiling in seconds on a single backoff delay (default 30). Or SIMPLELOCALIZE_RETRY_MAX_DELAY.
-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 jitter, honoring Retry-After (clamped to the delay ceiling, so a server cannot choose how long an unattended run sleeps). Other 4xx fail fast. The default budget — 8 attempts, 1s base delay, 30s ceiling — spends 91-182s of backoff before giving up (jitter is additive, so a single delay can reach twice the ceiling), enough to ride out a short SimpleLocalize outage unattended; tune it with the --retry-* flags. Each retry logs at warn, so an unattended run shows what was retried rather than only the final failure.
  • Per-file budget is tighter than the list call's. The list call is one request, so it can afford to be patient; each file pays its own budget and only --concurrency files run at a time, so the same budget would multiply by (files / concurrency). File downloads therefore use half the attempts (minimum 3, but never more than --retry-attempts itself, so --retry-attempts 1 really means no retries) and a 5s delay ceiling, keeping a batch-wide outage to minutes instead of hours. A file that exhausts its retries is reported in the summary and exits 5; it never aborts the rest of the batch.
  • 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.

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.2.tar.gz (75.2 kB view details)

Uploaded Source

Built Distributions

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

simplelocalize_download-0.1.2-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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

simplelocalize_download-0.1.2-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.2.tar.gz.

File metadata

  • Download URL: simplelocalize_download-0.1.2.tar.gz
  • Upload date:
  • Size: 75.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2.tar.gz
Algorithm Hash digest
SHA256 57a86f3d47ca265abce6ddf50ed756cf0bea1aab705ee1a40e24fccd516bcba9
MD5 f6c2c129af9991e6f1d5218daf6f0301
BLAKE2b-256 4f2dfa8924dcd009a4727983c98befb56b3841497b47bbde3a99710530b4091d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b01e94bc5e606f75462d2c363134998758723d08b1c7da599f0e99a31ace8d58
MD5 68719bd7a0d8b4df02fb536f316702af
BLAKE2b-256 cab4ceb6521963cedbe1645cd998267a3bc39b367e1ea74fda4a23e0085ffd38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0ace95792f88e99a56dab21be7ab65b8bf4788c6febffacbdf02c5e5ebfd9f0
MD5 17c58d9df748aac6d2c5c074cb63bef9
BLAKE2b-256 80e875688d97a2d3534730d899c51d1270c2bfcc84490ef54b83d8d3e014f01a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c5de3accc535da9f1fbbcd5e8bc9eb8d5556412a2b548d768a2b112167c9e3ea
MD5 99ce608c9e5df06f0c9d906b6a2c11f1
BLAKE2b-256 dcbc1c4a2e863bbe9ac25a9efa7ff3dcb62ae0c13411bb1964b410b8413f967e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7faa3a554565bf5255c190934d0031ccca2916207df0a2e0940fc89d43d9e24c
MD5 88b1c59e8c6b601ff9edce97ea568ded
BLAKE2b-256 4a2d57c20cbe7b34d00250e6932736fa6f3fc08b776b395c1f5fb62d8be24a48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2218dc2323871f73407ac1527b4292810f0ae4faa740da02e73aaff7e9171836
MD5 668490acf39d838e9b216309aab41d02
BLAKE2b-256 93027cd2f95c162c01a7b4513230586f94d0b5ea322628d64c536701c214c709

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b661ac36dd4d1bb256588312cd8151dd587dde40ef9a6793cea541b4ae485f14
MD5 545320700e2897b4fc5564ffd7bd9476
BLAKE2b-256 3935d6c9f0406af88bfa7906c8b2891e7c4aeb33d5f927d4089020fd5f0b8010

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ac2b521326b98d0268af9dfad725e961cd63417943dc6963800e68ec481df42
MD5 66614fcac2c56c1ec86344c2dc08dde2
BLAKE2b-256 1776bec7b6fe72e224bce926264d3f6939825fba57079ffc026e4d5c7d69b738

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a67b1389e46a1030b2c90075fe550bccbe2357760a5eaa03c15156ee30a0bce
MD5 ab12dc6cfc90095d8ade02924774080c
BLAKE2b-256 79308910d343d40fffd75fef2115301b524e56ede4072ccdbced0a3afbeccaae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a1ba63a577e308c3b896b66b578b20be6dbe78ba15c4fb7fc2c3adb9bdd1fd4
MD5 33434b1249ae38216d5f5c4d18ca9ce6
BLAKE2b-256 1ea2b660536d68f6477d073fa45ee24fb1e7d8c3be2a5c67ebcc693fd55c073d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 318f593421655496924602a1b165a7b1079560154c41beefaca5713b6570bf3f
MD5 70735560679ef06d8312f99f706d93ce
BLAKE2b-256 2b2faec67330b643ca15bc5621adb71fd09c632922e56c2bd1ca6dd674264908

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe0b83c0008471759d0a827da5d04d538aa62bc1243ef37980f32fa552f6bdaf
MD5 1393eff458d2254b66dfe65d01a5f97f
BLAKE2b-256 e8531a6f84c818e8985fd07b7cf2b025ec5a1d04d5880853d7861a9fe283833e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp315-cp315t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c49438728c56129b671cc739ba8942ee598d27f1c042b0938aa1c295ae4e9e00
MD5 b3ddc75f78934ace247f5d7aa4df2d03
BLAKE2b-256 bf440398b5334ef2d711f15a80a8b460f4a7b638b1740dc3e94161dff7cd3377

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68476ce0782a6d07b3ac1b982bf2922e1ad8f03702b53d041ba07a59bf2e1fc8
MD5 863f3d81aef3a9a8370c82dbd80363ed
BLAKE2b-256 3aea6bb737f2e05acce2a1f13ab395b23b0eb1f8cdeed56c525bbac6d9a6e20c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fcebfb8a13ff2f0bca51ec7d4a068060ecf7df6b3cd8a7855646fdb1a7395799
MD5 da6c72f680f5151052fc31a3bb6c1f07
BLAKE2b-256 3a7616b75d3cc3a7a9c707eac94cf41d60a68d5f72385ee75465ffef4f552251

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ceac143385a33b1e665d9424c4c05176e270c2b83540da0ccf5b51e9f82cf63
MD5 f5c3adc33b5ce614032d2bc2f7ca709a
BLAKE2b-256 a436eab3f4b3f083914a4f0f7484975600ab4c3e489539732a74ef682e628511

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00528164c76d9afdd116bbd9442c1a72267f4a63b0e21f516c3215b113e58f37
MD5 6b37928e4012a9826f3439dde35d54df
BLAKE2b-256 07d74a3d1d8c6b0165eb2b01504b7ac44256f8c629903fe8f63109ed9bd96952

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66f53c73df938e8f9ee8d9db978b5cad44e4c0380e4820ff573c8d178b85b825
MD5 2ba64896d6765756ad66191920fd9cc0
BLAKE2b-256 7ca9bb7bd7414faf03c980bf22ecf6b2909b3ff69d71a6081aa834c2df0d8721

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0b2959cf0397fe503e10640587bed09baa251c9165641f7ca57f3100171e36d
MD5 9f6cbaf34e69b95d942e6a76c6809165
BLAKE2b-256 eefdc5220cffe04bf687d990742041646c73b5acbfabd8783b67d22950ffb465

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3abdceacf655aafdca2471c6a287c5841eaa0c36a31b7bd278cc7f4d112d2b64
MD5 96a2393f81fb09774f563fae556e9f43
BLAKE2b-256 2add4a62099a9ae30377253f08652e3278f4efea21d118593edc24c94b46d169

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2877ad8057fa80ea728e1dc5a144cdf392ecccc7616bf0f212c4d83e477fa4a7
MD5 6f73f66d35cbc49295b480469d0b5719
BLAKE2b-256 47f28596cba3f20cf68ea9e20ac441fe88e4fce8083ead29df174572d2c99ef0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89e42842d3ebf1a737ea52991e0cf4b7d236602e0eeaac67207a02066d906831
MD5 5077d5d2155faecc246b785aed9fb6a6
BLAKE2b-256 c27cc96d16a5674d0368b72bada8293d71117e2455d166606aa60b256321b293

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d255d086a3a4d8fb270887969671ff88c33a9f90345943456990d244ccf5bd90
MD5 b9a9429ed6995538060952cd856f0e9b
BLAKE2b-256 b7b10b093c09aa0df7b865a4d8f306b201b9ec72d38811020be673a73bc1891b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6de51ff04289dd9fef3f57bc59b763e64d2380486d3f52a73dc10f78c46cb9bf
MD5 88a56ffdca3f81357b5eb68af46a97ec
BLAKE2b-256 5cb0e84f55e6da6f8d4432490999bf8c20c49c983aca171b324a517a1eb63017

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cd700f756f260294126d550b0133822651807421426d7c0f67b789cc6ac3733c
MD5 e199cd7ab75226092bd7e4890be4ca7b
BLAKE2b-256 27acd3c4391f641a99ef2cf23c848db2fc762e5b858d14c3772e484dda8d2df1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a4f226d5f6dac50ee66330291adb303ad134de65cc6650452199971d18c437ee
MD5 dd0a01a0ea1fb64c2c5d027011ba9bbf
BLAKE2b-256 12a01126b7aff77b65679e4b77179b9fd18d531326211199779e5def5cf60d07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9d2fc2e3e393d8eddbca8797b645b948845d63df06016868b05aeaa32f376044
MD5 4c5a087b6b48514d4b13e145632fc283
BLAKE2b-256 110ff944a29daa02df540ff9bacfb0e94ba4afda2594c19f90293fa68121395f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0202788589586685099b60f2a2a4639ef9a850b196a2faa36b45a0bf338f9a88
MD5 c10a3b79b2a55c44c2c6f4440b0e7734
BLAKE2b-256 1d3e16c36eee6684b3156e3bb380e994897f1faa88d71db31c55f24cccc0126b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0d32c0ab285b1413c134f1e272f8345fefffb0f33642f61d72f2ebae0c4875b
MD5 757ad033d0812fe635d3e9f2f6dc2189
BLAKE2b-256 ed435559d62732d3d4cc27f948b5421c7a586d28852fc99ebcf089c30e4bd83e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99c6c2cafa3e9b89f8bbc7f8968e30fe07e8608432066abfd60850a272704982
MD5 488ee75723c9dd286daddda443146b5e
BLAKE2b-256 d4263960aab939a32890e3eff3502e9aafd942c843ab5f7731e222e0f32d9945

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d07ebd571d65c51e64032f70e436f09f76360c94431a38434007829d920bce53
MD5 f2cf7a24c6e7cd01f31cf25b0849d1cb
BLAKE2b-256 edea7472bc1d2464362082937dcac7d9113b924d7f6256b729d6b932ed07a940

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7cd5618fecfb3275a3e537df2b139fafaae279907e5f6a17acdb2a8061bf714
MD5 1cca9a572ba95d29464f2a8475680858
BLAKE2b-256 3829bc819dbb3341ef8ef3c9f65516f333845537ae365e010d90766430df7f60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2aee9c1800ad58c96a2871986e7b445c437b9799ef07d427d31dc489e02ad8dd
MD5 75648dbe5d681a68d22231cb6dd8a016
BLAKE2b-256 27966aae6a31872fa06faad113f7430047cfc9d9a32e73bcb94640889fad6058

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7824266028211083715149fce3b6c6f1db5e66ecbb41ba7adf331fb730348de9
MD5 f341024e590006b5d12b58ca29ecf66c
BLAKE2b-256 e8e66043e4da4ffb959188939692be3b8c229afaca6d1e7f8ef4e7e835105332

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8feb911b4fc407505609fd6fa8e7521332ad6fe597b6760c1d0c904d3a4251b5
MD5 f0b2fe06cbb45ecf5034c83ec3c92769
BLAKE2b-256 7d8311a7f14bf174877d122a62dd25b4998c156c13d9fb209dd31e871a8574bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1c3067113b040c60e3a6e7964f01f4ebb0998e510ceedfe735f5bb1e6d97825
MD5 a1956e29bb87abdd49ef976050129dae
BLAKE2b-256 0c3560b2023437ebb89090c2444ee4e523572a339762f28bec4d1283ca350fd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cc385f7e43f363ace0138160ba8513d8ef14f1dd95aa32cfcfbe649bd1fa383
MD5 886cbc9e150fd86f03f28e2334ac5b5d
BLAKE2b-256 f548053e35b6e37ee015283de476078fd431ec7ea66616e1f43c9a1e9da28d9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f6abb816a7177f5c9491800a9f68564c2b4681cfa90652315b740eba2c65a4a0
MD5 9834e6caeef8b4a27eef521756cd380a
BLAKE2b-256 847520cd8e1cd468603abcf4b8f8efbbe87ee3b96f6550faf7eb243a2a2930c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a62ec1d1ebdf48b034e2270deb17667c2ac88839c5ae52cfa89498dbcf7cf0f8
MD5 e297e93eacffc038bf108f2df2c14326
BLAKE2b-256 64b1d16846e126c913c647ce3adddc2134f2aee5371c2f2297ec29b9cc6c8e90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9a8a130bc30d941daabd45fb468fc392da1efe45a070e53f2b604ea64f79565
MD5 79095d89494f66383dd3b629dcb4f2c5
BLAKE2b-256 e6ba0bfac70c34a34f3e48badab4ff2fbb7c357523563d30f7f0a264201c281a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 02dbfb8a277eac923ed42e05da88351bc3371fcbd842e7061d1927a1fa0de78d
MD5 88dc79fff4a3bdb1ac56bb6a9062751b
BLAKE2b-256 5badc0738a2c07dd0ca88f1aa0ad2179f92502204c5a6a2d35b19427a78a3b3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 65cb6e22d414cd8099e0aa0d8e0a5d04130d1fd11c28261fa0aa4780d282f29c
MD5 bd6afbb44ec2b34c340155330cb0b6f5
BLAKE2b-256 acd7e92624ccb93637f8987ccd2e63b0cc08b85e8449b4c1d7d6ce41b749712f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3e94bc06731b1cefaccc4547d04af16242951e8e925e7af43f9516628f141f5
MD5 27d38651075b35460c2b8f0bca1865b2
BLAKE2b-256 44ef6937e0b234323bca0223447f5df09c6474ccbca65aaf74b4742ac4f4017f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c886da9369e0ee2392feebc0d6a35bcf7c18fc0063278cd045ef4cd89cd11b23
MD5 5dfd9ab59224e72da8e721580a447e0c
BLAKE2b-256 a4247473233ae57be31ccf681b37c3c98dfb8744d4e7eb814f5d7393f0377654

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2a3fe8c9e301dbf09c4a4be9857231b67a26906eaaafe2bef99edb561a7ca50
MD5 28d52ce191e762d631c1e64abf717ecd
BLAKE2b-256 b9ec0c3eee9f16ddb856b147cfe08a4d23d6b62ab30ea79e94f4fb659ea733a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c06b8e93dec98a2dd3d6386a5bebd14bc31b3433b52cc2d09019f8d1139c4d6f
MD5 194904b70950e1f958e02cc306d9e0c3
BLAKE2b-256 6471d6edc84f51382f98dfa57941dfb4851abfe48aee7b262fe5214888c0a3c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 977ce777fa55f9f50874418986d53b51fbafa902c8df85d293e299817526612b
MD5 f4632788f472253f07ad7da5a5f2a45f
BLAKE2b-256 98f512ec28f27d3fb51ca1769df2f9883a4d93da2d82512b9a564c2f93da614c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9062819c54c27bf0d4ef4f6ea60a9770370005cfa139e5960b17775cf7e8762
MD5 ef35142297c88e2f28d54344d2a57b7d
BLAKE2b-256 4756559b409c1be50710e01c384f8e5980e1c7d2ae076ab14ec1daecb277c9f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed9be7c4d28de558e9d0e3caa55ca88f4edd9313a0f940528c20cb14f92af3fd
MD5 dca9eb0717395517f3bcf3156e3061b6
BLAKE2b-256 5f16ec5a3551a4a6bf509f3d03a22ff2703a15d60535aeca50cc4b3cd6b8c1f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 555d00f2ef5cb9785849df36306a0ce1be596d6bcc52574ea1843913c26abac9
MD5 18e88d4ba4bec5a955ce35ac0c743d65
BLAKE2b-256 ae49ebb0cc00eb1ea39a4b77a36b9522918386c7d9270f78eac30ba7e35195f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7faa091666185b5083de144c856465229e4fe9daa00fcd76b48b734322a122a
MD5 c1c97d6ded15289b983b4d942a37941b
BLAKE2b-256 37704bec5d5fb2065424e4b958af1fb5b1d46cb69f1f5e9bd858f2d992187e72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 031825cef969c1005b05b2e962f02ba730ef048c223dfdf03c8fb97b85eafea6
MD5 44f7a42faf7df98d3f4ad9e3af7afd45
BLAKE2b-256 b044c09b0bd6458eb7569d863a2c629447647dc7d72409ff5ec2c389fdc8fdc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 071c8abc8c75ed1237d5833b74e37fa2a36866440f86bbf09ca52aa8795db773
MD5 8ca5a850cf34d32380ca0d971f0ae0db
BLAKE2b-256 e1d48c82d45d716976c14420416bcfcfc3d0376cc2c64bed9cc37d187f891b9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24cd4b3d17ea0086f41b5470e52eb269efc659e6d9c2e9621fa728754a0f7c5e
MD5 2e116a98046c30eb157ca37aefda8840
BLAKE2b-256 e1a7afd4689a745c4ba08a6245a47f6129cbb99fb562f57e74fd82612653f787

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0795eb7f138c8dd52ac05b0c411844a2f7cfe1e083de6819f4bb1195f0031401
MD5 7efc21374bb6f7780bec8219bd7018e5
BLAKE2b-256 5933425fbc53377593fdbf2a690d837aea0d46be555d193fdc6ccef6e589a96b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2c79c13d1a673b21300f7bd0241d196337eb8e1e71b57858c30f9a0df2fd193f
MD5 1df0aba8072d91c750ef592c5413e597
BLAKE2b-256 a75243c4f2291e835e25ab4e7a08e499aa1ec67bafaa486582d7a606abb4fbcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0930f3c908ee1810367392d6bb958c6c303006731fba510eedf73bda02eb7e32
MD5 fedfbb6b39b83bcc3a7e677bc6b7bba1
BLAKE2b-256 496299dfd932f4260cf8a7db56bdb47223ba325ba3485dcc44f94e2588b8c7f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bac56403c6388c016828d3bfad12ba2add2d8a01b29978fac051134f26a75b68
MD5 ecd98021b754f34e24215d1d35ae8457
BLAKE2b-256 1c7a90b36d064d8f5b0b866578fcc37e9a40db65547531857b54df39669021e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1bb9e14e712c021c6cb71e491b2435ea199bbeed344eb54544a4de12cf922570
MD5 3b878785f4107554fead7a8671d2a5d9
BLAKE2b-256 a0a138f196dab30c9ac30b0251bf7589b62c0c32ecf2a76414d273f0dd8c0b72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2015f0cf53e117cb1560dc14d062d34edc0226ee90ad303a5a74df042c8ba95
MD5 5c8fc6db715ffe694b0a31cf1286fa57
BLAKE2b-256 768c3bb12824e2d3df4be936bf4cc1bedb05d412c71ed63b5cbb438a9de9d1cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b3c48301f4624bf58e4345fd644d8117f9c3ca69cc9ccea33da0fa7dcda6e94
MD5 b0d22fafa38b8e9e881e237c91d8a04c
BLAKE2b-256 1fd5e7b40eb72c0180eb53abf2b7110bde0659e9015d141493699ed107aff441

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6e6973ef4a82b95bffbd894c437c411c217eb2b5b832c00d0ebdbea8bb9a1c7
MD5 8fe2c73fed5fef09f0254ba1d7a335b2
BLAKE2b-256 f47ba605d87d9208481b757f4561497feb20e9d197c88c59909315d933af9ec7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1a556e209ca129352ab42c90e08c7418d82a7feabb68e578f31f18786219468
MD5 42c548f659bc3e52f13583a69f1ee5ef
BLAKE2b-256 fed84895455a5f1880e451965f63f43fe68ce350a4cd853eacd3d1d9a555a8d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94a3096cefa8fe607389272903222be9a7209d3fc608b2e9d461546bfc65dec9
MD5 2b42a19196cbe362c0653b151dfc242d
BLAKE2b-256 73cc2486740e58b47a83303ca649977ed50e75a13b86acce17c9a1ff0172cdcd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34ad74ef24e4b06926bc6fc3bf2e0965d42746435f44ef34e05d515f43b4fb06
MD5 4781566b8e4bfeef015a2840d341af94
BLAKE2b-256 085550183f0d073a49b50bf3e07955f4a2b5169b5af51c5f8e61324f30fa3554

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 723368f415a251df6c7af10bb883a494fd632c12cbe841e41771d7343079a1c8
MD5 574a446a9e12903c74de5a20260c1f16
BLAKE2b-256 f0ff05f08c605448d8f8eff181f52934ec8edaca3e2a1c32df47fbdfd8de4737

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5eb71e425f80ea6ef2d3e679624146f8cfdb24849c4a2557055e8fdb5118139c
MD5 6cf93c3b19d03a282418e00abc3beb96
BLAKE2b-256 0c1ceecb6748cd5d4f005509fdab4ee80c5993710f7744d1ff23a725ec5415d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b1e3114a559097f09596e1349b718f3e481ea86c61ff11a5525226a5a09b589
MD5 5ad22b66cf55280aaa9b493902a21cfe
BLAKE2b-256 d0675ae65aad419a3822fd9dfadc37220453762972d6b0f8bcc3e95ff44e0ecf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8fd1622b2542b07cd8d6d1c23aa1f6bec8b0c633cc0432694ee2bb067a32195c
MD5 7165b6b5f674b44cbf38a4bf7ec2c713
BLAKE2b-256 296f788f41133ad5fc075016ee9e83184872a7c30955f1a3dd16efc4503d3bcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 644d3504bc0bd048c997cd4813b00268219a8b0281e831715355413f51a5431e
MD5 a85692b3ed8897f45962ab886e5935ed
BLAKE2b-256 976f3bd75e14ec200502789b6ef7e4705d1c2421a2f7720c4a6e9a00b956f6b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 396c278b92468ef5817e22f50db3ac567c2b3c96bf9e6487816c2a5797fb35ce
MD5 c63b669dff412c54d0d2840d4286e83c
BLAKE2b-256 5808d38c4528f71f2d5872dfd6a3a0f45ee9c406fc4708975343ad48a7587c8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5cc764944e5a006a74b7fe85d2f80178a2a9fb40dfcaa787a5a8751df36b993
MD5 aa9595f6210ba554b2e1f998f62b2972
BLAKE2b-256 9ef80b33ce0f1581ad29bf4d379b5ca2a5e214457a58fde13dd79460aa995184

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2790be52fd1364a01a29c238705c995643c7386369ed1a20cf5c15834e1f677c
MD5 6284fad39dcd30b4c94179bc4ed9f566
BLAKE2b-256 ba9f73fddac2e0f0a613b8b971c96d7def2e6e82845e0df27f0baac7606d520b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbe7bd440e924fa6def18f4f86841f8d274301ddb7cbf7107415a766d0963dc5
MD5 a00d49a2cbe1af5e7bd0353ecea8d4ef
BLAKE2b-256 4349f0a0068d7b1598a379d3a278d2ccdf2e56109e73e758bde21182afc98137

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51c57d192e8571e900893275ee6c9e60e53c2fddea00789126b468fdc0cead50
MD5 4035b271df34dd55436adc0dc0ac5aba
BLAKE2b-256 1f966fc185365f56b140933a1f3d6c2834a93e0d07944135f57363116ee4663f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9a2ca808c27aac0eea666c9ab77e0b76420d6015bd829bc40364d8676591a14
MD5 0f226c524ac039a009b45e0fb5c9511e
BLAKE2b-256 3f892336dafb3aeaa338d307a86d68195a85510275851ad83d2c728d7e588bcd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 db062c136173553b35e28bda184fa84f32b51edd0b38218e1e8346153a4e3dff
MD5 b7cdbf51d0c5e55b7ca769484dbdc222
BLAKE2b-256 41055b6b8bb7ee6c80f7a99f4add5a0f22ff249cd245b9ce187b06828691805a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12d23f928ab631367d024f602670e31a8d0779d79ac30df1c8176f395b765b42
MD5 b3be39865ba2ed9622c61260a1ca4945
BLAKE2b-256 b0a4581f14448b02a732482ec990b3c6df68c95d078c29de36f05174a9821814

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2e02ee9e65660a0c8f54c06a80bfff282f4bc8c83c8d80f8b38d26132249c9d5
MD5 459bb25028284daf08d9beabb49a9fd5
BLAKE2b-256 3eb10d0284eaf44db06305de80c434774dcbf863854a738b187ff5b405341732

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f75b4ab633ace5d881ac0395a8b9b52b0eba93285020cd9181b2485cc6c42d56
MD5 57cf5d091dbfb6c329a594f65870e32b
BLAKE2b-256 db5cf8e7f43b26ab2bda0475b38b9373c908cb4e769fbe6a1b4b08f6a7ad0956

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplelocalize_download-0.1.2-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.12.1 {"installer":{"name":"uv","version":"0.12.1","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.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e3cd8a0a29814e1f9bca0444dc9b37c8a970cb818a4272cde9e7d1f4d894abf3
MD5 8f058a48327ecc4e52614c37e81df944
BLAKE2b-256 de36b2185308f95efa7a128dd58ae6f8b97ba8e4cd52d8fc12d28969a8f57fc0

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.2 This release

81 files

0.1.1

81 files

0.1.0

92 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page