Skip to main content

Fast poker hand evaluation library with eval7-compatible API

Project description

pkrbot

Fast poker hand evaluator. Drop-in replacement for eval7, 2-3x faster.

Install

pip install pkrbot

Usage

import pkrbot
import random

# Evaluate a hand
hand = [pkrbot.Card('As'), pkrbot.Card('Kh'), pkrbot.Card('Qd'), pkrbot.Card('Jc'), pkrbot.Card('Ts')]
result = pkrbot.evaluate(hand)
print(pkrbot.handtype(result))  # "Straight"

# Use a deck
deck = pkrbot.Deck()
deck.shuffle()
hand = deck.deal(7)
result = pkrbot.evaluate(hand)

# Use a set seed deck
rng = random.Random(42)
deck = pkrbot.Deck(42)
deck.shuffle()            # will use seed 42
hand = deck.sample(7)     # will use seed 42 as well
deck_2 = pkrbot.Deck(rng) # will use seed 42, but with persisted random state in rng
print(pkrbot.handtype(pkrbot.evaluate(hand)))

API

Cards: pkrbot.Card('As') - Ranks: 2-9, T, J, Q, K, A, Suits: c, d, h, s

Deck:

  • deck.shuffle() - Randomize
  • deck.deal(n) - Remove and return n cards
  • deck.peek(n) - View top n cards
  • deck.sample(n) - Get n random cards

Evaluate: result = pkrbot.evaluate(hand) - Higher values = better hands

Hand Type: pkrbot.handtype(result) - Returns: "Straight Flush", "Quads", "Full House", "Flush", "Straight", "Trips", "Two Pair", "Pair", "High Card"

Performance

~2-3x faster than eval7. Optimized Cython with aggressive compiler flags.

License

MIT

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

pkrbot-1.0.19.tar.gz (181.1 kB view details)

Uploaded Source

Built Distributions

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

pkrbot-1.0.19-cp314-cp314-win_amd64.whl (80.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pkrbot-1.0.19-cp314-cp314-win32.whl (66.9 kB view details)

Uploaded CPython 3.14Windows x86

pkrbot-1.0.19-cp314-cp314-musllinux_1_2_x86_64.whl (638.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pkrbot-1.0.19-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (632.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pkrbot-1.0.19-cp314-cp314-macosx_10_15_universal2.whl (171.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

pkrbot-1.0.19-cp313-cp313-win_amd64.whl (78.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pkrbot-1.0.19-cp313-cp313-win32.whl (65.0 kB view details)

Uploaded CPython 3.13Windows x86

pkrbot-1.0.19-cp313-cp313-musllinux_1_2_x86_64.whl (640.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pkrbot-1.0.19-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pkrbot-1.0.19-cp313-cp313-macosx_10_13_universal2.whl (170.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pkrbot-1.0.19-cp312-cp312-win_amd64.whl (78.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pkrbot-1.0.19-cp312-cp312-win32.whl (64.9 kB view details)

Uploaded CPython 3.12Windows x86

pkrbot-1.0.19-cp312-cp312-musllinux_1_2_x86_64.whl (644.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pkrbot-1.0.19-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (641.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pkrbot-1.0.19-cp312-cp312-macosx_10_13_universal2.whl (171.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

pkrbot-1.0.19-cp311-cp311-win_amd64.whl (78.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pkrbot-1.0.19-cp311-cp311-win32.whl (65.4 kB view details)

Uploaded CPython 3.11Windows x86

pkrbot-1.0.19-cp311-cp311-musllinux_1_2_x86_64.whl (645.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pkrbot-1.0.19-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (638.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pkrbot-1.0.19-cp311-cp311-macosx_10_9_universal2.whl (170.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

pkrbot-1.0.19-cp310-cp310-win_amd64.whl (78.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pkrbot-1.0.19-cp310-cp310-win32.whl (65.5 kB view details)

Uploaded CPython 3.10Windows x86

pkrbot-1.0.19-cp310-cp310-musllinux_1_2_x86_64.whl (614.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pkrbot-1.0.19-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (609.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pkrbot-1.0.19-cp310-cp310-macosx_10_9_universal2.whl (170.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

pkrbot-1.0.19-cp39-cp39-win_amd64.whl (78.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pkrbot-1.0.19-cp39-cp39-win32.whl (65.7 kB view details)

Uploaded CPython 3.9Windows x86

pkrbot-1.0.19-cp39-cp39-musllinux_1_2_x86_64.whl (614.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pkrbot-1.0.19-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (609.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pkrbot-1.0.19-cp39-cp39-macosx_10_9_universal2.whl (171.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

pkrbot-1.0.19-cp38-cp38-win_amd64.whl (79.8 kB view details)

Uploaded CPython 3.8Windows x86-64

pkrbot-1.0.19-cp38-cp38-win32.whl (66.5 kB view details)

Uploaded CPython 3.8Windows x86

pkrbot-1.0.19-cp38-cp38-musllinux_1_2_x86_64.whl (631.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pkrbot-1.0.19-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (627.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pkrbot-1.0.19-cp38-cp38-macosx_10_9_universal2.whl (175.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file pkrbot-1.0.19.tar.gz.

File metadata

  • Download URL: pkrbot-1.0.19.tar.gz
  • Upload date:
  • Size: 181.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19.tar.gz
Algorithm Hash digest
SHA256 cad2c6bad86f9c992927912b490cc5751d884029f9cbd11770295c6c2ff225c4
MD5 8561802c7e4598ddb4e0db6d3c172691
BLAKE2b-256 e9f74d6c6be35717f72eda485bb75c5f918de832d8e441258a8ee413bc928364

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 80.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2ad87ea5c2b1f6da13d460d1d916a83c6f4aba3e8f936848cdc2b48879eb5baa
MD5 a51cf7aab9fd3d36fe183d2bc7c94dc5
BLAKE2b-256 7aaf06315972aa306539f66863d580e6fdd5f5e183789093212b425b84c9ba7c

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp314-cp314-win32.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp314-cp314-win32.whl
  • Upload date:
  • Size: 66.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aac90281fed320e19869d31ec01f350f1d740b6dd0c47f73783c6d764ad6046c
MD5 318cc28446d018014702319e30b456e5
BLAKE2b-256 7c0ec9b53fd1dbaae557d68a27e268e62238278d4aa4073d4cebe539805714f7

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97b456a5efd024974f030c1d3b2764e8d8d3b7d89c87082e972e925b3192b3ca
MD5 c471731320a26da27c4c14743172d895
BLAKE2b-256 6bedcea05056afd25f7f75292e09dc251632d8463aec80479bddcfb0ff5249f0

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf327c0c9649102677841c5034fa472373d049c3a666fe773e50b1eb84e80efb
MD5 24036344c6efa3a94b4a6922802a81ac
BLAKE2b-256 3393558958db9eddce761377580c58d16deff87959c5ddb6e555317fd675ce9c

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ae24f0b79117352b47bab66f0f06e85729db4e24dee9c76007b11514578b9c4b
MD5 f70ae0977b72ee7132dec9866ef71738
BLAKE2b-256 1b93cb030bc4b2c1a313c70edfb9f0b9547ecb87dd63f68f1405b916411c1cf7

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 78.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 10c76eab17d300432e5e61375a1202b258067ff152af74e3207290189d99b29e
MD5 9cb5d64c6428ca7c0bf6c2d0e9262d51
BLAKE2b-256 2833db489097db19dfe6b9e5fd853678f2192743c510ae31b3fc3d2e9801a52f

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp313-cp313-win32.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp313-cp313-win32.whl
  • Upload date:
  • Size: 65.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6212d5fc504cf2dd07860519e783a48564502c8accd8ffa692507f8ec0eb40db
MD5 d91297908bc52f17231e9773eeb7917c
BLAKE2b-256 2b377a451dd65d35a58a5872cd1d86d0129afe7b11c291049140c6a454bf9f8e

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff5c9c742ee6804115802d4d77a6493cc660148fd5ef102297f387bd883c8ea1
MD5 e7cf6b7d64513c77ec27a8e9beedc8aa
BLAKE2b-256 4e80b3f33983be441e0c0e2938b1bef5ea80b1d42f12a355241ed4ddc7cf5ead

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17ce854cb817873552a3244316b10a43c1bee5534e3ba4f1b5c97a5381747d2f
MD5 10b7b9a7cc7efafca1626af2c629cafa
BLAKE2b-256 c1ebfb9e430dc18c97dff0fc5d18b82edcb36398a4d6f33a1d43430d9089b4ec

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 44248a6f9056f208d660c71a40d57b117c869e6ac1651c29b8961cf0173cf7f0
MD5 7f968631b9016e6021ace307d5880092
BLAKE2b-256 4213f0e111bc1ef61317d60b3b8eb5e7db7a33b2d41acf0b455b0d081d9c23b3

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 78.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e2adf5aa1b54c7d502b184a7e8f6cb42e9c847f2d924b5ff45e3b346dea8c84a
MD5 a3f51e2940d04576dccbfaf6f51650e2
BLAKE2b-256 26e3f95f98042120a187f9fd6b9e7dd89384c405603d3bdb035238a0dcbd17b5

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp312-cp312-win32.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp312-cp312-win32.whl
  • Upload date:
  • Size: 64.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 97ab714a8cc2ddc3ac28fa333829e4012cbc373bbd8030f78566db5a14e5a891
MD5 dcceb02b914e492b3fdf54df04d6b881
BLAKE2b-256 28a178fef73a0f8036413474bf4e9fd0bd1cc06295bb717522bea01e101ba832

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 063c14f1336c73eba987caab9c94b5f84bbe9acdd8a8db69367c5e232ff3781d
MD5 6db32d3e766da4f00068be5c0d28647a
BLAKE2b-256 f9a7992163fea1a740939ca34dd6f1a61e36dfe4a7f09625bb3978bc351a2753

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 889b56bb55acbeb14019c8b7a4895b8d3d3adaf364c00e9d977726c4f5b6e253
MD5 35e13cbe03f38755ba1ff53fcfec2de2
BLAKE2b-256 12eb70313e7470cfcf22b6f69c83c9afeb76aef83c6cbd526d68457f557059c1

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4350def93986f99329571aaf243a94bf323ca654914b680b11ed97e174856f5e
MD5 6eb3624e891621959f71c73f9fc27fe7
BLAKE2b-256 aadfe4cab7e3a32320237cdd4a189453b456b073b7c620498762210c3234aa1c

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 78.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6b84a1a171743d955ba9f4477be39598e39243dd96f5c4e3ca3b6a70911adbd4
MD5 20f0ca204ea95b81b0cbc049452b9256
BLAKE2b-256 f7ffab3d0f4bc5fa237a2c009241ee50cc4f06ef0e3669aaa2a162ba470c8f10

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp311-cp311-win32.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp311-cp311-win32.whl
  • Upload date:
  • Size: 65.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ecac1094f6c4606dad9f7f11f7f9974c8fad8743688bd462ea958fcb43f6ff18
MD5 f6afcc426c6faa8e39790a7023e93cc0
BLAKE2b-256 f7946ebdb98094c275c133187e868729fecb6a11cfbd489f76fa1784b0eb3dc5

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efaec30f51ebca93f5efa51e12fa4a1ebe6548199b58ef3317b6d43729b75ba2
MD5 4ff21298f128eb957ae987bd7074e769
BLAKE2b-256 a4a76d96f309594a29fbd7d82ad943498cfe4ea9de7203397f848f761a2c4809

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 193262c924c0b6081fadd72c339aba6441456e49f6c097a9bbaddcfd3c57e3a0
MD5 439b6c193babda1742264bb0d1e40c88
BLAKE2b-256 0476f3ea31da745e866819585c3508326e1f60dc93cf67662215c23da8002d11

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 507202bf3cbc188182bd28cb63c9db2458ba159bb23c85349738aa4acaa533ac
MD5 92baff1083eed607c5aa2d2aa44cf6fc
BLAKE2b-256 02e6d2e3d7f74f3984dcb52e4db6b6c55e616c801e894696a094fd830c74fc25

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 78.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 efa3cbb8e9ae81ef24a685514f7106dede7dbc1f71aa001d1d1ba6d9440dbb3a
MD5 f5d97673e7ab7582b0e5995244b5d2dd
BLAKE2b-256 7614e7dee103b19be6629f7e44e0ac0158db644bbb8d43437fbd22dca4fad365

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp310-cp310-win32.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp310-cp310-win32.whl
  • Upload date:
  • Size: 65.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c3bae151c00dd9d8f3e09f8fe86476667228d1f51d278cd38d1f6cc47f1e9ba9
MD5 501b97c7203ccbfcf4ca741e52448eb8
BLAKE2b-256 93574f736faa108306655810bb3057b70f97b171c06566fd454657eb32cddd45

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d488acfcd066f4fe7607cb43386d8b48f8621bbbd9237f3ea01086712be9e281
MD5 4347bf3de5fd7235968ff6dfafde1cda
BLAKE2b-256 ecde46f1a27f51c6816bd7cf714f6c0dc514c0e4cd1a5a8b28825ae86ebbee5a

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9860527d74c49ee5235245aa35dcad2163e14916a85e8b75d255cd2b33c5cb3
MD5 63f38866f27567ef77befe58da4fcc13
BLAKE2b-256 3a9799428f5fbf00967bf61516f4cd6ca74953814286454443706d8094cadd39

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c79fa3f384bb9529def6076ad23358d94b5497632ad5eb930c3511315726cf5b
MD5 59d237efccb7fb2b7494edd59916c35e
BLAKE2b-256 809e43b8c798c6fc6824a56acd03697a94e949ab5b2aaca527cd20cc0bb6c1d9

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 78.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fe486a4edd5fd6b6f2c2981052567ee47e59c008571c8b41d71b66a830fab5d5
MD5 aff2ae51890a7295f9b638ca8d892452
BLAKE2b-256 6d2e57d33aa8710baf61884c6b2e31e548f02aa62851b3b675f622ee032f9df8

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp39-cp39-win32.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp39-cp39-win32.whl
  • Upload date:
  • Size: 65.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cbb235705e199d45d0fd5b9b27f13957942614f4cbd068e6c4f9f2a07dbb1ec2
MD5 be57848370564ae9fafceeec12d7be88
BLAKE2b-256 5efa6a76fdcda30336c27851cea6e53e49e5f3ae2dff85ef66cf5823f741311e

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 947e78ed1822aa094b4506db57fa325d8261f4da8b7de4d8ff7daaa8d1095978
MD5 f8c592048bfc43063de0ef71160e079d
BLAKE2b-256 63d0f3f308adb6456f76d357af80571d9d347bd6e4bfa4b0b3f39259354176db

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f417b76ac6bd1afd05c82897e854edb9fe6bc83b7c1dd0a85649c6d95a7ba14
MD5 87b20bd76ba96ab55dc87c78daebdaef
BLAKE2b-256 bb6dff4a769c177c9a11ad2634be51961a9ab271202c69315ee8024d28663086

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dd7bd4d6d5bddaed95dc8bee994c92d15b227af2e3e1e332b1baeb621ba86bd7
MD5 b47e2e9083aa738045536154706e41b9
BLAKE2b-256 901cde5c6f38b57664452c9879f14e8231383eb3ad7b83a87ad04d3b484f5046

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 79.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6d77c6ad9a4b123fc971e7990ba106249b80082728f6e592c062ac9f8e6d1cb5
MD5 3f9ce909e41892cb88d0e8b1b136d284
BLAKE2b-256 cbabad7b28d6c9cae5f82741ba8814da5174a0949d6ee59ee17c7cdf0d4064cd

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp38-cp38-win32.whl.

File metadata

  • Download URL: pkrbot-1.0.19-cp38-cp38-win32.whl
  • Upload date:
  • Size: 66.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for pkrbot-1.0.19-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8f957e3016b9e3a85008dd5ed84be0fec505f4e7d3f28297fbdabbcb7a1f53c6
MD5 27898b3f784167bd599331612795fae3
BLAKE2b-256 eb88e5341b42d41db6cb9c47bed34511533a09f8bae395cb342a1edf2ab80d1f

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9536bc1bb5ed39038bf03f582fdb3e7e973e3388655a46015243ca14a2dd7615
MD5 104d6b6f37b3d4b40e5184b3e5d6e52d
BLAKE2b-256 1e157ecb80f750ec9d047052f8a6f31dddcac128ff07d4a0e0ab02153601ce00

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fefa7d57528039befbceed71629893b5d3f651c7d1fa34979e01fad425ed19ae
MD5 9aced9cdf170d029d1dbb03eb1d28ada
BLAKE2b-256 7b672201696b26d0c0ef0c38c9de9bd45398e5903a4f155be79a73c01e25f0de

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.19-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pkrbot-1.0.19-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cae19270a79e29973a407350490d332fe07ac607ab74f80d6893973bf3983426
MD5 fa21a5ddfbc815af3aa3c75134336688
BLAKE2b-256 90d17f53ba01c60620109e5e30016571974821b654e0752adb14420e756a42f7

See more details on using hashes here.

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