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.

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 latest checked-in formal comparison uses a declared shared-stock endpoint. RENKIN and AiZynthFinder reached the same route count in the published equal-condition comparison; universal CASP superiority is not proven. Success rate, speed, stock definition, validation, and route quality must be reported separately.

See the benchmark documentation for the full measurements, methodology, confidence intervals, and limitations.

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;
  • benchmark claims must name the dataset, stock, versions, and endpoint.

License

MIT. See LICENSE.

Release files for renkin 1.0.6

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.6
File Size Uploaded
renkin-1.0.6.tar.gz 1.5 MB Details

Built distributions (wheels)

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

Total release size: 40.3 MB

Release files / renkin-1.0.6.tar.gz

Download URL renkin-1.0.6.tar.gz
Size 1.5 MB
Tags Source
SHA-256 checksum
How to use checksums
96e1d31a5adf671ded160dd9dc66761e87013b3cdc32c17078cc4b26ec1f1975
BLAKE2b-256 checksum
How to use checksums
4bda57f8dcf67dbeeba2616143bacebcb79aa09b45a48970fdaf9a3a41b91bfb
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.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.6-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
0c18fe3e3bef58a761a07cba0734b178360c97e6d4c2707d47bcadbe6c05c36a
BLAKE2b-256 checksum
How to use checksums
69cb37a92f5991d9fe32ccdaec91cc9f54d39e490e6185aa03d21fb1716ee5bd
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.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.6-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
9027ace71cecd0f73a7875b27e0693b376291cb8341e4963a69755b10c30f57c
BLAKE2b-256 checksum
How to use checksums
ca804efba606e249609658a5e145fd2e6983961369fd8f1f7cc98ef229b2d292
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.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.6-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
2ff8a6f68f2a927ddc2ec1f059bab94688148255abe4704fe6869e4b50dd1cf3
BLAKE2b-256 checksum
How to use checksums
0fe26f9ce2f23ac30954ee39b25d5e36bc60d58947579acf9ac1e265883b1982
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.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.6-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
eb3e461924e037200e661eb40792c8acec68d4bbc1027b9b7443a7a09d55465c
BLAKE2b-256 checksum
How to use checksums
4c08d2cd77aa6b54a3248bec90e28bb1f95b6e77612016e047d74da10b43bc70
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.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.6-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
c56e75f38021166c326695743266526509a5090c9ad55a65ad2c8d85361e6998
BLAKE2b-256 checksum
How to use checksums
3278ab06176b9537fb803b282f26b36aa8f53d3a14c06cffdd212c340098af35
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.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.6-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
4b2db18590ed96297c6cdb7f6550e189979f10722e4dccb0e5c419ef8c595e9d
BLAKE2b-256 checksum
How to use checksums
1a3e64f110259b8617e47167bc72c5abfca8e31313a91536c018fd4b8c84cf23
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.6-cp314-cp314-win_amd64.whl

Download URL renkin-1.0.6-cp314-cp314-win_amd64.whl
Size 1.3 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
b8f98405e51c7f44a1c3ad3d799d01431b79318340f966af76be691a5e3e5bdd
BLAKE2b-256 checksum
How to use checksums
5e4fab7de9da040fbd2181ca51d970df13243cf2c421c5f865a9910617f06eae
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.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.6-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
21fc08ec5c081483d2329890dda04f99e14417cedb0a40cdab1b09ee979e47b4
BLAKE2b-256 checksum
How to use checksums
c4191d24117f28dc1ddf2aeb6e754ed0dc1bb37a4b37da5bb1329d16e7e879b1
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.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.6-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
2810dabc5f520983f641dbc4f1f27ad8b8abc63ebe672f0606b24f1e14fd6842
BLAKE2b-256 checksum
How to use checksums
e9dbc7b64ba8df4435043b8dd98c585f255c870bf767713cb3bdb7dd114bd60f
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.6-cp314-cp314-macosx_11_0_arm64.whl

Download URL renkin-1.0.6-cp314-cp314-macosx_11_0_arm64.whl
Size 1.3 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2301462805927e9d07894c5fbe1bbc38d47f744516cd97ed39465291ce87136d
BLAKE2b-256 checksum
How to use checksums
087383dbe9305f82f45a5e802a08e629d22f52aaa198bf97acc760afcac22762
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.6-cp313-cp313-win_amd64.whl

Download URL renkin-1.0.6-cp313-cp313-win_amd64.whl
Size 1.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
70f49c4a547b276604303de497d99f4db4c68bd1ba88c2ef1798422fd148156f
BLAKE2b-256 checksum
How to use checksums
063d694cb9ab4f0f14a850d3459644d4ff39163b459f2001d0ec78001e9d9e01
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.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.6-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
09cfad8bd97faee679d8de87dc83db5a685ae9afcd398d25e130b6a64b8c8369
BLAKE2b-256 checksum
How to use checksums
36678b8cdc2e105b547256a916c33759919f60b042485ca0945c5e870b5c89b8
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.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.6-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
278aab527602cd1e96367da83a2fcd56dadbaa97c552dce881f476d8457eccb0
BLAKE2b-256 checksum
How to use checksums
39f7472e8aefcb584913bc275bf473d3d46531ca2eb88b5a20e6246822033eef
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.6-cp313-cp313-macosx_11_0_arm64.whl

Download URL renkin-1.0.6-cp313-cp313-macosx_11_0_arm64.whl
Size 1.3 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
48878ad11dfd7d0831aa861fa0498db993571ddf240c903525636be0368bb93c
BLAKE2b-256 checksum
How to use checksums
11fa222074e07aec9f88e4935bb7ddebca8ba0b7e6c84f9fed0ca2981c1a013a
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.6-cp312-cp312-win_amd64.whl

Download URL renkin-1.0.6-cp312-cp312-win_amd64.whl
Size 1.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
c6bdb0c3bf81389add0dd9c837678c2f0797e02b5d93934f4f0f5224c70b2dcb
BLAKE2b-256 checksum
How to use checksums
778eba728a07c22145a18ec21b7840a045e99300c52ee351ef573b426acbba3c
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.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.6-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
43822b0d6334203a0b9cdda7013b66f0bbfe6b20d3f514d234ed14976d529e07
BLAKE2b-256 checksum
How to use checksums
a6d10fd2ebc8a7c2ecf0f25753cb21a61918ce9b4dcbddb3e44f6f7d36c0b8d0
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.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.6-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
56ef6a9b1ede06b991ff863aa95f46ad108d3448694467c086b3d9676cc4384e
BLAKE2b-256 checksum
How to use checksums
25026cf81c11fb08a37df8b320e2a151ad5eee9a605daf541e23a180ae042327
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.6-cp312-cp312-macosx_11_0_arm64.whl

Download URL renkin-1.0.6-cp312-cp312-macosx_11_0_arm64.whl
Size 1.3 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
898c10e942bff6e0855b54fc620407576882272436bd025b802ad5f4892d663b
BLAKE2b-256 checksum
How to use checksums
aec482d23734a40e1d4bab5fe289bf67e7d7db15d44737607f2423ed9c09f56d
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.6-cp311-cp311-win_amd64.whl

Download URL renkin-1.0.6-cp311-cp311-win_amd64.whl
Size 1.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
72911c711927ad2b1f7b11b06197935ab2617f77870deb51c5df8fb7363b2e7f
BLAKE2b-256 checksum
How to use checksums
ac30aa4a776bdb3e4e2c7fff8d2c11b8bfe40a24b76675e5f210ddc6d606c142
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.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.6-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
1168b3ec7dd6fc111155e9f99cfc1beacef7280652eab44b174f7f3952a98099
BLAKE2b-256 checksum
How to use checksums
90cb1b47c4f3111e7182b19b3b253b94d2fad96542462ff285002caecc799362
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.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.6-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
5f1e820257a2a8f327b9cc66bbf7b4c2a136a1034d9c25b80565f9633f5e5a23
BLAKE2b-256 checksum
How to use checksums
8228b8d39bbb35565142dc234fe915cafa1e555cfd5c11c21b9d37b11ed2fbcb
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.6-cp311-cp311-macosx_11_0_arm64.whl

Download URL renkin-1.0.6-cp311-cp311-macosx_11_0_arm64.whl
Size 1.3 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a1db3ce3edc36d74d1ba9ae54faebed283c69681d5a7f4d41e3672223701e9b1
BLAKE2b-256 checksum
How to use checksums
af75044eaab02f08584415c4fc6a8d1bcf1ed16ed13f89dabede81f80071c894
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.6-cp310-cp310-win_amd64.whl

Download URL renkin-1.0.6-cp310-cp310-win_amd64.whl
Size 1.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
d31545ddcbe459c5174b83d9c4e22c5cc650088c0744415c46831e0c1078af4b
BLAKE2b-256 checksum
How to use checksums
cd42754bd2e22115a1e5ca572143aa2c96e1a952af7054af8d4dcd62710e8009
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.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.6-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
dde8f558d712c77f6140e01e46b86090553f1ea097ac9eeb85a489d3aa9c8858
BLAKE2b-256 checksum
How to use checksums
6c5f48f8a648f94565f16d2b3b0a0378979d6035ec58de245d6839c085305074
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.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.6-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
f1be86d1c1f2e6971e0753b55eeadb1fea732892215d02be1844b9d40e04d9df
BLAKE2b-256 checksum
How to use checksums
95296d703d5d34512423eda5d1b90c9023a3d0baacddcced7c5fcb6eb677930b
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.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL renkin-1.0.6-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
c5189ef28e3840e9e23ffdcfcac92b43fbefde6b16b7cfea32e57b34db016055
BLAKE2b-256 checksum
How to use checksums
ba1c9ed1e4f47fcac21f3c4a5321ae8ee9ce677ca15cb87227ddb1d876f18b16
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.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.6-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
c5ec8f3eb0f3d2928acbd95c4290ff544426178dcfe3e9f0b1a0ca272ddbbcef
BLAKE2b-256 checksum
How to use checksums
524617b02cfdaf8169d1607e0e18fb24a357794cc0ca46b0f405ca159a747fb9
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.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL renkin-1.0.6-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
be3286f404cf7d5d61be2876d1bebef96c9979a25dcadee775ca375b97819b44
BLAKE2b-256 checksum
How to use checksums
4685ebc208b4f4ba5b77813f2aac025968def5d30e0157582b93af6479b38333
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

1.0.8

29 release files

1.0.7

29 release files

This release

1.0.6 This release

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