Skip to main content

RENKIN

Retrosynthesis planning and route auditing in Rust.

CI Crates.io PyPI License: MIT

Documentation · Playground · 日本語版 · 中文

RENKIN has two uses:

  • Planner: search retrosynthetic routes from a target molecule to building blocks.
  • Bridge: audit routes from RENKIN, AiZynthFinder, Syntheseus, or SynPlanner.

Auditing is local and reproducible. Reports include structural checks, stock coverage, forward replay, provenance, and a verifiable audit manifest.

Current release: v1.0.9. Public inputs are validated before execution; WASM applies bounded search limits, and MCP numeric and element-filter arguments fail closed when invalid. Standard MCP search also accepts an optional cooperative timeout_secs budget.

The audit and private-stock policy layers are split into deterministic, testable steps so their report schema and policy behavior remain stable.

Install

pip install renkin
cargo add renkin
npm install renkin

For Syntheseus support:

pip install 'renkin[syntheseus]'

Audit a route

import json
import renkin

report = json.loads(
    renkin.audit_route(open("trees.json").read(), format="aizynthfinder")
)
print(report["summary"])

Use format="syntheseus", format="synplanner", or format="renkin" for other supported route formats. The same audit pipeline is used for every source.

renkin audit-route route.json --format auto --output json

Optional private stock and policy checks remain local:

renkin audit-route route.json \
  --private-stock private-vendors.csv \
  --stock-policy private-policy.json --output json

See the audit guide, private stock policy, and route interchange.

Plan a route

import json
import renkin

result = json.loads(renkin.find_routes(
    target="CC(=O)Oc1ccccc1C(=O)O",  # aspirin
    depth=5,
    max_routes=3,
))

for route in result["routes"]:
    for step in route["steps"]:
        print(step["target"], "→", " + ".join(step["precursors"]))

CLI:

cargo run --release -- \
  --target "CC(=O)Oc1ccccc1C(=O)O" \
  --depth 5 --beam-width 100 --format tree

The planner uses A*/AND-OR search, template indexing, beam limits, stock-aware scoring, and forward validation. See the API documentation and retrosynthesis guide.

The following counts describe this checkout and may be invalidated by future changes. The default planner includes 24 hand-crafted rules. The repository stock file contains 402 compounds; installed users without that file use a compiled-in 152-compound fallback. Additional extracted templates can be supplied with --templates.

Components

Component Purpose
renkin Planner, CLI, Python bindings, and WASM module
renkin-forward Forward prediction, enumeration, hints, and validation
renkin-kg Reaction knowledge-graph export
renkin-mcp Local MCP server for search and audit

The chemistry layer is chematic, with no C/C++ dependency in the core.

MCP

cargo run --release --bin renkin-mcp

The MCP server communicates over stdio and exposes search, validation, explanation, constraints, diagnostics, and audit receipts. See the MCP guide.

Benchmark status

The registered Phase 55 shared-stock, shared-budget TEST comparison completed 690 targets: RENKIN found 481 strict routes (69.71%) and AiZynthFinder 4.4.1 found 32 (4.64%). The paired coverage difference was +65.07 percentage points (95% CI +61.45 to +68.55). This is evidence only for the pinned cohort, assets, stock, and budget; it is neither a universal CASP claim nor evidence of laboratory success. Peak-RSS and time-to-first-route receipts remain open, so it is not a whole-cohort performance claim.

See the benchmark documentation for protocol, artifacts, and claim boundaries.

Development

cargo test --workspace
cargo clippy --workspace --all-targets -- -D warnings
cargo fmt --all -- --check

Read AGENTS.md, tasks/lessons.md, and the roadmap before changing the chemistry or search core.

Important boundaries:

  • stock identity is exact standardized canonical-SMILES membership;
  • route success is not experimental success;
  • external model output is evidence or candidates, not automatic validity;
  • comparison manifests bind the tool, configuration, input files, and checked worktree state so resumed runs cannot silently mix configurations;
  • benchmark claims must name the dataset, stock, versions, and endpoint.

License

MIT. See LICENSE.

Release files for renkin 1.0.9

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for renkin 1.0.9
File Size Uploaded
renkin-1.0.9.tar.gz 1.4 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for renkin 1.0.9
File
renkin-1.0.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
renkin-1.0.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
renkin-1.0.9-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Details
renkin-1.0.9-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64 Details
renkin-1.0.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
renkin-1.0.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
renkin-1.0.9-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
renkin-1.0.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
renkin-1.0.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
renkin-1.0.9-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
renkin-1.0.9-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
renkin-1.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
renkin-1.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
renkin-1.0.9-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
renkin-1.0.9-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
renkin-1.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
renkin-1.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
renkin-1.0.9-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
renkin-1.0.9-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
renkin-1.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
renkin-1.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
renkin-1.0.9-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
renkin-1.0.9-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
renkin-1.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
renkin-1.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
renkin-1.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
renkin-1.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
renkin-1.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details

Total release size: 44.4 MB

Release files / renkin-1.0.9.tar.gz

Download URL renkin-1.0.9.tar.gz
Size 1.4 MB
Tags Source
SHA-256 checksum
How to use checksums
d81c404f3c773a3c0eeee31e0d93fbf90454d93ae28133ba5d6ae064fccbdc87
BLAKE2b-256 checksum
How to use checksums
d138e15c2c4ab81ef17d29c588b18764e0dad75a6417e718b512388b86f4a0c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
7b121b418521922b63c070eeb0c0527f90f8c6bdb8d82000e4194dd5df4eed6c
BLAKE2b-256 checksum
How to use checksums
a5bb9acac1a6c5b0a14e824497e8873cda045bb32c3ad7ec38d9c00f8be3796f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
1a7ffb2dfc20b4b1cec942542e78a815bcb256c1fab5fb063c41c5346c8f8562
BLAKE2b-256 checksum
How to use checksums
9bb1a2906097cb067816c4af6a9fca06dde09865f0f680a9015684a766f7fbb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.9-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
309446311e45685665d350f669d718973d493d3e9565e677489cbc63fadee5ff
BLAKE2b-256 checksum
How to use checksums
08b1a01d2f0292729d00b46cb9323964d2701fb5d06c58f3cec4394dc97fca15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.9-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d3a80cdd4c8e9cd59f0657d78b3c895246ea1fbc2c4e88ecb18ae380bd6d8a0e
BLAKE2b-256 checksum
How to use checksums
ed945a8ffc3d71d4e3141232862aaf11305c866fe1eb92c84cc177e966f6cfb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
cf4af7cb55a629ec165b31f21e874ae00f897617556d025f234b08a47f4b5c69
BLAKE2b-256 checksum
How to use checksums
5b7c391f72d53fbcb56b351afdbb2cce01f2a37e72b6daacb59468fd445bde79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c36325557c161c8c6784c79ea2fbf7c3a6dd05f7057d22f3511e5407cec9d7a8
BLAKE2b-256 checksum
How to use checksums
791961063c887e2f6ac955fd68b6ec79ed2e7592392b1b3bd931fda5743c3f5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp314-cp314-win_amd64.whl

Download URL renkin-1.0.9-cp314-cp314-win_amd64.whl
Size 1.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
638df0de3ca85d7859fe1fc23354d26d23b11b4346ce7397fefefa254b5c3bd0
BLAKE2b-256 checksum
How to use checksums
d0f641cb66cf94d37814e9ded9e1e1e6c4a468775f130a9c713a4923a1401501
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
433daaebeea4c1f91a6fd0d7f5f12a939782a6ee36ec90d2073a7659a0219a17
BLAKE2b-256 checksum
How to use checksums
cb05608f7d68738b2afdabd80a484849a2f815f425a0b6fd7e145e936cbb23b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
34c68d90fe2260e4d5c5f985570d729a78c49fd8e4c58ba1a6d969c48ba1dd5e
BLAKE2b-256 checksum
How to use checksums
559bcf314784376c178402dd379f3f0ec331336a3a4ae165cddba7d5c661ec16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp314-cp314-macosx_11_0_arm64.whl

Download URL renkin-1.0.9-cp314-cp314-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6831ce95e123308c9e5baab3e675750ecbf8df8128b073b7ff72a052f6342251
BLAKE2b-256 checksum
How to use checksums
cf3d1dcc46a4636f0f58a4f226807df55bc667044273f64d1080848d79dfc342
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp313-cp313-win_amd64.whl

Download URL renkin-1.0.9-cp313-cp313-win_amd64.whl
Size 1.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
2fd7964500a6154c39312cebe4c541b7f352ff2db8ed679162b0629168cb95c3
BLAKE2b-256 checksum
How to use checksums
16687ebb08352f9d00d6f71e9e79ed2e746096c9de1b54eb3401d13463f5664e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a59e3138d447139ef3c6e4d83dda72f45c8b1e8bd1c9675d65eb5b6d97b94524
BLAKE2b-256 checksum
How to use checksums
3febea76f70c60bd050b4a456810c9bb466fbfd6c187061bc42d1810387e3a00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
877dec93c5750d55bd7aabceeb1cee7e372b64d515487ad83fea7df74cf5e0fb
BLAKE2b-256 checksum
How to use checksums
68f0d9b1d6d3c6e9bf6c4f1c2071255dcaf39ee8d8562aa2f575dcdc9f2a3ab5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp313-cp313-macosx_11_0_arm64.whl

Download URL renkin-1.0.9-cp313-cp313-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b4700d73a08fd4f9dfee937dae2645b3274b6b77faf60e03846b30bb06ba1ffe
BLAKE2b-256 checksum
How to use checksums
3d8871fef733ae5cccee5d5979d0a7a47477ffa8631c619794dedaa8c561e2a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp312-cp312-win_amd64.whl

Download URL renkin-1.0.9-cp312-cp312-win_amd64.whl
Size 1.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
bc2a91c89fb22ed43caa3a796da06d0151a60d53cfcd5ede674723a35e07767b
BLAKE2b-256 checksum
How to use checksums
64aeaf2f9fb617de84f23880f34bff748e3e6723fd56dda07c6f65e59fcdd52d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c004b38927e0298ba90e7c0e718ccf29401840973b3f26458d79814f6f4dd809
BLAKE2b-256 checksum
How to use checksums
34263d0b258c9cbb3c6665dd16f14b0e63d33946910a9e1f5abb797c8f118752
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
905b80561bcdbeea379c2c95e94cd09d888367281ba3b26532595e4e1593d656
BLAKE2b-256 checksum
How to use checksums
62999cc9b82b0c0364c765213a284ce5d2be1ad9573caca159ad3ab9cb19abb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp312-cp312-macosx_11_0_arm64.whl

Download URL renkin-1.0.9-cp312-cp312-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
52653df295529249f783c7dc9502985e3a47eff99b482332c26ac96ed6b49ee0
BLAKE2b-256 checksum
How to use checksums
93eb0f93dab9478dfdaf0801b54b80f2d90449d718f00d87a64e62618649a398
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp311-cp311-win_amd64.whl

Download URL renkin-1.0.9-cp311-cp311-win_amd64.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
1f94f753dc8aa057c80b54a56dff20820c6975cadca05e56508fbc772095ccf2
BLAKE2b-256 checksum
How to use checksums
fdd74c5ea5b3a1085836aafcceb1fcd7e8265b9a80d07a8273535ac641b99780
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1e9695ab232bbb7dd6dc7b28b5c73d57c408558abd863197bc07ed18c0691f0d
BLAKE2b-256 checksum
How to use checksums
23e81c782643719bcbc035df92356680dbabf9c2918e733a9a03e9d3124b8b44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8521d0471bbb564eb5e75d1b98bd89f867b889e5278280180da135db0b0c2f8e
BLAKE2b-256 checksum
How to use checksums
3c9de79962202ab19e7391aa6c1d133b2f7809a7ec7634ba91e2b1a4c4c21dfb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp311-cp311-macosx_11_0_arm64.whl

Download URL renkin-1.0.9-cp311-cp311-macosx_11_0_arm64.whl
Size 1.5 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
734d653f797a12df2d6ef27b71ee32f82b43317372533bf230841a4e3028a8ea
BLAKE2b-256 checksum
How to use checksums
9076f88d5e6f97afcb309c4eeac9b77f4051645ac44664faa1ff45dc61719964
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp310-cp310-win_amd64.whl

Download URL renkin-1.0.9-cp310-cp310-win_amd64.whl
Size 1.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
704dbf1422058a1348293afd6746a0570bbdcca7ae7ef01fcb4e7bb1f781ed02
BLAKE2b-256 checksum
How to use checksums
ff8e5fcf8da534f1245534b290d1b555d7efc89077c909873e551518827ec005
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c7153d77f533764e319c079a0e32c3972d5c36e5cb57f93ea17cf1a652ef8e96
BLAKE2b-256 checksum
How to use checksums
ffdc8b3272ce95c79d9ff2ebc8ee0e120a0d9db176e8e49830fd264893ecb075
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
eba13b4f0a53ce7c88b7bdf04bd5009ce817d436cdfc78b9cd276b907e90afd1
BLAKE2b-256 checksum
How to use checksums
0aee6596be663f942a4e833764374c2fb07a216a910b02c6891d34ad5548e7cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.6 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0da3dca139bf56b7db67e0cf5fc753b5255f9180efe3f1c6669b4f8555ecbf45
BLAKE2b-256 checksum
How to use checksums
880f514786c3ebc4483563379a522222ec706dfd5f81099dce172026fe4fa007
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
835c770f1ded3d97a4975416f05544e30f8bcdbf15c3cc82765a9cd274bd6df3
BLAKE2b-256 checksum
How to use checksums
949ecf6a5876df57090b240533bad467e8935041bdaf7b3a90eb584a54b0831d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / renkin-1.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.5 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
49bcdd5a3d8fccfec31d9836dbee99e2ff0877ca2580da5fae28c8055646508f
BLAKE2b-256 checksum
How to use checksums
8231cdcfed263d5c06fcbe12c920b81a1798e0d7cc5350fcb117b02b6da7e583
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release history Release notifications | RSS feed

This release

1.0.9 This release

29 release files

1.0.8

29 release files

1.0.7

29 release files

1.0.6

29 release files

0.1.0

29 release 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