Skip to main content

Stupidly fast Kelly Criterion calculator, in C++

Project description

Kelzer

Based on: Kelly, J. L., Jr. (1956). "A New Interpretation of Information Rate." Bell System Technical Journal, 35(4), 917–926. doi:10.1002/j.1538-7305.1956.tb03809.x

A stupidly fast, native C++ Python extension implementing the Kelly Criterion for optimal bet (but lets call them 'investments' instead) sizing.

Install

pip install kelzer

Usage

import kelzer

kelzer.fraction(win_prob, decimal_odds, multiplier=1.0, decimals=4)

Returns the optimal fraction of bankroll to wager.

Parameter Type Required Default Description
win_prob float yes Probability of winning, in (0, 1)
decimal_odds float yes Decimal odds, must be > 1
multiplier float no 1.0 Fraction of Kelly to apply, in (0, 1]
decimals int no 4 Decimal places to round result to (0–15)

Examples

import kelzer

# Full Kelly — 60% chance at 2.0 odds
kelzer.fraction(0.6, 2.0)
# 0.2

# Quarter Kelly
kelzer.fraction(0.6, 2.0, multiplier=0.25)
# 0.05

# Half Kelly, 6 decimal places
kelzer.fraction(0.55, 1.9, multiplier=0.5, decimals=6)
# 0.055556

# Negative edge — don't bet
kelzer.fraction(0.3, 2.0)
# -0.4

Error handling

kelzer.fraction(0.0, 2.0)    # ValueError: win_prob must be in (0, 1)
kelzer.fraction(0.6, 1.0)    # ValueError: decimal_odds must be > 1
kelzer.fraction(0.6, 2.0, multiplier=0.0)  # ValueError: multiplier must be in (0, 1]

The formula

f* = (b·p − q) / b

Where b = decimal_odds − 1, p = win_prob, q = 1 − p. The result is then scaled by multiplier.

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

kelzer-1.0.0.tar.gz (7.2 kB view details)

Uploaded Source

Built Distributions

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

kelzer-1.0.0-cp313-cp313-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.13Windows x86-64

kelzer-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (20.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

kelzer-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

kelzer-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (8.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

kelzer-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl (8.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

kelzer-1.0.0-cp312-cp312-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.12Windows x86-64

kelzer-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (20.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

kelzer-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

kelzer-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (8.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

kelzer-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl (8.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

kelzer-1.0.0-cp311-cp311-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.11Windows x86-64

kelzer-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (20.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

kelzer-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

kelzer-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (8.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

kelzer-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (8.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

kelzer-1.0.0-cp310-cp310-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.10Windows x86-64

kelzer-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (20.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

kelzer-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

kelzer-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (8.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

kelzer-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (8.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

kelzer-1.0.0-cp39-cp39-win_amd64.whl (11.8 kB view details)

Uploaded CPython 3.9Windows x86-64

kelzer-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (20.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

kelzer-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

kelzer-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (8.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

kelzer-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (8.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file kelzer-1.0.0.tar.gz.

File metadata

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

File hashes

Hashes for kelzer-1.0.0.tar.gz
Algorithm Hash digest
SHA256 4abc4fa36bf79548ffe810f00bab88e24925f59c2bc8d16a948e790a3871e28d
MD5 0e39e455228fff058b90177523023c71
BLAKE2b-256 e0070068db744102adcc570fec564711ea7e1674fe400d89b764b210cbf23e10

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0.tar.gz:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: kelzer-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for kelzer-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8434e0a9ea348eee2a42e9b06648fb37291cb46ec5040c8a1c7092a6d74b73dd
MD5 328aeed6488ad261bbe086271e30e89b
BLAKE2b-256 86dd129b770137e2c51351b69eae3bea0f704a1f325eeeaffe91d4e728582cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 347711f3726f4799ec6e692eaa4d019d3aef9f042ee2830e82d02cc328ce7e20
MD5 a3588411883949c9e0b8eadc6b4c7c9a
BLAKE2b-256 7338c90473197f32b19c25acd4f88964b107888c12139b970350d3fbfb092c75

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 060ed08f2fb43823418a3d6c19bf867ddac051358d169254fea682a7e67b85b4
MD5 e19a3527e0bb798a47248683bdc67c4f
BLAKE2b-256 89d2449c098cfb9ed95e6334d2c76bdb879874af9c16047ca17a9ddc02e5940d

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b6957fff2021dd5c54c51f86397b1f2de8ce6ac4e2672e023daedb6fb13ed6d
MD5 e38544d7333be3d1e3489035d4ba44fd
BLAKE2b-256 3e234e3c8d7395d353de401c12eb831e17b5748bb6f94cd7304547df725f869b

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0f57d8ba5228a6675ebed7a88df8ca4718e7a6de2e91f6623978e9cb48d84c17
MD5 3e04f1c9e8ec0751ba8c98a415f3e191
BLAKE2b-256 535748eb3df09957687f84c541b02c0630e96c7286ba30bc405338e7b5ab9dc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: kelzer-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for kelzer-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fa55d5ad4e95345511cbbf8c0aeac515cec141fffa81acb6d7d57e613c6b532f
MD5 73658182f97deaab51c416ac372ebc51
BLAKE2b-256 70ffea0a47ae037c3fd873afe7d8f280178339f2fe6b2a923c614ca7d7cfa0df

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c73f2e3af3ce68b67166417e31c6180f0a602acd626e0b6342c9b2eb9dcad5e
MD5 df09a128b371c64447d2859a9edd81d1
BLAKE2b-256 ad9332ffa6498a60677d86702952aa3effd950fba5e05f7db03baa4fc08c6334

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3323d9e2810b712a5818ddf23b878d3c35db47c9194035f5472bfea51628464d
MD5 280effaacfbd3936d89f99fa7cc64039
BLAKE2b-256 d0a02010ef708e583218b7fe465a3910a5b472148e7a5b6249ed48c71109a1b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14411e19cc73cf8b0834785d7986d4fa669c28b9eb21b3de1f4c2d004776b02f
MD5 a26c0c15d91891e1471819037eb510c9
BLAKE2b-256 7d4c31fcb70f47ffdbd54e7bcc8dfa077532727da53e3ae44231f3524dc115ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4bcb4faf5e8061b6a202f3c962fe4fff7cf41b527591970bf87f116f16da52f2
MD5 4b78474e8370cb8f2ec4e38ea553d6f5
BLAKE2b-256 2475c0fb6c95b527ae673c39ff98b02f7b815e2043a047e6e6334e74c491f480

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: kelzer-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for kelzer-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1026b4bac47475ebc782888ba6b8cbaf2942e4f1860ca883dbfb4e5de642ec95
MD5 3089540d76247586d6ee3fe1378acc2f
BLAKE2b-256 4bca37cca2d3c36f09f7eba6fb6dbe5ed1ccfb707eb170c9552135735d7791f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d98d7081c800ddd8af77dc01b53fbd5a63e2e8c7330974dc2ee747527ce2d294
MD5 6cc87c96f6b3a18224038afd57d035ab
BLAKE2b-256 90337dee2c8607257df16270c852e81713fb83ff1f68d32dbc916cd33e7e778d

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fc8d05d40f31b750863c546c9f1bd0d457965e7c11354d1d9d24ab5b4a86def
MD5 2dec72d06cb09b01ba0b94b91e817bf9
BLAKE2b-256 13b5d20ef76137e4834ce3be0cf786b8535c82050ebb764ac28a4683cdaf31b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74488a80e6903493f79bd2169ab3b06d126b29dc3691f3c899e7fad0b67b9c83
MD5 de0c5c14a0705b49094aebba0b016fd2
BLAKE2b-256 9889f39ac8f58f3022ca86e64cb6f195fd2696eab6a53675cf08604fcbf7c34e

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d14a6cc1d4d3b9dac370e79ce5f19ea3cb3b479f59f6989a3901ddbfb9f9f3f
MD5 e00ce6eed41ee649ec8a5f1b91e11f63
BLAKE2b-256 4707f5f18df7fc84c687dabb1f7ef17732a89a4f5025ca2fa739b2e3262b737d

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: kelzer-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for kelzer-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 023dea38ab8cdf3d183ac49f9178a33271401f5cb6131d4c19ba31576a3ff860
MD5 00217689f7f4de645e74201c05afb785
BLAKE2b-256 97710d28504f9868909392b7b74de605121c09dcab17d42c1ab8e98b5285ce4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eff3269fc1f2dd74f3d1d5b28eff28b265e458bd7757384641458a7ef7aadc59
MD5 fedb19b420c996c0c1497d47210a0640
BLAKE2b-256 8a431d562bca7b993a460a19b1b139fdd07ca813c5ae3c7121a047ef0c5d9c49

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 008a8035b901fc8ebef11337f7e084d28e130eac587e0bd90ec3dbf73a1e09dc
MD5 c46a3f237263a0537ddc5b38f16e07c9
BLAKE2b-256 4ca1575873fb5b70826ca7643fcdbe835bf547b0285e0e40cd3273c230ae1f2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38f80fdfe0a344df9ffb178a8eca4c8e2e7b170a78a0f0ebe7f27ec135529e16
MD5 2ede781fb0587b1897013eab9f72e739
BLAKE2b-256 a1537118771c1e9b95fe15113f9c0e3a604078b723544c571da1ca85fb1a669e

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e50193189f6409ba94ccc687c28a21ca2877c73e6bb5d1497b234da1da1fa7a
MD5 cc8acf59e5f86eec9084026bfc1c7706
BLAKE2b-256 7220c9483c98611b8c749beb7f091a505a355d30fe0fcdf2942360c918d2e0c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: kelzer-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for kelzer-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 682eb2d5249cfacc90ebed6205f75ac01d1759ad647c168692fc5f3415651ff4
MD5 1dd4dda5c20f40e9e2c5eb6d27c1b2d6
BLAKE2b-256 5e3d5f3db94ba34737930370f77031b1b916345df5fd181ad160f22e6293795e

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bb3e330fa56a6fc760b89c10db61ec182b4cf61fc64c761a471c00211c1398f
MD5 944e04d98b0f9f767c807636d58b8faa
BLAKE2b-256 7132d4fb02d554e2595fbd769eb363d89f031d8141186dbdd28f84a76fcf18a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af2b94285390f17e3e3a2ee973db6cd06644cfe6dd9c851581d307dcccae82d4
MD5 bc912a5412041ac9b78d42dad5eaf93c
BLAKE2b-256 bcee760e8b7abacdb7398fd34a8e23fc0343cc9a92f82accbf3181ecab3494db

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de4076bc292e96fcfad525d084d11d0873c8b177c94bea40099c33413cf2da37
MD5 f25e21b18014341f65cdb12befd25e51
BLAKE2b-256 d75b1ccebcd9e3631711b29ea0e50b238cebfd4e39e04b75051f3b8bf23a1584

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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

File details

Details for the file kelzer-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for kelzer-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e5b32cade41021e9fa27a6d9ae77078e461abdfde0ebfc43be2105ecfc1a655
MD5 c21a3981d3dc72bc60f3c02a08481b10
BLAKE2b-256 3e0f90cbef44c79389b889e40b413338289fcd7f6501fd77c4d56feba57028bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for kelzer-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish.yml on odinglyn0/Kelzer

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