Skip to main content

No project description provided

Project description

Blokus Engine

blokus_ai

Checkout the hosted GUI here

Project Outline

This repository contains several main sections. Most of the code is train a neural network using self-play and Monte Carlo Tree Search. During the process you have a neural network that acts as the brains of your players, and you have a game which is progressively getting played out. To simulate a game, all four players use the same network to determine which move they should take. They use MCTS to explore a tree of possible moves, and the game ultimately takes one path down this tree. Once the game is finished, the model can use all of this data it generated to train and improve itself. Then another game can be simulated using the better model to create more data. This is the basic cycle that allows the neural network to improve. To speed things up, you can have one neural network, and you can have multiple games going in parralel at the same time. This means you can batch requests from multiple games and you can generate more data at the same time. This project uses a client-server architecture where the neural network is hosted on a server, and the clients each query the server as they simulate a game. The server code uses Python and Pytorch, and that is all located in the model_server directory. Meanwhile each client uses Rust code in the self_play directory. This code is built on top of the blokus directory which contains all of the core game logic. Lastly, there is a GUI (that currently does not work yet) to play a game against the trained model.

Training Configuration

All of the configuration for training is done in the model/training.py config class. All of the values in this config are listed below, along with an example config file. The total number of games played during training is the number of clients times the number of games per client times the number of training rounds. For example if you have 10 clients, each generating 2 games worth of data per training round, and you train for 1 round, you will have 20 games worth of data. AlphaZero trained on 21 million games of Go.

Variable Description AlphaZero Value
TRAINING_ROUNDS The number of training rounds to run 4,200
BUFFER_CAPACITY The number of data points to store in the replay buffer 1,000,000 games
LEARNING_RATE The learning rate of the neural network .01 -> .0001 with scheduler
BATCH_SIZE The number of data points per batch 2,048
TRAINING_STEPS The number of training steps to run each round 700,000
NN_WIDTH The number of filters in each convolutional layer 256
NN_DEPTH The number of residual blocks in the neural network 20
NUM_CLIENTS The number of clients to run 5,000
GAMES_PER_CLIENT The number of games each client generates per round 1
SIMS_PER_MOVE The number of simulations to run during MCTS to derive a policy 800
SAMPLE_MOVES The number of moves in a game that sample from the MCTS policy instead of picking the max to encourage exploration 30
C_BASE Constant for UCB formula to balance exploration and exploitation 19,652
C_INIT Constant for UCB formula to balance exploration and exploitation 1.25
DIRICHLET_ALPHA The alpha parameter of the Dirichlet distribution which adds noise to the root node during MCTS to promote exploration 0.03
EXPLORATION_FRAC Fraction used to mix noise and prior probability 0.25

Usage:

GUI

To open the GUI in the browser run the model server and the proxy server then run: cd gui trunk serve --open

Training

To train locally, run:

python model/training.py --test --workers 1 --dim 20 --load <model_path> --save <new_path>

To run a job on the HPC using 32 CPU cores, 240GB of memory, and an RTX2080 card, you can do:

sbatch -p mixed -N 1 -n 32 --mem=240G --gres=gpu:rtx2080:1 train.sh

Testing

To test the model, you can run the following command:

python model/testing.py [num_games] [model_path] [benchmark_model_path]

References

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

blokus_engine-0.3.4.tar.gz (23.2 kB view details)

Uploaded Source

Built Distributions

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

blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (504.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (533.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (600.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (513.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (339.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (358.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (505.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (533.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (600.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (513.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (339.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (358.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (505.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (533.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (600.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (515.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (381.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (404.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (339.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_x86_64.whl (503.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_i686.whl (529.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_armv7l.whl (598.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_aarch64.whl (511.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (376.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (336.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (333.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

blokus_engine-0.3.4-cp313-cp313-win_amd64.whl (186.2 kB view details)

Uploaded CPython 3.13Windows x86-64

blokus_engine-0.3.4-cp313-cp313-win32.whl (178.8 kB view details)

Uploaded CPython 3.13Windows x86

blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl (503.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_i686.whl (530.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_armv7l.whl (598.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl (512.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (332.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (377.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (336.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (333.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

blokus_engine-0.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (356.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

blokus_engine-0.3.4-cp313-cp313-macosx_11_0_arm64.whl (290.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

blokus_engine-0.3.4-cp312-cp312-win_amd64.whl (186.3 kB view details)

Uploaded CPython 3.12Windows x86-64

blokus_engine-0.3.4-cp312-cp312-win32.whl (178.9 kB view details)

Uploaded CPython 3.12Windows x86

blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl (503.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_i686.whl (530.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_armv7l.whl (598.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl (512.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (332.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (377.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (336.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (333.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

blokus_engine-0.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (356.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

blokus_engine-0.3.4-cp312-cp312-macosx_11_0_arm64.whl (290.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

blokus_engine-0.3.4-cp311-cp311-win_amd64.whl (186.1 kB view details)

Uploaded CPython 3.11Windows x86-64

blokus_engine-0.3.4-cp311-cp311-win32.whl (179.3 kB view details)

Uploaded CPython 3.11Windows x86

blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl (504.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_i686.whl (532.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_armv7l.whl (600.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl (513.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (334.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

blokus_engine-0.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (357.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

blokus_engine-0.3.4-cp311-cp311-macosx_11_0_arm64.whl (294.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

blokus_engine-0.3.4-cp310-cp310-win_amd64.whl (186.1 kB view details)

Uploaded CPython 3.10Windows x86-64

blokus_engine-0.3.4-cp310-cp310-win32.whl (179.3 kB view details)

Uploaded CPython 3.10Windows x86

blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl (504.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_i686.whl (532.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_armv7l.whl (600.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl (513.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (339.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (334.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

blokus_engine-0.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (357.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

blokus_engine-0.3.4-cp39-cp39-win_amd64.whl (186.7 kB view details)

Uploaded CPython 3.9Windows x86-64

blokus_engine-0.3.4-cp39-cp39-win32.whl (179.6 kB view details)

Uploaded CPython 3.9Windows x86

blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl (505.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_i686.whl (533.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_armv7l.whl (600.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl (514.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (403.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (339.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

blokus_engine-0.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (358.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

blokus_engine-0.3.4-cp38-cp38-win_amd64.whl (186.7 kB view details)

Uploaded CPython 3.8Windows x86-64

blokus_engine-0.3.4-cp38-cp38-win32.whl (179.3 kB view details)

Uploaded CPython 3.8Windows x86

blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_x86_64.whl (505.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_i686.whl (532.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_armv7l.whl (600.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_aarch64.whl (514.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (403.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (339.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

blokus_engine-0.3.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (358.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_x86_64.whl (505.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_i686.whl (532.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_armv7l.whl (600.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_aarch64.whl (514.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (403.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (339.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

blokus_engine-0.3.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (358.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

File details

Details for the file blokus_engine-0.3.4.tar.gz.

File metadata

  • Download URL: blokus_engine-0.3.4.tar.gz
  • Upload date:
  • Size: 23.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for blokus_engine-0.3.4.tar.gz
Algorithm Hash digest
SHA256 549669ec76087c370005b9194f5822ec9bdd407bf627f92740e753c5b6024378
MD5 cf84a08b56b0fc5665238e7d3493c6ab
BLAKE2b-256 eb3bee3d90c5bc7b032caabf0a2394337e2d6288a15324229b692ec6d3390e21

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 deb5741cdb24d84fb6bd3cb177fc091db618f0240d6d63ce781edf68d22d48f4
MD5 1014fcc06f413349b9480c6c50619299
BLAKE2b-256 0c1e597510e6bdc5619767d841fb5b5439422e069b257288236a5a0ff5ec0d84

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44131ec44eaf332fa2964905bededb7107bd7b782356619b6ee1ff72ca859e8f
MD5 cdf5d657278d97ef90e7baec2fcbf741
BLAKE2b-256 d5dada95e775daa3936e58d6d207204d8f2ed4a2623220e3803ce577306eebd2

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 536afb9d750a37212beaa9b39cc180c2bb0350ec5934b96211453ce85aca778f
MD5 768403b814aa1b9f249dd4f5f7321cb4
BLAKE2b-256 a5f6ad8f5fd5c854b067304ca33d5d877bffd959f00b2a3d7dcfd22fcde95a51

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8255447bf45ff68905ba4efea1d9f79271c4e15b975e93b030ce89577ae5659
MD5 ed5004e558b18d2ed6ec0be59e7f58f1
BLAKE2b-256 65a8b0116ece126b9e79b8c0c8b8b9e570e3305d61911d8010f975f38f7afdc4

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15d9957f6047bf97737d36b8216446f0e23b959a1aae796abd29a2beb72d299b
MD5 98df4503677fd288d3f8f91d37196f0d
BLAKE2b-256 aea9406ad6d533b4934584e2609617def36d5bed20ea5c58875b7ce7b2edfd9c

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ca860dab9fe908d990f20d05363dfea69b46a81c1323c8d6f2b9ae90ceabf48
MD5 26ec49f408613276e78f865421d5143d
BLAKE2b-256 e20ec17fcc5459612864dd8f9c70cc8973471d25f8448400d829da9fa94c618b

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f84110264ec20c8fddd0ba087d88c86103f2a6a7f8474f424102e5b1ed3d8517
MD5 31d541304ab3e80036d2edaa863d6c48
BLAKE2b-256 e94f698bf011824268098de658ae4a5d20c80903182dde2ff3cee90d42fbeb30

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82f24c5c38277420b884425e2887b1146d8ffa24299dd0483bceebb3a0cf859a
MD5 302c07c7ff33f0124f0fc448717b06bc
BLAKE2b-256 ba72b8bde9782cf97d5dababd23ad00a11be7e5cc7c738a505c8218b19eb99f3

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c4dc17b824f01d21da2e16cc44c25f0b2c5cfdc718db8d31bf673edbfc27c02
MD5 3a49207a16ac46e1ac47bda11d10a11c
BLAKE2b-256 5a611ca3cee43edec3b400d20ab06e7e0bfbe323fb4d41167acebd1397e1a85d

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a76d9b9decc02d323fbae52db015da9fcdac9c841c2987d4e90a81b3dedebd4b
MD5 a2066dbd3a3f30cedd49a01591b776d2
BLAKE2b-256 2aa0d16c2206ee7f303ab704db29e1979a90db0ec2e401a6a6626f66388fe8a7

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a50d6bb745f91ccfbbdd4f9dfbbf98666f6d44066cc1731de01b2e9ad056eee
MD5 709ab9ef4e39e52398fbc38d94d8619b
BLAKE2b-256 c1dbb7bbb3b6a6a6e1ac21ef17f3ca5329ae16497904dd9ef3a7d928372485dd

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0c5ecbc39bed9bdd1991759215bc5618f84fd4c5e9531ea8522103583eb223e
MD5 771a133da94e345d22dd998720f1c0ba
BLAKE2b-256 6ed7ce7163f8b8e67b2ac5148068355aff57be02299dd216d29594dd7ab72c60

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15255e7a858676d19f35eaa11800eb14c022be16cb308a0c951f484f12a2f65d
MD5 3ebe07cff2586b579e3c9f4444b08d29
BLAKE2b-256 74ee1d5f8861f82a5c4f49dbaf792e5126e0795b147b6cb3c5e159f594e23065

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88f324b9d7e85a24784414f0d729da6d373e03374e75caef4027fb9a624e4224
MD5 88ae53bb0275851a395f6a6a60034197
BLAKE2b-256 d0923d084e9d0ed7ef4470603b434cdc4b986af44fef94755153eb4b2485bc58

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 342398b5724481192b48be5cbbf123f0f985df2646079bdc05e50c2a4b5245cc
MD5 77b2d3873cdbbaaaf746770ff363e6d2
BLAKE2b-256 82ebf7ede7a57da5dbd7f2e412264b06288aa6b5a13e24e038cbbe62bd397c5a

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf0312ec603b8408bd619f4e9b43d2a0d43122ebf02145febf3e6fdc8b29ee57
MD5 d297445c606db3c41608fe11afdeedf1
BLAKE2b-256 21c0f70709e66bc6ffd22bedd0c797fba7593145910c4c76332bf0d1ce7ac9e1

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a02f526004febbfe590cf73c6bd9980b1b660f2d825b239ee26b70cf43ca93e
MD5 3e22c499337cbb8183d9897c3eaeaa69
BLAKE2b-256 8ff04681c762ecd498655d97e511825ee8b75e9b426113192de51553d2527d6a

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5456610cedb5378cfbbf34b4010c48132f3f59448a398a8f8209b324b0423b7
MD5 1a74c0577a3b4434e249ec907e375604
BLAKE2b-256 c6fd238091d70fec5c7e29b745028bc0fb41d943c1ddf259c3acb51daef5ea6c

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 138740f234e50e1b9e70587c4c9fe0ea12bd54dc792ce54006af30ce743b3a65
MD5 5d31d55294fc720cfe99edec4db92580
BLAKE2b-256 296d4986fd7f4e8182ece6d0323ccb8802fa1dd18ad863f4ecd99a278ba1cb57

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b92fae2cc43ad98bf3625f7dda8ca52ee9f825dbc731ebc8c0f2dcf25733244e
MD5 bb0770b9d05e766d2709027b8d974cbe
BLAKE2b-256 58ea5507433ede99a7b64499b71455ee2020f4e610073bc29fcef2bba1118105

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af9224cb51ba255d69e735a80b62d25fcba386650ba085df37e4702a9d18e5ae
MD5 467a524763737c65e5e4cc2eac940cef
BLAKE2b-256 9425f054348960e675d34e568320eb99ad20beb45e81023ce2ce44504c36f30d

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a3f10b26b880a31ceb7bee09283fb1f72cbecd73523f357668268696a80b3b2d
MD5 9bca2f56ccc674db54f0791351535f48
BLAKE2b-256 2c5b52ffcab619dc99856528391c49313f46d44b492d9c0095e37171ee6624fd

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a88c7d723edfb4a56db8800db05012479f30b065565faedcacdfe859c183723b
MD5 cd50fea41162c63fce6c13befe875d52
BLAKE2b-256 c5d825c1f2ca9d4defd126d7ebc85830744ca5593ff02204e9eefcf59aff7e3c

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe1259971485394edcfaaf693b65e627da898da83b4af8d865871e78dc177e62
MD5 570ba33e31e24a97ba536bc3d9294b48
BLAKE2b-256 094f2c9ed814af66c8334d561c9e19ecfa030850a66f0a11f8949cdc94edba0d

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72624f999da47b0d2793d5777c58a067d3e4bb3e23f9fb587237e0587d3a5ff3
MD5 63c424a20ffa059cc18e4099230d83b5
BLAKE2b-256 9b4ee8a76da1d3d86e7698a447bf6121e9990d0a299091e86db8e69fb1940912

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf48580c2d5d72c325173d00265c088b623a400f33e67b136e2fabb2b9dc4440
MD5 7c505de92ae6c6f5e8c4dbfea31e0797
BLAKE2b-256 eab840a484f2f9e83f7c7a649b8496f1874f531fb5a672b5f75bd6df926d3f8f

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4190338b1e7276a9d43feda03400744b42577e3e23f124818879ca80b64bd06
MD5 0af7fadbe887f7025016966254f58a23
BLAKE2b-256 dc00b1b9a8dca86d5a6dbe1cf84dda051187514f05ea91479845b3ef231569e9

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00a4a12e9d84d929f5c6991d8ea05f9ad31994edf0115a469fc41059c863382c
MD5 d1ccfe401f9f7df2ad1451f7785782de
BLAKE2b-256 956dd6e693b778c9e919d6bf8db7390be8838c7545b1078b0d8306b82817cb48

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b36ec860f92e061101ac303c495bb0135d5baa1616c1e8120bc77c6d24b1f6da
MD5 ece8ebb242f2bf868335ea42db40887a
BLAKE2b-256 6d6ccdacaa2eaad07aae87593a17524ed596522e990367b2ad4bbf91d073f713

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c23e8f9052f24fcd1f18a83913db0c14d4e5dbea2f59a622d83b251e244375c5
MD5 1653d30ba477098f62545c3e2ed621e6
BLAKE2b-256 9c1faa9d91085f372b146eed531362d1a86a3ef4b81aae3e579749a3502ccd5a

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b9f74dbf1e65d7cae4eeaea1b8b1c57f5e54adb852dbe3ff9df287bd4bae1c79
MD5 3f7940a636e89cb47ce55630e6755b70
BLAKE2b-256 bbe4a95a6e6eb02dcb722b5180cd6b09c0cbc3deadb93b817aa1169df0a387cb

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4efd513e62c9ae92bc53ab811cf1e1fb20ef2bbd4b2b51ea524aceaf4e8eaee6
MD5 36cd31769a4d623fdb9a3aced8220106
BLAKE2b-256 b039cdbdb029358feebd368ba52708d9d6b1989a2c7e9094ab256be84a0df9a6

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b629d0029241ecc9576f78d00861c100c0c77a00c280cd5851ec0605026d970
MD5 1dcff107983d05845913979da29fee6d
BLAKE2b-256 1baac4b7b578e24e3ccb5bb02085fdd615af681af52bb39afc6a7746fa19dd09

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81728d151ed55523bcc699dd54ac95cc8841ef56dc33aa1933ca81eebe61c21c
MD5 1e0070c85706d282a5ae3b2db163c922
BLAKE2b-256 35215c6dbe3bc2ffe9ecc8788b5bf3a716aceff7ec2c53acf925708ce545f40d

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f9e5f8ecec034e4624a6e879ad4702eed2c0638279b6bac486079ef6602e45a
MD5 72c358bb635de1f8177efc33d9cc0e8e
BLAKE2b-256 b314ab8091dc23a3e4be2b2800df42100c32879346f3a049c3ef66716b43e468

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5035f5a10893e382ade195be422d697298ce401b2873484d28add9520e3d322b
MD5 76e9374f3f42975ad9a2089f6d0f8ab3
BLAKE2b-256 f110e44afcb7a15682846b27772e4d518960a8aa86263cc176ced35a2c361f72

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 585a7c67cf3e56aa38b4e5ca27161cb96ecce39bf26b0296b61900ef0aacce0f
MD5 86f8cdc79144c20362e6b3daf83bc16e
BLAKE2b-256 140c744d333a8148cca1b56fca1adf85d4948ca61675252c6f85cd7d2e9b6ae0

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b7c2c157b3a73ea0890ae1f5769f63b9936e8f02e770d98e7dea99291f7d3899
MD5 51610d80cd6369adb29b1f466e7e2690
BLAKE2b-256 d5b5423ab90530e9843fc310adcdf94ac5544ad12cfe8a6ddb2ede4ebbdef478

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5085dc3129ba587a460ac0b0c9b7ab47ae1b30f26a0c322cbb1e2d523183b5aa
MD5 13630cef4e9def1ecf19feb0452c7e38
BLAKE2b-256 78559c0257950494e366358e1a2fcd883c92a0c754761a701b0a256644f332a3

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5c30348da041998b4ca3f98a0b183ba91a23e955609d84d2cb6fce04380a5a7
MD5 78eeaf33e3bf3f4116e5858ea2d61960
BLAKE2b-256 68e79e02e5415ce63645d4181326942b01e16262d285e3c9afaf1d5e5071abef

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2aaf79963e489f7be6661b451f873530a17fa6468e53b433d9c366cb33d4ce52
MD5 d1d8ca57edf24f3fad6309ba59d4f9be
BLAKE2b-256 9a28ddd253deaf8f16c72c27964c74087050904601d57435da8319a5f26bb705

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43f1ce97c12a6a374dc9a20bfa1f6e8c33ec323f2042e5f5fca89fa5a07b79fc
MD5 9200a49c12cf58c0e8339c569a9f83e6
BLAKE2b-256 6ec9a60d461b929dff8395a0489637fd0518c04db82b294698d2c7cbd48d9346

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1db6472ef93d0c22cbec7477458c16f445fc942f1b53c65404e8367afd626374
MD5 bd534663ad97f552dfdfe93b161bb372
BLAKE2b-256 46af8f708b2405167d82de19086aad2fb5e80bdce7282cb89aaecbc84e5456d0

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 424c5125021677b47ec1a097bdfb9b93e43054b60f6173c42cdc7e676945725f
MD5 90b72b8e5ad968bd66570681a53385a6
BLAKE2b-256 7679e67eeebdbcfa0f99d0d2a1886bd82977d3e2f2f65a4fd5c947ed84fa289a

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4891cdc56f1e0cad9028a46d47b90d6810da0860cad627527252144676ccc2ce
MD5 202e0ee2697551e7d925126729914f84
BLAKE2b-256 4794a837b2e5e2845f23f356da85c1d547bd9ee08255af720a45d46b858084af

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d96ba334d41b7a3e1170f005f717fd376923d5e0c42bbdcde1a823e58ddc68b3
MD5 7fcadcae9e7728f0969e03f92a13d29f
BLAKE2b-256 550414959408cc225c3a18497edca9e8199d1282c26d7125e3625e606fb92c94

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f11ec2b1fc966436d3b71fd521e8e88e0d67a20bd4154848e8069d908005a63a
MD5 cf90662de8fc8df5cea637fa82a0191a
BLAKE2b-256 49421606cc03b43a96d684313ffa732dbe85c9dd04c21d1c21a4d3255bbc6b57

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a15e40a121d91a067742db47550ec0c4d9c4102da71c47e41a2fece0d345fd67
MD5 cd5dfd1b6eda98b4804e737ad36e0757
BLAKE2b-256 18b8c2aaa3bbd7f5257d6ff4266aa4a2622ae354abe16de79dc9d03d9dd050c0

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7f3f55b9bdb45050fff947743b3d44c7dfbe47cbc2916e5986a9103c53a0a00
MD5 1754a862104f1a5b3512cf6fc4f873fe
BLAKE2b-256 1511902a9124a417db4af52f99723f7bdfea836ab13e62b4913332d3e4fa1287

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 419dc48938f0230fefc03ae466a40c47e43d920b8752607faff28c736e3c13ed
MD5 2cea408a752d84659c9891c3070a1e93
BLAKE2b-256 e32d91c6de39205c58a93c96a0bfdb85edd8c8cb58aae44bbfdbe43a9d347672

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 03db2bce7a598b317a0563b47f5d6a9daeee6cc5039fb0af38a6a15ce9a45761
MD5 3a8e699021dc789f10ea0a8e511528a3
BLAKE2b-256 00ca012022115aaee9bd7f90c059e7ce2224a546d3ccaf45fbf6ea020e013412

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 356f98ff89cda228372375dd921ff8615046d8c1a41c93a3f2ef01673c9c6ae2
MD5 950ab5a1505b6a22b72a90a692f48b8d
BLAKE2b-256 3b4c6b285c05097164a4420b073a38281a3fcb3ebcb3e9d40fcc7ccf4fc7fa9e

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ac493204d484e91dc3a5b69c425b2eabff55c1321b12b9cd86f352d5af5697a
MD5 6f996a5878edd1f9ba8559b6d9da68d2
BLAKE2b-256 7a64b8f71fb8f5d776b84c0a191e8caa9fec6413162a6af859cf2d750eccc47b

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6043fe0b9f8bc5f94995f6a8af201654211b1e9209d0d88251f092264f49795c
MD5 522a08963666a564fbfcbdaa5a8e88b4
BLAKE2b-256 3fc00e0eb88e4f5b42dce144d4917a2c01701cb50d72567eba7ef5cecde7ab3e

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8017624ca79744a1821fb7051632b55f210950bb41874ec5c0680b2235f90b80
MD5 0d345b8569be050fbf8bf4b019efd39e
BLAKE2b-256 5400949b0ea892f190c3dbaed906d6aea6eb75df59920b64826dcd80fcf9e048

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7d9c799ac0aaa96eb9b12b1bd5fac6baadd1b5ca5e8838a02b078389b8f8a07
MD5 6e62750ad59b413fc24db3e88ed03a98
BLAKE2b-256 3e0048594e6dc6cf66c90bc8afd561449a2bef08eb1c8d920c717142cca3caa0

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c259f756662548a8fee210005dc6fa38223b023cc4328720841a040b8d7476d
MD5 46553a4462a58dce14215ef3abbda781
BLAKE2b-256 b23d79345bf26452d7e375555ed095ee0ef0701460f9df99e7f1fcc6f8ee7a58

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fedf97d797659aaa65140b50b65af2cb68ac48941e98807a42e42ea219fc746f
MD5 6be3c647215515ab3f81082da352ed79
BLAKE2b-256 5eb3d59ac703a778a79bdefeb9d86237e29a7ff81d0f728f3caa40ea11917702

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ce601262d8dfd748d8cb043cf28a246bd0edeb4d87cfbf2ea70b09ac7eadb8a
MD5 bc3f65320a34c1f7eada752ef4d7a2d8
BLAKE2b-256 005e6eaeb0826490475356f3fec2771548f674d3964040ce435c4027ac766616

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87abe1a7edfcacbe4fc56406b276e4a0f4fe6c10d674bd34b7da1e33e84ca39b
MD5 bde05a90e9e14b9c6fa97368ef98cfec
BLAKE2b-256 76f52c7f6e8d09346b0e1392de117e3fc9b8224661f93d577fc9e877cd45d144

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f7355289afa4b225d5470ac19a07383698a9006ea269b5b30a826ff64159e30
MD5 5c2bfd43030d6850a01f614ec5503a56
BLAKE2b-256 e030750c61cf19f193c2dae13b8a034806ae5ea5524725036926cace91c0f847

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14a2c705cacdd303d5de1d67da67250e4d2383839f97fce5009c5a7cc2695739
MD5 290508f72584661a39dc7e265dd619ed
BLAKE2b-256 5ff8fec757590a9f1542a90f30d4f281bc0dd7f23d6bde9294fdd9a5fcbbdd83

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4d3da5bb588288cf33b2dbcc1248bee0df4536012a0f3433a29d45d50cbe8df5
MD5 27959c549c551bbaed12e18a5db5364c
BLAKE2b-256 81bbcae67854365ff4abb6ca0cd60db1269e70092851a7a48bcfbfcc49aa634e

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d6a20cf98d2cbcd5f06237023617fa5a66f5003cac9b5627287061c6ec3db4d1
MD5 751c0767cf5e8db763876a9eb3e542a7
BLAKE2b-256 dc15488a7a5fc42e3100f6b825b07a7d61e0da76a8ba630ca668c0dfeecc5041

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1773ff4f79194910bc30ad450d821eb3858242dde71e3f397b077ddbfd7bdc9
MD5 0462fcf537abb5b8f25a6584f99cf44b
BLAKE2b-256 dd2bd52562f6b9219a7e55a02b3fee75feaa685c336c5b9aa227fbf2598029a3

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c302fedd3e0f4bf607709ddc59b32bb015e141ff3a6d47ea4e016a35bfb385b6
MD5 d6e9bcdcb720cdf3668ea2a6c31a7c8e
BLAKE2b-256 f97bbde1bafc1a68cd5636a8b485425130ae02ae24bbe027a1df201229ac8043

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ebd5aebe9e1ceab19d9f8567f4739912f6121dbfc59147b17519cef41d5e88bb
MD5 2ff188b23f3a130faa69d8aae952f4f7
BLAKE2b-256 f262213fbb12a950510aebe2e91f479ea3b02501d59c2ad875b56d7498a8f3ab

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0c7b68479a0c589499799b8206e9a02df20661ca8a6cc312b233c231542a0e9
MD5 82cfdd357b3ac860a6d7dea49f6210b4
BLAKE2b-256 ab67fd5adab74aec9a44a958f289b6ea36fe9f51bbba38d73a510be6057effc8

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 066654dc2b7087f8e99bb036e736546e97e09898a371d54e2264b647d882b901
MD5 d385fa8c7d8ddb328317465329969bb4
BLAKE2b-256 daebbfe2e27394134a6c42bbc18aed73e01ae708730cba610ba8cd1c8973e99f

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae10c4711b0ca3722f3e115432fe2b15ac2fd3e5ed81305698ab5ee7602ff07f
MD5 b3b210792f62ed8e2447ecf8fc38d952
BLAKE2b-256 fe6646ac333a8b97e9e854cfdee43b0789b628713b8a27a8cd9cd567ffdad426

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d3c7ffcd3bfff8cfd02a08dc3320ef35df4e3b0291e878ba3f450828df2acaab
MD5 7acfd23835fd861450b63d5fac85db0a
BLAKE2b-256 1475deb6d2fe1bfcac773e0bcff86bf52c0d3b0a7042533270f36a26feb3ac5b

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b8e89b1045fec9069cfc446712edf6ea8f194df31fd58dd06bcbb19077535d7
MD5 038b610a01dc952da6c90426826ce633
BLAKE2b-256 c94c1f7ac2c4cee6c18c2315a8f022bdd0ca67c4aff6396769d205804735a0f1

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6396a2d2b4eb9497643d94151f34f82c7ef2ba831d6ba5b4f8cb269d26fb4d04
MD5 b3694ac5fb175538bfd4243e2aa6b7df
BLAKE2b-256 dddc396be8d41c82056c3ae5840f085d0c27fc4228cd972bf48b8b4616bed11b

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 28106e80897bbc4541332c4d5c3d2934201aacd6a970f57c3d4d18e3eb17b5b7
MD5 be32f817d5d59157b1d7d0722c483e3b
BLAKE2b-256 8703830b774a958acf79a5faaa86c3ba90cde83ee7ae271214c7a8a755fa4ed3

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 173cd5f3404e25162336a368f5e206d2a89e8fc71bb66d059442a7531a8c3caa
MD5 95a75e01bd6c6a85842a4d6a66727192
BLAKE2b-256 a64a423773be8eba92e5a64a7c6a44edcc3313feac4d83668ebade567f3e0d18

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 217cd76c90e9f5bfd72ed46be48541cb9207eaf9ccbb34ea93857e4bb5e1dacc
MD5 f5c4172f9798762cc533d9774f59697b
BLAKE2b-256 40a31df3791f8ebea3c284c62dbe8b133e5325bf67caa012f4d276ce81cdd115

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c072593c81f61d9248f7e1a873250c1956714a0af2a16b1c3af8179caa5babf1
MD5 ae1281e51985d08a3215895bbe0196a4
BLAKE2b-256 128dade6e9f829a8aff0a8161b064ae25b1a9cf7970578bd4ac18531c56b7675

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56deb499021fa34e15764cf1be9a84eaf71c7a2a970dd70efb820fdf42d36fea
MD5 77a8d18f7d03c2cc739bce9100af0ffe
BLAKE2b-256 f448324d74ff48c0a0980aefc9cf2b6c5b0f109ff12ad4309b09231322f2e69f

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 062cbc14a6f3066a8c0d81033cbc7c8fe77f6e10ea9437a96b3b86eb5d0d9504
MD5 2e3ed164866115a485d5b53797c9afab
BLAKE2b-256 8fc6584accdc5e2139ff0634c717a8de7566218de46946fbda2d51bd771b8216

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 caa30856fc3f02e5772cd1a4e9c329443b6c1208a8460b56bb9271949586509f
MD5 5e4c9bf1b44b29e79fd0546d3bd6fccd
BLAKE2b-256 5e261644fdfc1a610e7e80d29d4db5cdcec057470aa9167e77fcf586ceed73a1

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb29958c2832a05a7f523f9365c06d214934658d5a5d47825c8119e5067b3ebb
MD5 643e4642259288a3070a782c4d75a2c6
BLAKE2b-256 854b78e0451e1fc9b3395c1d8fdd47288637bd313c42bb9964c1de9fe2dc591e

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b16df6f8a149138599ee777f5ea443b335035b7f8390036a0912465cbc0f989
MD5 386d4f0659a1c857f8fd75d77d0e923c
BLAKE2b-256 e3cf806d2ae63a69e35df8f1b3d4369169002dcf7c197538e0017d9a0d84d74f

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a57e5168555d150fda310789863b9272be17231b67b83ce299340e5f594186a
MD5 3457192cd40748560084167d14ce5765
BLAKE2b-256 e8026bca413c39798a1d5ec7c0067a67b349fb04518c27246600bf16b41d296a

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eac16a25dca5f05a61d0f360b55d3cc5dbb22682beb6287a1b5d3a61ab1c515d
MD5 577a200a01cdc3a76b8ba127d103cc98
BLAKE2b-256 2c07328a8c63ddf008faae3bd73868846e527019b8ebb22b3a2e10462f3e40c4

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a93fe92256c37041757f9f19023c6636d09a7f0e94ed59755cedbe4ef931341d
MD5 a944066335411116d7484d97aec86d7d
BLAKE2b-256 980affea6f20dfecf30e7142b379fb9653ef5cbee7cd245707e168116b994459

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5af5a4429bb3481d65d3707bd6d23874a59cb87cd2fd9991b95555942a1ff9b4
MD5 10c683a0fdbc805c7cc09a542d63f2cc
BLAKE2b-256 00fd58e49adc9022c84e43e4e6ea54127f1ae2f93f2eb6c976558cf809958681

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9a49eadcaa1f2da5cae5ed0bc4e094eac965a9da949368c5b71ff2777067fbb2
MD5 d92ad67b61b5293c8bc302f64752f665
BLAKE2b-256 854de07a1c3692ff9d01b26e89077597cb0747dcdc837db295b4f8e1d38f9269

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 93a648f350d148458ada5b9ac8ba195655769643e4b3135eacca6489247e0572
MD5 f7efbeb84070b2378634ceb35129aaad
BLAKE2b-256 bbbe9214b29043c0864e679ce04b3da5206ddb7e19ec09c06609cdb1e7fd61e1

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2b4a9b13399ee320fd5e48ffe1de84cc3e7838384bf825b18909c5483756499f
MD5 93d6510cef9d30c9a3b6df5efa0aeb5f
BLAKE2b-256 1429dcdeb1179d30b6fb6a7732b7a2cb8ec889862f8ab87424732a2a4de9b092

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad44bd4073eccbbe80ceb6808368c5fafabaa8f55052b8cdfd588a2f79da403b
MD5 fe16f858c50f831b0cdf6b1c688a3d8b
BLAKE2b-256 9af5dac8e0613f17d49e0693668fb6ad6a82800e310bbbc6e7b670a03ccd6ab9

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0ec6588f568f9f39b3e068fba821dfab27a2ac48048de9cefdc923339039b5b
MD5 f53b8b1fe6bd5c12f120aaec19013307
BLAKE2b-256 01363cd44a3bf201b68bd5285f00986b6de979ff381096161d9e799bc56c7cd1

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52a711a9b076006e67bf5fd243924bf93c84b363464b940c548e8748f663bd0f
MD5 9a8e1d74ff13480b71c5f7b5bfbf4203
BLAKE2b-256 7f6e02b6fa4f81f44e9dbb4b7ca6c667eaf5d17ec3481ea4cd221fcc9c27cfd9

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5d8ef4c1881c20bdee15ba6d726ff7c4a5cc9ebf66deef31c765facc010abc8
MD5 109c0e9d618e3700b0bf6512347383e1
BLAKE2b-256 dd9f7df6d8f2cc02daeb3edb567ff082b67eae32d4da88c2e8377917a30fc7fb

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48de9e4826b94fafc313412b0bdd4b19b78df14a1cc25d057b49ea5b2b20ff8b
MD5 efc00e7127076d69c847b3088c4cd78e
BLAKE2b-256 417d0b69f106eb08d3959d42a742bd2c0c1e60068f6c4a035a13aee49842d996

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dab1aef913cb0088bfef0492fb1e1dd877ad6747b9c691e4da9a92723e8fdc82
MD5 59606dea73a4cdf3ba645dba33676c58
BLAKE2b-256 5e1dc0ae251efc19b8349f92db6871ca641ee7cd9372befc020a039d41b9d2b0

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 617b7d3d4fd987f998bda4803a997e1782937df37a813335c57de575b800087b
MD5 000e723c66e684ef6677f49e1754da1f
BLAKE2b-256 505dab7197e11d1d8f41081ef844f1b3911a116c7b7bdce8075a929b92401794

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d2b0a73ac4943b1a4cdb6c150bee5bca6d80e2fd8e15821399bb4eaaeffcbbb5
MD5 453538f5b106627e60c54a50bf475179
BLAKE2b-256 1c73416082da4e6219b674e954674aa2fe253e8184d46c20eb9bc8e5aaeb4777

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70ece90f9e1c2909ccb1529923f936f3810a67f608524311a707ac4b5d1ecbae
MD5 2642be723432321fd1aa56cd9593c33a
BLAKE2b-256 e36cc6b540d7f0925001d8a52fc47c9d498a74709a2d4caa50464bc5f2cdfd5d

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6f9b75d1776d465cca215e4d8e4364782ef2e5ebd0dc43cc15406e991b2fa0ed
MD5 3297ce692c2ce15519a4f1762ea43c3f
BLAKE2b-256 d2d0a5f66f64654f5f2bf3371d8bb3145e2f186f38f9d3ff76204264b113331b

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c0e56334c144c92adb65b90e37ff58d6954d34d66a365d409b53b58311081db1
MD5 cabe2ef1c20c8ae71e1c39f6dcdc38fe
BLAKE2b-256 0de2733a4181db47ab1d9704c90377431b8d7085a182f1807b95f9cd9722ea67

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0d5330855fc3f9e74b38d5d6488cd8e518b8624b54be3b9abfb5ac5a7f9147bc
MD5 349eaa86f64ae844f19d3429e76747bf
BLAKE2b-256 b29993e594bd87d981469b54f15e2e71c48141899275beb6eb4015fb64f0edc9

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cccaefacda1c4f0fb1961dd4651a7af21f62d14ae9a016e15c7e317dfc47f3e0
MD5 0bd3e9a299919770666aae670e0646dc
BLAKE2b-256 e3f18fc120d28c29b3b86fcd8ebe7a5fda29ee4d2d557fb272b9c1b7995868b4

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e63a16b7bed8fff0b537dc639184f04602fe5383c68b5ed9f3cc9dd85c925e6
MD5 92240f234fa79ba73bcc158364698750
BLAKE2b-256 80b286e56b701335d2373e0ca468af6519ba7bcb34cef04390b02506cd0d545a

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2680080e576ed221869470f07ade5324dc9111ebc836fecb505031f3d86bec4b
MD5 989ca39ad01b3c4d493dffb3048ad5a9
BLAKE2b-256 a1b3a8389d9b2fed730a824a4aac0e340802b8cb346467d98e648beaadc960c6

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc4827bbfcc774536e6112ccb4b1662edc21e9f99b617f970bc3bd7ed40e3d56
MD5 257586c21117918cce60b99692a065a9
BLAKE2b-256 eb7e8ceda6944381f362db976a9cf19f7df50c1b0cea22732c0c7f0bf34c73fd

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdda1fee810f05b0e3846ca1a2921a11d44faaa33203444c581284df22f77dfd
MD5 500cd58e6fee06caaaaea3fefc88c17f
BLAKE2b-256 d69398f1f557d6aac2828d023b4af7635e1358162887a5a86fe30174b4cc109b

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8339f087cb326630509c5348fba57cfc59771f64fc81873dc4c9d3ef2047a82b
MD5 a5d2b8315c059909e4d8cd591f5b208b
BLAKE2b-256 01ec2d6c9270ad0d4bf4475f39cc6343d3fb59559b3fc5d2073159dfbd45fb84

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 456d8f506e985a35435f3e32d2121a1e2b8964b362e551b8084446b7fd9bf308
MD5 e7f0e66c0769e7d546896fad7e6f139f
BLAKE2b-256 51fa945b1f4f91f6aae324708e456897bd7353d01785c238284c1538e7bc3e1e

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd0e363df7be901443e329ef3e8fb7f62e40dedf18e829d3658ba62f74e39e04
MD5 40ae76583b67acacbc4132be027311e5
BLAKE2b-256 3ddb1010604307e8db035f4efe420c527ca52a3a74d33f07360b143ec2158311

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1e5a50a3284410bf3b68e8f133ce5d5f8771572223ae5bbbc147fe9b41c866e
MD5 60ce66b7c86245a1a8dbda828b85fd5a
BLAKE2b-256 5d5ab57a1d21dc5e26948a3cd20cf1f1b4a5981184b02e9095bab66f99b196e5

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f71a6a1608fb5621d0cbfea9e27f908f887b967ad83164fde1ccb3d3652148c7
MD5 9c35bb4ec82b93db3e0bea71ab54c94e
BLAKE2b-256 483d9d6050478d7fe6a39b15b2d53e575f4448c076625b250e12801b10e70992

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43cf5ab2b66744ff9ab819745eb84a9ab9f29077d6f4a82c7fb9ec03fd07e830
MD5 5bd07a8f83ebb72a34c5070c025d8e73
BLAKE2b-256 77134444f23bcff9ca8a16df45f08d14f4f8dfd3d1caca4a0d140411d6a4c346

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3824f7c0828e543a1c78b8f82068cf02de13bbc6ea5e75de0c789944cb7fd6c
MD5 5621761d7e0729f9ed2ed0d12d0cc176
BLAKE2b-256 25910ed01493c5d04ac3d19d0ba1498c19af992ba2aa72cc20a79c38c321b143

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f2a2b89ce26848a676fd635bec20c32654cc620b0e52a40329998d6aa7e944e
MD5 4f053a7cd20552c6882d348619afe935
BLAKE2b-256 2e3fd8030cc18993b226f8370030a075fdb2371bc67e81b91b3d193d4cfea886

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1df99f5af5cfc95382ad40b90084ea2b3b9beac58338eacc672bcfa8103a0847
MD5 0a14c8294fda2a4820a3f1cfb94c4679
BLAKE2b-256 6b8b897dd0c020cbac8fd82084d547d25f2e34f915f2266f42de1e694ca48be0

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e215752004d6e42f4381174508fb3def1b5cde40095cb5fa1a938fe0b60b27d
MD5 be9223112388f758f8715b78a22ae0f3
BLAKE2b-256 f85af00ae63e794fa03f51339abf267d20f4c83f55201186afd9f4cd9c86bd92

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa386e58c5531700f5219b9060f86cbdc491f901708604b222a80871ed4258ed
MD5 2cf031e1372a4a6d246fb0a5a6fbe514
BLAKE2b-256 ddcbd5909f48edb625afe551fc73d6f484223f8f33ec45362405869ecf56f3ce

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 569581601016a67cf0efe1c989eb9aa0e5e9b029bb6ed31ae0aa1b1d690e0815
MD5 5e212b3c5643498c04e36f77e6088a58
BLAKE2b-256 c0a67ea93f050385d1770b58685b8a33831dedbea6c814f49c08fb72dc22d4ef

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f442ac761a8ef8a448b13f1cbad78bd4bc13dc301cba207d6e11535881e1a1e
MD5 0d8b370b265f75c0f4beb556fc810fde
BLAKE2b-256 79009b86d66a13c5fe4a57cbaadd73be45cf1e6453202c2d562f3cf2cabaf5cd

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 907fbf084a61ce5d561f33a417bb536402e04791d601305cba314fc0636a4e35
MD5 491c3679737617d374cd73ddac953278
BLAKE2b-256 6b9e40858c81231943b03da871349eac6a92252c81eb04b2217495f9cdc02373

See more details on using hashes here.

File details

Details for the file blokus_engine-0.3.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blokus_engine-0.3.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 410e003020e4d9057d8abfc4a7fdb1c0ca7b206be21296cea4f6576bec666432
MD5 d3454e99862026830284f47072277c68
BLAKE2b-256 57b11248c27517385e8057f39cc84887b7dd5a4961785d728df43397d720f84a

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