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.8. 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.8

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.8
File Size Uploaded
renkin-1.0.8.tar.gz 1.4 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for renkin 1.0.8
File
renkin-1.0.8-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.8-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.8-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.8-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.8-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.8-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.8-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
renkin-1.0.8-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.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
renkin-1.0.8-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
renkin-1.0.8-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
renkin-1.0.8-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.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
renkin-1.0.8-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
renkin-1.0.8-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
renkin-1.0.8-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.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
renkin-1.0.8-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
renkin-1.0.8-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
renkin-1.0.8-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.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
renkin-1.0.8-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
renkin-1.0.8-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
renkin-1.0.8-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.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
renkin-1.0.8-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.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
renkin-1.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details

Total release size: 41.6 MB

Release files / renkin-1.0.8.tar.gz

Download URL renkin-1.0.8.tar.gz
Size 1.4 MB
Tags Source
SHA-256 checksum
How to use checksums
a575fc534df95f8d5824280c27a381dc2783789b270274e48d94cb5880c4be5e
BLAKE2b-256 checksum
How to use checksums
e276c08bd9147df0a94af077abd706817d1e5db8dca9f0ec36eed66e3286f1a4
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.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
596307dbe16021c8cbeec607f337faa23a288e910c8e50ed6d70a28b98cd6fb8
BLAKE2b-256 checksum
How to use checksums
e00396a19764d6b9861ef44e780d68a1d7bf3ba7b9ded87981b6dd56714f837e
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.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.4 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
4c1d70b82fe65445732f77588228578a98ca18164729b360708a198fdfe7e39a
BLAKE2b-256 checksum
How to use checksums
561d86c77ee5950432f0291574166c5c3dd9d9389cd5f5a01e18ee18deb4a91d
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.8-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.8-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
03839479cbac0e87b716fbd92467b29b8cb19f01ef5825486e3d81470ca95b87
BLAKE2b-256 checksum
How to use checksums
b7cee2e8c7e05275e1dd7eeaddd1168571c8b7239e239365672dc37dba7ee86a
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.8-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.8-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9e8d7196da0c0448deaee34a7c53498164c56f6d15831c015909df3e78fb00c7
BLAKE2b-256 checksum
How to use checksums
f78d667cecbe967a5b295489a3b9188d3e91b3ea8b0c5d807f7b330d3c06cff5
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.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fd9f9203d8d6467392d67f6b7738bd2df9cefcf6dc9a515d80606be0e7ad5077
BLAKE2b-256 checksum
How to use checksums
ccb4fb36543fefc4181c3c862fea262d49864e86bfd407eaad2bea80dfcce57b
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.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5b0507167ffffb5d2812eebe85da878ca53892c9baad87498d06328a2ef7c57b
BLAKE2b-256 checksum
How to use checksums
bcba8a17492b04d32dc75b66974ddcfa2b983edca2e682829b4c59b817c64ea6
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.8-cp314-cp314-win_amd64.whl

Download URL renkin-1.0.8-cp314-cp314-win_amd64.whl
Size 1.3 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
99a47e1283e33afaed81486ef68a3f11bcaf538b477808ab4c0525fca9103dcf
BLAKE2b-256 checksum
How to use checksums
3337f94b8c5450614425d37e6dd724d195bc2cbefc4e3f2f27c62fe1ea4e6bb9
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.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b08dbb1f5ef2a30ee9655629f8a216f7ab252232e6ad0d5901d3a0ec8cb2b870
BLAKE2b-256 checksum
How to use checksums
955dcb17d4a4694b31c12c3121045fe505f3cefdab67f1e0b4af28b03f1c523a
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.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.4 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9bbf3b56939ca9521f4b11bfce1dfce046e79c1a1b248b91816dd4b1c70f5f45
BLAKE2b-256 checksum
How to use checksums
28277f863317fb7384c277c86c6a786f6188c54a99fd699f2b6f93901a175f50
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.8-cp314-cp314-macosx_11_0_arm64.whl

Download URL renkin-1.0.8-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
ca462de52a11c60fe6b012fda3468540be960830933d2f7fcd2ce2112494e179
BLAKE2b-256 checksum
How to use checksums
a0cafcb7d3969edc716e616bcacb903700a7b22cfd05f25a0dc68bb887f065b6
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.8-cp313-cp313-win_amd64.whl

Download URL renkin-1.0.8-cp313-cp313-win_amd64.whl
Size 1.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
73d1408f17211db25c6139eba95a6572885d89a7934622244fa3758f17b20805
BLAKE2b-256 checksum
How to use checksums
39b2c2f918694b0731abadaebed24649b426ba760ded2aa9613b9b89692bc5f0
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.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3fbf2bf444499a3a11a04893fe4779add3db40e6597b0c78159eb273c2574251
BLAKE2b-256 checksum
How to use checksums
75cf40ee3be9a37816d7aef1dd1673b74ec49f5d00abdb4a3fa639d7906714ac
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.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.4 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
83a050fa4714558f70766b8a0714d0ec8a13cd3b48a8dab2449411ef18159178
BLAKE2b-256 checksum
How to use checksums
7811fb8df2bee9ecf9c383756f734b0f3518aa7dfe86e40e52867a6439686c16
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.8-cp313-cp313-macosx_11_0_arm64.whl

Download URL renkin-1.0.8-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
6b2a6636faf8cf9a465bf6d9c48596f4e56a937ef2ac11b40dd95e5179742221
BLAKE2b-256 checksum
How to use checksums
c7b9e324c0a588f947ce3101a554438e7880109a010e2446f7a096caa28064f8
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.8-cp312-cp312-win_amd64.whl

Download URL renkin-1.0.8-cp312-cp312-win_amd64.whl
Size 1.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
179ebe60dfeb37f8acb73678e97c38c67e27965ef36b065c329187be44489c6e
BLAKE2b-256 checksum
How to use checksums
a723b4106f5d402fd04418c4cf415bae5d7947178bf2116fd9d0f520eb0ffce2
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.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
953434ce87a7fd0b27153ce2118a7b9043a499daeb5bfe103e76cc3f9dfb68bc
BLAKE2b-256 checksum
How to use checksums
93435b44341988fdbff2257ee5cf593616474494fa68c6e5fdd8085e41d72045
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.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.4 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d141505bc5aa904ef127da9360c3e734b05a558b218ca4bc2e2c0aeca0e30919
BLAKE2b-256 checksum
How to use checksums
21673974c0a17e48086ebdb2d000a995229d6b2e8fcc05d6f141a7a2b46013dc
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.8-cp312-cp312-macosx_11_0_arm64.whl

Download URL renkin-1.0.8-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
5cb9fbd16b57ab3f64c6dfd066e0b1985561cbf839688904334944be266916da
BLAKE2b-256 checksum
How to use checksums
766aa954a235c5315872a86d98f9ea6d2cd960d3036e86eed5ee871ca626caa5
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.8-cp311-cp311-win_amd64.whl

Download URL renkin-1.0.8-cp311-cp311-win_amd64.whl
Size 1.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
f59ccade6b0ec65c1d4da8e4944ac7c18e808ca096252c7e41620bab7f487b41
BLAKE2b-256 checksum
How to use checksums
ad76614cf6e6dc27a4833ece19ee9bd574050d697be591095b24ae82104621cd
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.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ca5b2233c6359a57fd563f723ded340233d0efde0edc07dc439a93f13b6e96b3
BLAKE2b-256 checksum
How to use checksums
58919ed40bd221d2fd8f8958eb453dbf5dc752a68818e7924f2fddc3d50f0270
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.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.4 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d3292765419d4613f109fbe36d40b2627ad7229d8a14c3e6b6a675fef58f4f28
BLAKE2b-256 checksum
How to use checksums
6a0c867d7e3be65ad119078639a4e40fd7686bee5e934d12cd0f1dc0876377bb
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.8-cp311-cp311-macosx_11_0_arm64.whl

Download URL renkin-1.0.8-cp311-cp311-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ec2bdbd994fc54fd928aaa5f841de00ca1cc2691753d906025baadcfa05d93f4
BLAKE2b-256 checksum
How to use checksums
f518095b86611d95ceaf57d3875d9c7c1056c3bdfa80c571307fea8bdd879220
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.8-cp310-cp310-win_amd64.whl

Download URL renkin-1.0.8-cp310-cp310-win_amd64.whl
Size 1.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
ee41becbc5101c155ed20b45e0f7591b302b9aa5b557d8fea24013320cda27f8
BLAKE2b-256 checksum
How to use checksums
9f658d48bfe231dff528ab6b29832287414e8c78cd0ab61f4b6b7204d741d514
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.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d91b9344090570e97ec33acac4365ab02a10e7390b180543de4052e6b151846e
BLAKE2b-256 checksum
How to use checksums
03c894fe46f6bbf61222fec4cb8585bab0af3e5ec59a7dc6aef08f7a90b3117b
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.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.4 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
649d0ee1c96447695e3216ccb292d92219f7d1940cb7c8c5cfa4ecbd1892959d
BLAKE2b-256 checksum
How to use checksums
2f5063474dfe04f042b2842af3dd0da411e33862a2f15739a9b22daa840072f1
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.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.5 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c4d1d5c88284b0f966b90aae0867ed9db9cd6292f15c3f0165783a9649f7d45b
BLAKE2b-256 checksum
How to use checksums
60ad4976e66419ce2e93049ed7ffb344034ee5c423bf108ea645d12dd8af4c52
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.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.4 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8d132960e34f96f20910704c6cde629778bba156b5285dee5d82a031d86a8c3b
BLAKE2b-256 checksum
How to use checksums
ff9c59089f228c6f081cdb44ddec438d7a6ca8fcfc9f7aa7d81b63922f05bd25
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.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.4 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
774df9192ee7ecc94df495ea6cb024eca24539053f965770661be8ad675e34cb
BLAKE2b-256 checksum
How to use checksums
eae556bfa756ab7bb76795a639e4f0900043dc563e33e1fbedc09a367548da89
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

1.0.9

29 release files

This release

1.0.8 This release

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