Skip to main content

Fast Rust-backed DivKit JSON builder with Python bindings

Project description

divkit-rs

Fast Rust-backed DivKit JSON builder with Python bindings.

Drop-in replacement for pydivkit with significant performance improvements.

Installation

pip install divkit-rs

Or build from source:

pip install maturin
cd json-builder/rust
maturin build --release
pip install target/wheels/divkit_rs-*.whl

Quick Start

from divkit_rs import DivText, DivContainer, make_div, make_card
import json

# Simple text element
text = DivText(text="Hello, DivKit!")
print(json.dumps(text.dict(), indent=2))

# Container with children
container = DivContainer(
    items=[
        DivText(text="Title", font_size=24, font_weight="bold"),
        DivText(text="Subtitle", font_size=16),
    ],
)
print(json.dumps(make_div(container), indent=2))

# Full card
card = make_card(
    DivContainer(
        orientation="horizontal",
        items=[
            DivImage(image_url="https://example.com/logo.png", width=48, height=48),
            DivText(text="Welcome!", font_size=18, font_weight="bold"),
        ],
    ),
    card_id="welcome_card",
)
print(json.dumps(card, indent=2))

# JSON Schema generation
schema = DivText.schema()

Features

  • 100+ DivKit entity classes (DivText, DivContainer, DivImage, DivGallery, etc.)
  • dict() / build() — sparse JSON serialization
  • schema(exclude_fields=) — JSON Schema v7 generation
  • make_div(), make_card() — card assembly helpers
  • Expr — DivKit expression validation (@{...})
  • 30+ enum types
  • Template system: Field(), Ref(), related_templates(), template()
  • Full subclassing support with class-level defaults

pydivkit Compatibility

divkit-rs provides a compatibility layer that supports the full pydivkit API:

# Drop-in replacement imports
from divkit_rs import DivText, DivContainer, Field, Ref, Expr
from divkit_rs import make_div, make_card
from divkit_rs import BaseDiv, BaseEntity

Template classes work the same way:

from divkit_rs import DivContainer, DivText, Field, Ref

class MyCard(DivContainer):
    title: str = Field()
    items = [DivText(text=Ref("title"))]

card = MyCard(title="Hello")
templates = {t.template_name: t.template() for t in card.related_templates()}

Performance

Request-level benchmarks (real service, sequential requests):

Endpoint pydivkit p50 divkit-rs p50 Speedup
Simple block (id=1) 28.86 ms 10.94 ms 2.64x
Complex block (id=2) 21.77 ms 17.40 ms 1.25x

License

Apache-2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

divkit_rs-32.39.0.tar.gz (83.0 kB view details)

Uploaded Source

Built Distributions

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

divkit_rs-32.39.0-cp314-cp314-win_amd64.whl (897.4 kB view details)

Uploaded CPython 3.14Windows x86-64

divkit_rs-32.39.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (975.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

divkit_rs-32.39.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (999.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

divkit_rs-32.39.0-cp314-cp314-macosx_11_0_arm64.whl (912.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

divkit_rs-32.39.0-cp314-cp314-macosx_10_12_x86_64.whl (960.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

divkit_rs-32.39.0-cp313-cp313-win_amd64.whl (895.6 kB view details)

Uploaded CPython 3.13Windows x86-64

divkit_rs-32.39.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (974.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

divkit_rs-32.39.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (998.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

divkit_rs-32.39.0-cp313-cp313-macosx_11_0_arm64.whl (911.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

divkit_rs-32.39.0-cp313-cp313-macosx_10_12_x86_64.whl (960.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

divkit_rs-32.39.0-cp312-cp312-win_amd64.whl (896.0 kB view details)

Uploaded CPython 3.12Windows x86-64

divkit_rs-32.39.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (975.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

divkit_rs-32.39.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (998.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

divkit_rs-32.39.0-cp312-cp312-macosx_11_0_arm64.whl (912.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

divkit_rs-32.39.0-cp312-cp312-macosx_10_12_x86_64.whl (960.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

divkit_rs-32.39.0-cp311-cp311-win_amd64.whl (897.8 kB view details)

Uploaded CPython 3.11Windows x86-64

divkit_rs-32.39.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (977.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

divkit_rs-32.39.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

divkit_rs-32.39.0-cp311-cp311-macosx_11_0_arm64.whl (916.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

divkit_rs-32.39.0-cp311-cp311-macosx_10_12_x86_64.whl (963.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

divkit_rs-32.39.0-cp310-cp310-win_amd64.whl (897.5 kB view details)

Uploaded CPython 3.10Windows x86-64

divkit_rs-32.39.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (977.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

divkit_rs-32.39.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

divkit_rs-32.39.0-cp310-cp310-macosx_11_0_arm64.whl (916.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

divkit_rs-32.39.0-cp310-cp310-macosx_10_12_x86_64.whl (964.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file divkit_rs-32.39.0.tar.gz.

File metadata

  • Download URL: divkit_rs-32.39.0.tar.gz
  • Upload date:
  • Size: 83.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for divkit_rs-32.39.0.tar.gz
Algorithm Hash digest
SHA256 509be469170ee35edef24edf55a37d71ffc5e073e871948c68b859af39f9b229
MD5 ef0754775395391a6183a75564a1d3c2
BLAKE2b-256 69597d67931f959fe7684cf11f618002c607a4b6627af74861c20e7000f613b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0.tar.gz:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f542333cbbf11eae964b33c5517f784048d082cefedd37d19a16e64cdd670439
MD5 0a1d13b10527236c71bf82b3ef389c6c
BLAKE2b-256 7d876b7fb5a66c811815dff881a459a0f29e9a87ad58845d403a63e7d0e77f1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp314-cp314-win_amd64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 196ce385f7da607036125c89ddd193292021646aaa99a7cea410c6785aedf6c0
MD5 e8c037f683f5c267bf6fdeac9ee0f536
BLAKE2b-256 70861b8e415724cbb6b54af253b3dae9dadf4a6af5a91cc60a718c778659fb4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 850344098e4ee3582e1e11c1424f648ba6705e69c0e60c8d97716701ac06a895
MD5 706e95fecc4ecff08614023cad935644
BLAKE2b-256 0c2bf8dd897682489197c43bfca54ac2a4ad7619e8f5065905c797fe8f67c470

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f35198bacd9702847f01b28d2b82e92413e1d5b4cd7c3390a5a82ba3e2ccbcb2
MD5 237c5792cdf59fdfeb5043970e2a4710
BLAKE2b-256 03e17e4063c10040d0d1f9c029457b2c5730024a741303aadd95dff97b768157

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae532a54cfd6d8d7fa4a3828160699533b116774853dae904e496f7c3d9901c5
MD5 701d2a456bab44ec0fda6abe1af5af97
BLAKE2b-256 95a93ad0c7240e923c08088ac6e7a59c2506a21d860ae6763180228a6b446c90

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5b1ebda4dc216d260dd21e84507354d1c29aeb7f2a7aa93ef3a177ac4f809280
MD5 bd3a01b478801fafe3cbf9848e96f5f6
BLAKE2b-256 0dc740c15f12add7df054f9a6e31a24acd45224b3f6018781e5a8c63b30fcfd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp313-cp313-win_amd64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2808aac6cbfb6f4eea9eb096fdb97de919f4f4a23837c9acafed4c179b9e2861
MD5 bb984e21186f5a5da2634c90565fc4ab
BLAKE2b-256 4403f50bd351edcb2c506741f8e99dddf4adfe04ba7bd73389d0ca408add311e

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cf9c52c5479e5f99bdf06c047b78092ad43a3ecdb08c8f34131f22ca044872f
MD5 62d329730958a6087b85bd85b38c5775
BLAKE2b-256 fadd5704d5b235d5367165cc45e9d59ce3b867640bc2648da668db5765c02ffa

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14ef82d60280d4a2dff01b16e070beae3ed2eeee083e1e7dc202715e19cc2392
MD5 116af9cdebd5e57f975d9e277b270b57
BLAKE2b-256 f18fe4a00c0450a4ab0f2ba58d7023c9ec8c3857fa7d177ba611a68a1fd0ff92

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fee9444c6f058c917d3fc8aa7145bf2aa48de82622ab0afc933ddb07b776560a
MD5 4de41fecc97f580639664e3435af08bf
BLAKE2b-256 8d974547705375f8f7cbe2642567d4534a81323d733d6f4f6200d2798d6f0f20

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 86ee06bc3c66c1af91bc049f9f15367571c3080ff256a37c6ae5a59eac734d32
MD5 30795b7df972c91c6e9297127c7120b9
BLAKE2b-256 7017b0eca84b1536ac7fc5007aa5012c1d0a4d4bbc1b8d12908a3f791211f435

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp312-cp312-win_amd64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40cd8431db64b99cc8cccfa9399ede6cb060b0d3deb76bb9b1b6b0795c858d04
MD5 81b8a069d183ff1f9ae92f3d5d22eefa
BLAKE2b-256 145d51a952523a3c75c9d70870e5643242d8b258166c37990bd259446ddfc6ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 939d3e06270822c7dafb5f93ccc9f7c12b39d2fe133d6f4a30d19e530f6d718c
MD5 b5b03b9ebfebb6d32e794b1dc50713bf
BLAKE2b-256 d3d021e8b613eea6411b5b57e0ec31a4c0ebe0a11bed71517c869e6b908fc027

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ed641146df061efbb6978165dfbf999f78e78726559b3545d06faf94b080e7d
MD5 24f7f61dfd3d19e6980f17c7bc64a6d1
BLAKE2b-256 f1a978e9c819320a574ee73b6680912d753e3839e4dce01a69c7a11d67a16dc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b75db70d835f58efbcfcf6964242b2a30c096e527f42f6752e7c17a0dc369d6f
MD5 bf00ef9ced99cde9d5e7ab66c88d2abf
BLAKE2b-256 1038eed290156adb9d2be9bf961fc256ec781b265b65b80af090a78354cd629f

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2c486b1f29d22928433a2027a521edd5a746c5f4b0c7d6bc5746d635ca1110cd
MD5 f593d821ef7404f674b18bdd8de1d007
BLAKE2b-256 aa396d60480c7f89e6f7be00079de12c0ef72d2d2d552b9e1224b64fbdb6b7fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp311-cp311-win_amd64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d5630f4effcfeec2b867026546055fca0884f061465a022a42899c44da3f611
MD5 13eb5ea267e5085849eb70409436d3c6
BLAKE2b-256 ce6dfef5d6eab31a6534ded88af4a68e336a073b4843f4cd2e5a803c5d203cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5798c5307f333147444354e3f73ca46302bab83d1bdd9e4cb76962644bd99801
MD5 1c5207dcfcdc469ddab0c164511e6256
BLAKE2b-256 d19e7f7eb205b533e28ffaf510afce45e3dd6b1f3536346abf3c1c9a9eb48ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49d2a74dd9211b5e830348461a5f5d9d1cbe8dee3f292fddb72873f13d7c81fb
MD5 e11b8e2acd74f8252c8ab6c43c02b480
BLAKE2b-256 b3d92055ead4ebdfd444ce8edf65cf76919396ff9555861e88d4c0672adb6b7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7145315bfd43aa0c33f208b4ec564c4c0021de384b8af442ffed644130f63df
MD5 329e3def24e9869d04b8cff104674f39
BLAKE2b-256 638fbdfe66c692768f7e4a459bac07ad76608f1a95f92dd9601646a3fee3d9fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ba2c789db32c09c6e36cab75a59154f694bdea2ae8b1cbc3c46b602ef1a73083
MD5 b6daa07b40ba04f616736f319eb1bb3d
BLAKE2b-256 802abe71bcac193e635f4460df12489c2365959f0f26bd88adcbc73f52f7efd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp310-cp310-win_amd64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02622b7d90939374e12ba2a2890f3f0dafecc1594744645e256d6cec80520b22
MD5 8d32cea668ed73f78944faf60867fc5c
BLAKE2b-256 20cc0e99b108bca96a6eb4a40f7e50912d4ec6ffda18472b547055eac6f2ecbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 163872fcae8854624f26a31022419606a24c13d2820baa176c2382063c4cc320
MD5 cfb2a9332bd742e5d54e9beeda43723e
BLAKE2b-256 cb26904bd887adbbf10be6e595d87f02af28fa7e14d5b0dccf16a56e0ea68c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2fda98ae21460ac05153c3d32a9979fb67c1fbe683270143c9575221f584171
MD5 2a50fa11deea38fe4b92b7301628f6fa
BLAKE2b-256 8d9c1f9ea1c196040ca40a555abf0ffe17ec1a8685c49c533877a5f0b0f58642

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file divkit_rs-32.39.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for divkit_rs-32.39.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36901d8f0698389971918ad7e2e5e8a636977f4f1d44a6675c5dab00254247cb
MD5 f52e7f83f38b3328a91be0e8bc5b1905
BLAKE2b-256 610d35efbd770b6dede9c94b3b291560ae8eaedcc8bfb01338c7725954595918

See more details on using hashes here.

Provenance

The following attestation bundles were made for divkit_rs-32.39.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: divkit-rs.yml on Pavkazzz/divkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page