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.1.0.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.1.0-cp314-cp314-win_amd64.whl (80.7 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pkrbot-1.1.0-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.1.0-cp314-cp314-macosx_10_15_universal2.whl (171.4 kB view details)

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

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pkrbot-1.1.0-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.1.0-cp313-cp313-macosx_10_13_universal2.whl (170.1 kB view details)

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

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pkrbot-1.1.0-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.1.0-cp312-cp312-macosx_10_13_universal2.whl (171.4 kB view details)

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

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pkrbot-1.1.0-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.1.0-cp311-cp311-macosx_10_9_universal2.whl (170.2 kB view details)

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pkrbot-1.1.0-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.1.0-cp310-cp310-macosx_10_9_universal2.whl (170.6 kB view details)

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pkrbot-1.1.0-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.1.0-cp39-cp39-macosx_10_9_universal2.whl (171.4 kB view details)

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pkrbot-1.1.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (627.1 kB view details)

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

pkrbot-1.1.0-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.1.0.tar.gz.

File metadata

  • Download URL: pkrbot-1.1.0.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.1.0.tar.gz
Algorithm Hash digest
SHA256 356c1f8ce5840a750930ed33a32b6e6b5386e44d02848478091e79e5d13a6ce9
MD5 8f5d2047c137b74eba3607e338ff8c04
BLAKE2b-256 e494873adfee6e8554fa1ae85ab3a72bfdd77634fce1f7598021aa6874539622

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eb68355be04843735a272603b787c9e809e1026f41f81fd58cdf1bf8e36bdfec
MD5 eef7417d350b8fa0664d8bbd7e70c913
BLAKE2b-256 c6800b19c33150df28e2efcb51e32c7dd077df69dc06992b4675024171ff378e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c21c9a80c6c4daa80bbc7fa1aa9b437b7dd6e44e6449368989ee758eff3114f0
MD5 11b49fe9638e29854338da47d8e348a9
BLAKE2b-256 ccf5b109211112d1abca7981d2f71e505938aab7cdfe1c39d66077b347c266ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c6ffeaedc8c57cc426ae1893a531ae475fca6a18dc5f62d4e32e2cbccd0b033
MD5 94dc98be2e50c7ebfccfbcd065bcbc7a
BLAKE2b-256 2b86a1dc6cfebe831c898994911a9754e414f0d2fdcce4169d3ceaf8b2a1e67a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf6327b12af050608ec9c85f99222023697d9cf345f62353a009cf06a88b7c88
MD5 42bd0784633a0ccd68cf51aabf137157
BLAKE2b-256 f081b2c1ad299f54063d2acfece30d2c196177488cadcdc449a3a6912b9fc6ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 086908d57138e7ff86e6bbd1daccd63b53315b3497422baf097d5f02d0644da4
MD5 85d57bfc7de362799968f0ea2ef633bc
BLAKE2b-256 293b93127b6a9f6857029520be540f146d7062ad295b85c50d01887e4e4e14a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 24c7d84cb56d747ca39057937c7f9af64786d7dafd2e165e129e5e12af8539f1
MD5 c15e8e5ca10133447db3f240571ec7e9
BLAKE2b-256 4087a772827e0c8f6fa35119641549b199a54d5bd31dd6b7a327a470ff1f0676

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0aef88b1a86765dbad0ddfda21daf64957d260f6002d6650f99c5770002d42fa
MD5 8a1f819e212ad61e15afa162b599a704
BLAKE2b-256 3d8518c57f4e0587391d3eedc24084dc4c93d75aed47f76bb57f754a2c943395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 449d679922b9f34e0bab73f4b3da1ed734e940e1098198ecaeada00aaf8755f5
MD5 116ea90bc405d7ae12bcc62ffc3ba440
BLAKE2b-256 472125e9aefba3527bc3e9da92b3c505e4553e0b4ba464137a455aba200a8817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7bb02193e778772ae6856b4b40d2c53ec5d467af9e9c0b283e0dcf9803962c2
MD5 19b53a39d1318e8faa544c9e52ccafcb
BLAKE2b-256 5f2046fec64fba0a36b20622f23fd64c100a326008de083d4ad4f0a367b097d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 19f5929316be1efd556c273250fc64f38d94200b92755f0ec42cbeea10162a58
MD5 010de284016a0e66711bde2a788aca15
BLAKE2b-256 8cc3c7d600c6223180696338859f3ddb2c4e8d2eda6f61e0aa56c2e5f9c290f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a19047a98ba852496af1cc709f28f44c9bb123a0659f483ded8ee06cc0eee479
MD5 260940bf1378c1f4696cc4dcf30caf7d
BLAKE2b-256 b1665b7ad505f29af766846f97127582fb76b85ef8f5faf280649a3b7254e698

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8fb41cd17ab9668f35bb68762a93261bfe5e03db61101e9523ec08fb041b576e
MD5 a14011ce64744ef4c0cd17c995a65ec2
BLAKE2b-256 f3feef699f226b6501f5ae7bad35334fbec5a8174c352fd1062e5f373d9d2476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90e03f0b22565b035f0e95a6810c0d992d78c48835da2bc49ba3d6a6c434517d
MD5 70ce2659dcfaf08a06c5580c68910cad
BLAKE2b-256 164c63bd8f17afc5b09e7e3f8b0fdd6a31d2f9ce1b47cdb29e0343831e3c77fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab9e61dba2920566fe512b0644ede443ad9ac3ef0813b025f4537ffd13e034c8
MD5 62a0e4a765a9c02cc048e75fe765a0d0
BLAKE2b-256 b61e261d874a1cc241b5f86a81c37b6347a6c4e05703e38f1600fa795410ef33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 83c2392e1c193f44178897a144cc202d63e44a33c4f96d548500cb3569a1ee41
MD5 cbc5ec8c3966ba6ac32f88a69f8c9ef8
BLAKE2b-256 9ab0c4d0a098bfd06052a587d6056b6f0e46d680e38fe63c6f222e2ec1085548

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2065018860e929b12119e3ebb5f9e6551002bcfd7c16b0b024f48e3a611fa5e9
MD5 8bb179d3e70c417d3d4b53d7c2be77b6
BLAKE2b-256 c8768bc93694d47707d63050fa027c72e4ba97d1b45de7c03e17d888d40a54e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d608d5c3e10d6e3f870c8f52e1d4345852c771a00c55ae807fbc0d066cb3ae61
MD5 089dcf16b8ea631dff5da97b05858be1
BLAKE2b-256 7dccae4e9b2893ff47638d25d618f96bef22a1712742d1bd7af582dd7a2f7d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42b378c075f3913c1cb1e2ad50606273e6ca86baa457a084db41e3c678506dea
MD5 07a1aed15ae4292abe2c4a9280e113db
BLAKE2b-256 4b92bbba16c4fd021035ce9f2107b4765834012ef83116c4d33e39cc196a6012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d83c7600b9b17ebf032b80a1a2abcd7c15bf8c16941e37b7f8097436d131e579
MD5 12dd959929ff73cc40b18125df274ab2
BLAKE2b-256 00c23b6707773d0d38c091b678c602834e4aa68cfec582670c488767beb16f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3d0de0d9859b8d3be0f0328ec2c01eb847fb241d71b0d8c7f5e2c7951bd3a00a
MD5 e83c2ae5fddf35b0dc7c33afa0bc7d92
BLAKE2b-256 554b77deebaf636d0337f125d3eaf23b7026b05b5f627e428f17e2436e29aac1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 34ed61f1fa004b3db9a1f2105539a44116ae06e8cd94fb715ae77135a2903553
MD5 b0ca247a615686c04cc1087bb6c12f34
BLAKE2b-256 9b1149705c77939b68f1b99e2d9e3385093f3c3bcda9e43e16d30930e8276cec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cdcce9125cb8afaad683e5f27a7f4fcc694c833e531a47d1243996240653c656
MD5 d906b1a56d9878032c4359d5ab9f7b7e
BLAKE2b-256 d6e407c3a3244f7db010c3ff6269bc10b8833ea1ccedeee0057b94b151bd66a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 580fad037322fe55eed794710c81a068a81659515ed4958f93d07f437abf7b38
MD5 fc30c7049b55f61d460b95393b87c3cc
BLAKE2b-256 f689cb073f9f99462510df8e4879703ae931785af54faeec086ba4fc3dbf3a6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80b0a12389d35adbf413ed9a49cf286f9a77c74c4b07bc245bcfe9b4b64416f0
MD5 65f22da476fa706518e1051c9406aff5
BLAKE2b-256 91388eb0cbbf656a5adde63d4d856c5888c6356cab0c94000ae53a613f099b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 10b1a3d00995fbe1ab198d3dcff4525d1efab2750e6bb1e7f26579d87b5dfada
MD5 91096b40b72bf81e3eb4998c433aba66
BLAKE2b-256 47d0f769532eedf6431e0e931a3989649db8abe4a9a8f6b63c4d45ebb7590bf7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 46bf86e3b01ce3cdb7a4e40c865745058d55dae78645586d7fb847adc83198e1
MD5 a9f4033fb61b2f38ef0efc17a58d7e37
BLAKE2b-256 1a8600f6c5c8c1dcc898a88c6cb6a7f05a4069d28cd7e75899e8add24cb49013

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b92556b1fe36cc7c04a0ba7f282ffc7c5045b5672e7ed8804f9fe8175427fff1
MD5 38220e88c091700d79abbcc2f7240462
BLAKE2b-256 87c17f6e7df040ea0b17bb618256b1f294d1b1a6c500dfc7abe3805231fd1385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cabefc06b3f12043584c38f35ec79254dec12ca57d1545696fa8c0cfaa3d6d75
MD5 c1e8d1b9ffa8aa11d86bc87e8e6f6ceb
BLAKE2b-256 01d5bfc22911745dca23b597aa6e8d61125edd642126f421c5a042aef42500d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f015475194e4e6df82f3160541dffecc40da5e68542160f5d3ea5b51834a705e
MD5 1844cfe991514e3ed4ae14d89e9bf80e
BLAKE2b-256 c1376392e697ff95d5fb09da53252e648329871f413feb3d52db716f34262bee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3353e1ec0735cc8dd44e0745b6f11e98415ead32cb2e80ad1995483d668727b4
MD5 a664e3c0ca0252bbef1f34420eea8e70
BLAKE2b-256 ef04382c090f1cfe59cb48ff6a70e073dfb391f47af760202d177e8307136f70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d200d9391fbe608c450614e829668bbfed3406c60d006f587e9239ca0f8732fc
MD5 6198070227d3e0f9a884530515a2f6ca
BLAKE2b-256 20a1f27666619e5128f1cb0add663833d8bf0d3fb682e4efb87ca76908451ab8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.1.0-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.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9183f502101f733f1756864b5284a2557ab36da1f6c5ee8a912700f409b49986
MD5 fa0460d1b6539f187569fe137e0f9ea7
BLAKE2b-256 a8ed91b13caa7bb0833992b9aba83eb67ee806e33b2461a2997786c408cd3edf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d1fd90a5601c7907ccda8c62ca2e632878f4482f4dc92f151186c8ba97e73c8
MD5 2f8eeba9e2ef8279f7b1a44d1c8ee5fc
BLAKE2b-256 7cd158ffa4f852d81f5659c2faa5b507035a8d88a13ff8264936b5b5682b0fd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6985caaa39603127fd8d293e1a62e333e45ac97fe44b6380ea89e99dca017ade
MD5 ad61212918de165e10bcbbf063fdfb15
BLAKE2b-256 2077a1a2e130b1f0b81ba2ccaa36dc319a601becc32805f0abe20f5d27f7df02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.1.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 22f1767cedb0b19547cec2729ea6c900f49153d29f19455b504ac52c8695b7c2
MD5 cbde7106fe15633e920100df5bc22883
BLAKE2b-256 57f13d035b0c7a8db355531a2624ba78f7a5d9d2bc6d1d4f289c2b597a6ca875

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