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.18.tar.gz (180.6 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.18-cp314-cp314-win_amd64.whl (81.9 kB view details)

Uploaded CPython 3.14Windows x86-64

pkrbot-1.0.18-cp314-cp314-win32.whl (67.7 kB view details)

Uploaded CPython 3.14Windows x86

pkrbot-1.0.18-cp314-cp314-musllinux_1_2_x86_64.whl (663.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pkrbot-1.0.18-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (660.5 kB view details)

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

pkrbot-1.0.18-cp314-cp314-macosx_10_15_universal2.whl (189.2 kB view details)

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

pkrbot-1.0.18-cp313-cp313-win_amd64.whl (79.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pkrbot-1.0.18-cp313-cp313-win32.whl (65.8 kB view details)

Uploaded CPython 3.13Windows x86

pkrbot-1.0.18-cp313-cp313-musllinux_1_2_x86_64.whl (666.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pkrbot-1.0.18-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (664.6 kB view details)

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

pkrbot-1.0.18-cp313-cp313-macosx_10_13_universal2.whl (187.7 kB view details)

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

pkrbot-1.0.18-cp312-cp312-win_amd64.whl (79.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pkrbot-1.0.18-cp312-cp312-win32.whl (65.7 kB view details)

Uploaded CPython 3.12Windows x86

pkrbot-1.0.18-cp312-cp312-musllinux_1_2_x86_64.whl (671.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pkrbot-1.0.18-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (670.8 kB view details)

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

pkrbot-1.0.18-cp312-cp312-macosx_10_13_universal2.whl (189.4 kB view details)

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

pkrbot-1.0.18-cp311-cp311-win_amd64.whl (79.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pkrbot-1.0.18-cp311-cp311-win32.whl (66.0 kB view details)

Uploaded CPython 3.11Windows x86

pkrbot-1.0.18-cp311-cp311-musllinux_1_2_x86_64.whl (676.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pkrbot-1.0.18-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (670.4 kB view details)

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

pkrbot-1.0.18-cp311-cp311-macosx_10_9_universal2.whl (187.8 kB view details)

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

pkrbot-1.0.18-cp310-cp310-win_amd64.whl (79.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pkrbot-1.0.18-cp310-cp310-win32.whl (66.2 kB view details)

Uploaded CPython 3.10Windows x86

pkrbot-1.0.18-cp310-cp310-musllinux_1_2_x86_64.whl (642.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pkrbot-1.0.18-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (635.9 kB view details)

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

pkrbot-1.0.18-cp310-cp310-macosx_10_9_universal2.whl (188.0 kB view details)

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

pkrbot-1.0.18-cp39-cp39-win_amd64.whl (80.0 kB view details)

Uploaded CPython 3.9Windows x86-64

pkrbot-1.0.18-cp39-cp39-win32.whl (66.5 kB view details)

Uploaded CPython 3.9Windows x86

pkrbot-1.0.18-cp39-cp39-musllinux_1_2_x86_64.whl (640.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pkrbot-1.0.18-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (633.8 kB view details)

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

pkrbot-1.0.18-cp39-cp39-macosx_10_9_universal2.whl (188.9 kB view details)

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

pkrbot-1.0.18-cp38-cp38-win_amd64.whl (80.9 kB view details)

Uploaded CPython 3.8Windows x86-64

pkrbot-1.0.18-cp38-cp38-win32.whl (67.3 kB view details)

Uploaded CPython 3.8Windows x86

pkrbot-1.0.18-cp38-cp38-musllinux_1_2_x86_64.whl (655.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pkrbot-1.0.18-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (651.4 kB view details)

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

pkrbot-1.0.18-cp38-cp38-macosx_10_9_universal2.whl (193.3 kB view details)

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

File details

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

File metadata

  • Download URL: pkrbot-1.0.18.tar.gz
  • Upload date:
  • Size: 180.6 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.18.tar.gz
Algorithm Hash digest
SHA256 60ee7865b0951527158ca9be0b73c134eeb01362b9a523a9fb4371baf7f42574
MD5 adbcb68f4a3f62cabbe9472642541c1d
BLAKE2b-256 2f7a87a9bdda3c3b6676ed78e834569533836a4fcfaf7c29e39395d271addbab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 81.9 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.18-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1c5866bd2408684f61bcee8b09d636249ab92c2e094b6ec17753d4fe9340ed2a
MD5 8d6df602f47eb9cddd299b4946f6bec4
BLAKE2b-256 35b5ab4cc167d625af460c077c284b00220566c97837ba24684d6953f6f28fe3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp314-cp314-win32.whl
  • Upload date:
  • Size: 67.7 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.18-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 30341a6893e7164e1e47e030820955ee33117f1c47e3e590fd305f20cca90227
MD5 146b82e695efa25ca252b22cfcfff0bb
BLAKE2b-256 88d23f52661cf99e203464d0796e8cae611cac344f3677e269b4d6d6c697ef6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d2003de5ccbc2e51cd559195e81742fbd9295fb9e19f19b8492fcec80931560
MD5 d3341dc0c784bed6e6c12bcdb519d500
BLAKE2b-256 5f88b39a9e2f641f21a7727d8926f63f6231bde5a9521b116b864c602e76afc8

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.18-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.18-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1939ba2dd4e29df54540f1a92d1e74130631a86ab672ad0b568f5e807d18ac7a
MD5 698487e5ab55cbe8e1b542a9f0924bb6
BLAKE2b-256 80fc748ae80766c6889aadeab8404bdbe78d315c5ce2351cb962cb26b4fd8290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 41501907e9c42eb7331109d5327fa9eb7959f9b7194e9bdf42086487c0afd351
MD5 d9bf9c10049de7255c04cfc278909cc5
BLAKE2b-256 a4e99e105fa1b21bc47c6ea258057ae363612654322d8dac8da1a10b115e09c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 79.6 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.18-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 156d84215debb5c60efb92374b7ee9e24cff3e4dd3183a4992f552ad6d066b21
MD5 7b39f88dd9744e7ef8e5cc80605c5040
BLAKE2b-256 7fb9bd9ad302203702cd9333336113aff70e22c96f6b322919d10e85c04382e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp313-cp313-win32.whl
  • Upload date:
  • Size: 65.8 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.18-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8158f39ec7efb5aaf3539469feb9d025362915817a9f0c925407f51bdeedccfa
MD5 9f1369b0732d906c981ae91f45ae7514
BLAKE2b-256 6843e86cd5dccf3f1ec351a8cf876941892cc32beb07df4239698ccee8ce9e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d901c3a7f3327df737910f7c3ea59b584df01f41f7d02957ab5eb2ffcb27f0f7
MD5 b58733ccd156197c9a67447c108b99fe
BLAKE2b-256 6ad8cb371294a2ec0a662ef777f73510af5ff2a6820bd5566d68f7ed976d7207

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.18-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.18-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad30b74f683f89613e7ac4f2ac7351b6cef0d0ebecd9bb47fbe7acdfe60cb5ec
MD5 8ace4e21ac92086971e6dd184191848d
BLAKE2b-256 8b37a82a6e25e96f2f8fa0113ab8210c538c2bd1ed8aea90bb06b154b6f8d84c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 affd1620c76f3c09f5c7196aa505ef7155f224332c4fac8746828aff5ca4d2ef
MD5 82268bb5146609c54ae41e5b31f6f3b6
BLAKE2b-256 ee764df6ac785174fb33b85e4677bfc4e0e55e306520e5cdb9c6df57084ce8d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 79.8 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.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1808df7e093b3d30147d33494ebeabfa17649f62d5303dfaa34bcfeb2284d587
MD5 2cf61be0e5a1a24c434d123837698f28
BLAKE2b-256 95621ff3fb6cc0426bbdef7aa09720b47526ad974395b4b2534e1a9ac1a00b4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp312-cp312-win32.whl
  • Upload date:
  • Size: 65.7 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.18-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f683bc12e6f2553d229db1959083b7e2ec55b29c60c237eca534f3ebfdc303bf
MD5 7283def67630586ed4a635022ec93eb1
BLAKE2b-256 5637e15b59245d362ce7d3db29661dbf08eb965a58e0393f23ee065b45e19bf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a2b2c3e921c70768fcac307d49e74fbe13c16edc5f778ee51ff5ddc022bebf3
MD5 a288d81e829ff0691d41ff42d50e5673
BLAKE2b-256 0d929580d5d2d81790412df75c20f3aae886b67a135284806f0b22c6612e4f07

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.18-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.18-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e4e6e24775792e17551d249da5b6f66f1166ac92e6b9cb21c44d015101d8bf6
MD5 748695373c5a216a44e248bd15d5df61
BLAKE2b-256 248234b2f8661683baaafb71936cda101967bba3b2826a1365aed61e11078fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ba5fe36856d18fd4b0845024f867126d55a5dcb72223e91472d1f057adc780f8
MD5 5a1872006ad6e7a00ed20a8aebf1aa2f
BLAKE2b-256 699b6be6e27320a4c839cd2b4ade01456159b58d9cd0d504f9fae13683d0d84c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 79.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.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 80dda7a95ca2419bea7d1ecc7e165d05ff4df7f378719ec25bec44844376a134
MD5 4203a76ef850917ac11574fb45cc7853
BLAKE2b-256 3260a3196ba0bf1b8ab66dbf3bd23176b10e594ddf8a0192ce52c3b9b75bd3c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp311-cp311-win32.whl
  • Upload date:
  • Size: 66.0 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.18-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 12b6b07fc1e9e664b4cc1f9209b7d155eaa8e6ec03c3881871b80199b9e0d82a
MD5 383ef5b2609414ed899290378a750ec3
BLAKE2b-256 d5175b19081b70220221ff60ff1b69bb0e3336e7ddd8305aa4806f5a70b46109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b586e10bb92233a54df74005542ad59f10934e7e605c161af3074ebc943518b6
MD5 e22d7df658b6d728e8fb4c17b58a3e42
BLAKE2b-256 4ab69d6e339cf699ea47b5534eedaa81b2d561aec79f39fae11ca3931759e2d8

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.18-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.18-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42384c492a75d3ebda48786fb55042962cf2cc7efec53a995ea28a77f46e03a2
MD5 f74ef2ae28e9b7f105c98496335b8ae1
BLAKE2b-256 cf75a529f200db28d3992ce529cb03914bd19d791f04b21ab1941f3bb0da907f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1f2a969345dec295b165b9a5a375e396a25a45cb4bbd1c3e41c184662faef365
MD5 55927ac04a8d9d76608d78823fda5d7b
BLAKE2b-256 69a0daeb0d9c339eab7598b9af4207453165cd2d729160a6a8d2df08bffc5896

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 79.7 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.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 21d5ef0d289d07b633c647f7954ab93fd7657b8e6fbc5b3dad7c406a5a510e24
MD5 e694d6a51ea37f090d7e0ac24c60f826
BLAKE2b-256 883a612566f02799a8ed865a37b965a0d0785f68399d9feca551cefd860f0bd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp310-cp310-win32.whl
  • Upload date:
  • Size: 66.2 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.18-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a81672e9965265606e8e846ca00726dc122c29abb69c5118364922ab0392d00b
MD5 edb218bfede9f854acf37a7ae126c6bf
BLAKE2b-256 fa89e714140a8809579c86580ed9747390403ab5044b0c8c8376452bfb6f6f61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a5f82575a38e0010da214b49545f8d194a48778b679945140f100a1ee1f5b36
MD5 0b16235691cf97c0a20f3fe3d632a276
BLAKE2b-256 c5657bf8a7f4f7f4154735974e1f5e05ea14e930b5e2e92f41062f8879317091

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.18-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.18-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 febb27653ac9f4068ea4bb574ebf430a0521a8a681406d0092b5800f49385c9a
MD5 c2badeee7d25594094f1ca4da7280376
BLAKE2b-256 16517d759e6615abae88b0467b9704a48ff897b8b28db200bb1fa66066b5494f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5922601ca16528d502e990bc280d43635a421dc31456e6c57415237da695ad4a
MD5 b95a7b4cfdd110b96d427a69e7c6fe8d
BLAKE2b-256 7bcf6a79338c87f0333fd20c6ffd62a225179c32acea91cb6b2ecebb45e42ca0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 80.0 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.18-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1d4302dfc13009f5b5f153255936aa345650d9471667ab3d944fed3f88f752a6
MD5 77cbe3a876f357b933c222cc39a50442
BLAKE2b-256 8462a8f62ca57f96705c883c71a178599472d28aa691448724cd604cafcbf45d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp39-cp39-win32.whl
  • Upload date:
  • Size: 66.5 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.18-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 866905e8979df2348d9ed6ec4a5ec221cca34c6d42ab0e2e5bead0e92313dbba
MD5 df5fb62027b142f2a343cfa36a2f7483
BLAKE2b-256 9400d926637ed77afd412c4dd6ebcc841df0c4274900c439caba8799bca5e4d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 436b182ecc09a070c354753f1ab9727451183009623ab3e916c94ae058a78ac0
MD5 451c60f0ea955e7aeaa7a9cfef96806b
BLAKE2b-256 aec1013ab1424ab54792bdb62e9deb63543750ec7d8fcd52530d293e8c475c9d

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.18-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.18-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7230bf3e906a3a1dabf067309edd3122681136feda3ff5074f69867cbef2f6aa
MD5 21cf2706a5393e0ec648ec4ca64b290f
BLAKE2b-256 0ad662bd346236075bdc5a5b23eecbed0e3560a90896ec8e868526db515cd7c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 31b39d1767ba1aed0846056033bc51b4840cba3ed2116ce96dc752edc93ba228
MD5 a903191b38bb3e3c35080d137413f9df
BLAKE2b-256 793a5ca0dc9639b525ebfb58b79c11d215578b9e1f9d6735fd338fb59e2fcdb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 80.9 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.18-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2f707991dc26f98e8d34515727d3e5d160bbe8f67d3716e4f9b751dfdc9884be
MD5 f17dcca17a19a9a929d971a4ccad9925
BLAKE2b-256 bfa67db438f95975bca4837d2358b619ed0889abcab9e667d3dc7fcff273bbd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pkrbot-1.0.18-cp38-cp38-win32.whl
  • Upload date:
  • Size: 67.3 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.18-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 23404c5ae4145e52a29b44bd2f5944795d0e8742e8a512be4a9bd43fea042020
MD5 a170a1df233d5a4090639850446ef430
BLAKE2b-256 e13032d99d2d29f5ae8adc961ba0cbe55e126cbb486a35bf6e03f41be95b992d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 937d5c31a82c8c7851a63073a5ab216e7d0a397bee46a613f33ff304151e2fca
MD5 2f3d6a3778e92c715b815c9bcc49eadf
BLAKE2b-256 be3eb0cf3be92ace946bbaf169cb5891035320c8263c5d4e84792d8c479484ec

See more details on using hashes here.

File details

Details for the file pkrbot-1.0.18-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.18-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d175dcbe24c0324c2db0c4eb4b3b3825d201edd501be932cf68c44c6dd2c46f4
MD5 3370d392fb5db69d29bd8ce3325a12cd
BLAKE2b-256 bcd83d00bf5001725f6ec93341e43625a03c92a5aac046645cd22a6e1699057d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pkrbot-1.0.18-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0f0248b378a55d82e138b826689ea86bdabead219d8f4c30647cfbf1455609a1
MD5 3571cc436e4be17e5495aaf003afc631
BLAKE2b-256 27a3f60202d8e04dda3f03fa46be0a26671a2b2c70b6c7561579ac148ef543b6

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