Skip to main content

No project description provided

Project description

🎌 RustShogi

CI License: MIT Rust 2021 Python 3.8+ PyPI Downloads

A high-performance Shogi library implemented in Rust.


🚀 Features

  • ⚡ High-performance Rust implementation
  • 🐍 Python bindings support
  • 💾 Memory-efficient data structures
  • ✅ Complete Shogi rule implementation

📦 Installation

pip install rustshogi

💻 Quick Start

import rustshogi

# Create a new game
game = rustshogi.Game()

# Display board state
print(game.board)

# Search for possible moves
moves = game.board.search_moves(rustshogi.ColorType.Black)
print(f"Number of possible moves: {len(moves)}")

# Execute a move
if moves:
    game.execute_move(moves[0])
    print("Move executed")
    print(game.board)

# Check game end
is_finished, winner = game.is_finished()
if is_finished:
    print(f"Game ended: Winner = {winner}")
📚 See Detailed Usage

Address Operations

# Create an address
address = rustshogi.Address(3, 4)  # Column 3, Row 4
print(f"Address: {address}")

# Create address from string
address = rustshogi.Address.from_string("3d")
print(f"Address: {address}")

# Convert to index
index = address.to_index()
print(f"Index: {index}")

Piece Operations

# Create a piece
piece = rustshogi.Piece(rustshogi.ColorType.Black, rustshogi.PieceType.King)
print(f"Piece: {piece}")

# Create piece from character
piece = rustshogi.Piece.from_char('K')  # Black King
print(f"Piece: {piece}")

piece = rustshogi.Piece.from_char('p')  # White Pawn
print(f"Piece: {piece}")

Move Operations

# Create a normal move
from_addr = rustshogi.Address(3, 3)
to_addr = rustshogi.Address(3, 4)
move = rustshogi.Move(from_address=from_addr, to_address=to_addr, promote=False)
print(f"Move: {move}")

# Create a drop move
piece = rustshogi.Piece.from_char('p')
to_addr = rustshogi.Address(3, 4)
drop_move = rustshogi.Move(piece=piece, to_address=to_addr)
print(f"Drop move: {drop_move}")

# Create move from CSA format
csa_move = rustshogi.Move(csa="3c3d")
print(f"CSA move: {csa_move}")

Board Operations

# Create a new board
board = rustshogi.Board()

# Set initial position
board.startpos()
print("Initial position:")
print(board)

# Deploy a piece
piece = rustshogi.Piece(rustshogi.ColorType.Black, rustshogi.PieceType.King)
address = rustshogi.Address(5, 1)
board.deploy(address, piece.piece_type, piece.owner)

# Get piece at specific position
piece_at_pos = board.get_piece(address)
print(f"Piece at {address}: {piece_at_pos}")

# Search for possible moves
moves = board.search_moves(rustshogi.ColorType.Black)
print(f"Black's possible moves: {len(moves)} moves")

# Execute a move
if moves:
    board.execute_move(moves[0])
    print("Board after move execution:")
    print(board)

Game Progression

# Create a game
game = rustshogi.Game()

# Random play
result = game.random_play()
print(f"Random play result: Winner = {result.winner}")

# Manual game progression
game = rustshogi.Game()
while not game.is_finished()[0]:
    moves = game.board.search_moves(game.turn)
    if moves:
        # Select the first move
        game.execute_move(moves[0])
    else:
        break

is_finished, winner = game.is_finished()
print(f"Game ended: Winner = {winner}")

Data Structures

ColorType

rustshogi.ColorType.Black    # Sente (First player)
rustshogi.ColorType.White    # Gote (Second player)
rustshogi.ColorType.None     # None

PieceType

rustshogi.PieceType.King      # King
rustshogi.PieceType.Gold      # Gold General
rustshogi.PieceType.Rook      # Rook
rustshogi.PieceType.Bishop    # Bishop
rustshogi.PieceType.Silver    # Silver General
rustshogi.PieceType.Knight    # Knight
rustshogi.PieceType.Lance     # Lance
rustshogi.PieceType.Pawn      # Pawn
# Promoted pieces
rustshogi.PieceType.Dragon    # Dragon King
rustshogi.PieceType.Horse     # Dragon Horse
rustshogi.PieceType.ProSilver # Promoted Silver
rustshogi.PieceType.ProKnight # Promoted Knight
rustshogi.PieceType.ProLance  # Promoted Lance
rustshogi.PieceType.ProPawn   # Tokin

📖 Documentation

See the detailed documentation here: https://applyuser160.github.io/rustshogi/


⚡ Performance

This library achieves high-speed processing through the following optimizations:

  • Efficient board representation using bitboards
  • Memory-efficient data structures (e.g., u16 Move representation)
  • Utilization of SIMD instructions
  • Zero-cost abstractions

📄 License

This project is released under the MIT License.


🤝 Contributing

Pull requests and issue reports are welcome. If you want to participate in development, please create an issue first and contact us.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

rustshogi-0.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rustshogi-0.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rustshogi-0.8.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rustshogi-0.8.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rustshogi-0.8.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rustshogi-0.8.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rustshogi-0.8.0-cp314-cp314-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.14Windows x86-64

rustshogi-0.8.0-cp314-cp314-manylinux_2_34_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

rustshogi-0.8.0-cp314-cp314-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rustshogi-0.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rustshogi-0.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rustshogi-0.8.0-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

rustshogi-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rustshogi-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rustshogi-0.8.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rustshogi-0.8.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rustshogi-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rustshogi-0.8.0-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rustshogi-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rustshogi-0.8.0-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

rustshogi-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rustshogi-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rustshogi-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rustshogi-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rustshogi-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rustshogi-0.8.0-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rustshogi-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rustshogi-0.8.0-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

rustshogi-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rustshogi-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rustshogi-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rustshogi-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rustshogi-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rustshogi-0.8.0-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rustshogi-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rustshogi-0.8.0-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

rustshogi-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rustshogi-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rustshogi-0.8.0-cp310-cp310-manylinux_2_34_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

rustshogi-0.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rustshogi-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rustshogi-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rustshogi-0.8.0-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

rustshogi-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rustshogi-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rustshogi-0.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rustshogi-0.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rustshogi-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rustshogi-0.8.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rustshogi-0.8.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rustshogi-0.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

rustshogi-0.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

rustshogi-0.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file rustshogi-0.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfc60d3961cdc8f8d567588401bd1bcca8d7110b2c9cf50bc7bf2b245d563029
MD5 266f9b5d474ebade21a521d908b543d9
BLAKE2b-256 c14720243e4675e443d8803af72b5847c63569cd98f189a56086601e8fea012a

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3de6700e893544624502b977f72e7bf76774067ccefa3d86c4d085805fa1a676
MD5 13d39b8e41a6bab11b0b3f6c8129fccd
BLAKE2b-256 017d60d5ba7a897c9c9e953d263994af51ca56a2c97f2defeea50ac6b0cf3e5f

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0337777df8b161b5a6c8f9fd4cd6c695f8820d49df7832da6f6abde017142b9
MD5 f2087f2e0737b3f1bef748c2264cdcf7
BLAKE2b-256 25e52ec714511defadc4abfd772907266e819f011c3ccd6c25dfdc080e6314db

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 656279c003cb3a54cd290763f2b81d9ce952294538865b59a3718a98e30c8148
MD5 f9a251865d186991d531bbe89831364f
BLAKE2b-256 b10b7ad4e9af26125fb67bada9151f740a7fea4dbeab6f872b773a2db93b0e59

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48cb50f3c7f3457aad8a4da37039b80dd0d39fb19f52c8d921ad8b6389cc65f6
MD5 ec47036f7960bd38a786045be29ad483
BLAKE2b-256 55a372c189340a34b00f9a779addee0f1a1e6062c30ebf7b239811e9cd97b5da

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ee5b048655a4a8ca9c5b78b9b0c3e36d595a9f7212de2166fdc9be9583fcc13
MD5 55d2c6e300b438272b5373fc0eda5190
BLAKE2b-256 1c056040300cb4162ae1dad90313858b3ed370c67857757aac8096b9eaea4822

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82c04241c6ceff15d15fe5e4b38badd4f69d5d82d124a112edc00e10ca88e975
MD5 46efc1275bead71394ce81b6c82a5e95
BLAKE2b-256 9d15b1f8f3677b99f46a55b4b4bcfa009eeb7aac9bc2773a813a542dd1e4b898

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97c4b04ba1355182bfc95fcf5ad7303e921bfeb4a3addebe3ae9a579e0134409
MD5 ceda3ce383f0db4914208ebae938f1cb
BLAKE2b-256 102bef56317551dea5516c67bf8f16669203d3d6c864f39ad6e36cbf272cd618

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5f9d4603bf2227d907c4921d4dfb99d1ef75b0e26bf07914410b00902920722
MD5 38822a2820b07fac50d2a22d2f0e1f44
BLAKE2b-256 e0aad934b938fcd2979933798e8c61a3b7bcce9412912b6685b0e5996f8bf5f8

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a84796b41cd81b7f4b1bf3db56df4293f63f27c6ebfa9540ea6d1a1eb73dcaab
MD5 9a5f2f490d0c57cf1337dcac643cc67e
BLAKE2b-256 11ef0c7fd38b69ac34b645a6e9989321f8ed51c7ae014db0ea5738a35239ada5

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c45d36078826bd1c40a2e0d3942e6b2efc3a318a1d277d5eff44ebe357d37dc6
MD5 5a9c4f38b815fa66442ad4cd21e8225c
BLAKE2b-256 ec7a766593ae811bd1a5e5b4ac1d81454df96c9756d185111e5d35e408538156

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17a620f397a270d7a82f133e154ddc12c8f2f84b1596204e3017184da0e2ccc5
MD5 bfcaff08c157c18533ac201546d83fea
BLAKE2b-256 3c7362930492314549d7ee45e3044f1f0c4006a1c13f91936f8c701f790bb23c

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6caaa52ceb8f38d1fecb1e0f26aa637dd4024858f5c6f2b6f6889273262ab09a
MD5 90aa45e21ae2bfe7c9f8b85489a5d454
BLAKE2b-256 5520d483be925c263aef2057b5a3205ed5a2af0878cf1552ebf71ed1a78e2d90

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a786fc0d207a64c4c18ce2dbf396c8e5ecc552fde73c6c6dea55b0e8078048e4
MD5 76c3f2692d4c260566042ac19e2f9957
BLAKE2b-256 4f7027193ab2eec02966cd6a99aa935cd18e5aa49d4097239bcf81c6b3f0cade

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ea8f346c6e770e3468a364e65a69bc59e11478f1b76859031665d80640d6d36
MD5 7fddb3faf7abb4b807a1b56651e0abe5
BLAKE2b-256 78fdd9f3f436b90bc7f7f4ebe098d6c141f581ec8b85718fc1de3f9b7b5bab33

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bd665515147fc0272dd40c2fce7999a6f675aa9b24fe20eaaee88e5c8392db47
MD5 f9ca0887701684218b76b8dbc2b59c4c
BLAKE2b-256 9645cca2e0248824caf217c9713fd442da62faa80527403d543d17d25c61cae0

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 7811a21c1e6b73617ae2ccb7052ccc4cb466f3fc03d02b509a78f37bd7e1f9ce
MD5 f6ee2cf26f7abbeb352c4828a98a26b3
BLAKE2b-256 8e50f674f4517a15ce1a7badd00cabff26fed3437c8256b303a2eadf3f85c17c

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed5e96a62a318ab5ee8be3c920274cbab426f790eb66cd2d08ead21ee08770c3
MD5 432fc849b6ada3bb79abd0b5b2cf2273
BLAKE2b-256 64b80e21be156d227c6846dcdfac3894c0c5d936d317af8c69a052ac40077b4c

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d25c817c50d206f71c623c5358933fe5901538c3982dbf3816570ffe9d073cf2
MD5 cce5bbe3c747b5554ea9d87721a26fbb
BLAKE2b-256 bd6f4555055ea6c18c54804564c3a44466a155670f67c937750c6670f777c781

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 062341f8c486ca1a87ac575d60678fcba5b0d1101331435533390d469e7c001d
MD5 7e039bbec3a624a009d1bb403843bbc3
BLAKE2b-256 4ab376fb56bb1da54a8dead0fc6ff48e324eaba2c91889ebf9b77ac1b81c30da

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b127fcae57754574ad774a9ef7b240da652bfb2fc4c0844d819cbe245695fb9c
MD5 b8c88caa56394319a2abff63c9cfe926
BLAKE2b-256 9fc49e09567f800f8cd31567f21947f3a74321cd4e560f1358958bc87103efca

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0ceb441ea2a33fa4b5cc88966a353a553aa8d8115f5ab84e4a8a329c7dca73c
MD5 73ed463b9caa4b3b8bfd54b5205f5590
BLAKE2b-256 c18a8363f73bfe9ed37fe022d5d5e6c5960dadbf7f582dc7428109ff33d4c079

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66cbf0ec154004e9a194a65d42974e7e791790051b538b42170e04feed8d7f6c
MD5 f93e76d24018b2bc4e979e517340413c
BLAKE2b-256 18236782523b466fb0353af1bff1538c28efd9d0569a9491b861a279dda6900d

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 744fbd09b9fe688d1a5fe52ce10af55d1870399cfc07d56c95e26d5c561761ec
MD5 9184de2f352b52a5a72b01d95a5b617a
BLAKE2b-256 576fbd066fd92e64232304ca294375b75f8bc851d6f04b4eaedff73aee6d24e1

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 991d443ba1011888fed8f27a1ffe4d6d53d5d7fffad4ae345c89629f12b7e05a
MD5 6f966901971813d4182c9173e9146cf3
BLAKE2b-256 6da695125f2341be1dd84156a289a02dcb223398a4b3093517207c017f584cff

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c6d7aa56d428b22ce1de80ae664d96bdadf3edde7632b1e7e10ba6a33037ec4
MD5 c852ea29be05b15679bc9d3a8efc55a6
BLAKE2b-256 69a2150e081f32ece21b80e34a5aeb1fe6d39163770c76561770dca54fe436b1

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c453c08c8fe0befe8cb28bacce76f0578f3816f00e89f82cf51bf9c2e02d94c
MD5 c034576c0b27ad95b6d345c78e7c125a
BLAKE2b-256 ceec5ea00fcd788dba945d484ee3bcceb82bc5d3bd8f229ba75f8b9110d7a067

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 06f4db1e01a06f3460fd9d28f7125216c22912ee573f8c2b68bb5f7dae131092
MD5 b7ef7b1b26a566605b01a105773038ab
BLAKE2b-256 7dc88475748971c2f61849912ef3afffc9c7a940c0360aec58358dc9fc3b45e8

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bdc070fba5695bb98077bc5a7478e84f614d6a613c92875931f7ea950ecf522
MD5 731a009428eb7830547ff1ff6e85befa
BLAKE2b-256 c4775961edf686ef418573b7cf6f147097d6d4559be8b38107f6fd4d9f5c7782

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0857956a35b86e1cc8726d6de7c3e7d0b704a4fda4b22f00c03b80f61143436e
MD5 23a9e151b84ab65f2a09e1799852a0a1
BLAKE2b-256 a531a360fd2976bdeff668749eae68a278cdce1736e7b3ea26cd82d770289ee1

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f435e25cae0ab2584da0695b098ed556de60a71fa7fac9ba16e84bd6d643a893
MD5 384623be2117ea96710142ca4d64e986
BLAKE2b-256 a1440ab8c3d933f786e080e45ad1b4251d95644d96f0b097bd8f4e8f0774672d

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1c11076f8df1775b8a83eb57e1f2ff756d5fff9952461ef12edbc38923c8af92
MD5 7aad934454c4579dc4d59832f8924536
BLAKE2b-256 f7cdf58a61889b6856dcb86d3597de13918cd5f7309fb49878e06cde4c8eb21a

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e936360162a4fe2ddc90bb88cb7007538a5d36836ff28eef79546d777d95fa9
MD5 507f9f34fa7ca354358862edd4c4be65
BLAKE2b-256 599be2f90b51dfc5295caf4201399f0d8040e1069ecdc441397f458d983bb25e

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 831351751a892438d0bd73497a4afb6ffd894bb69f3c9aeae2f91990af9dd762
MD5 859ee1f6640ed91f42e67a2940ff8dce
BLAKE2b-256 c1b552429ef334cd9b470a0a2b1d66e5dc9322299abcd943bea02fe3595b0b29

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6dfe8b77ee51bd7e264b3fc4e96748c46ba29fae89416d3a5342be3f64ab76aa
MD5 18a466d1195ab8e99f3526f34f9e29b8
BLAKE2b-256 cdb92bb69dbfec8679f9355bfaa5bc7137793f304e2dde6767e4a5f12cf0f4e9

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8a25804ee42b01d18e52f65bfe71f31fc479d14b22342e876c1181b26b94810
MD5 698ec1f67325f30c8088a61db10f6aaf
BLAKE2b-256 ae7cf218af3fb0b0b73199f7e766398506fe8882cebe757779b7fc363ccf050f

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c07bdd1cff6e7a535c1ca339164187a0732e98966d385a31217a12847e1e5c5a
MD5 27973eaa8f7705a8af78fe01ec27e765
BLAKE2b-256 2b2c210a3459a3814d0dc39ffcd271247cd300ed09e03c8ed8ed1f26858969c2

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16b94363a069af936d102c43ec9ad0bcc72e9e11a3be4ad09eb7bf42a5e85f68
MD5 ada105d895f1da1447f6d1c661f78a46
BLAKE2b-256 541fe81407de16f1ccc8156277dbf61e2aff549e334da5bf3b19907455d99edd

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5642034c39c9424689e648284781ce3bdf98b82c7e2be25a3bde6f623f020ef
MD5 9c5153e7c605d4361f3bca4bdfe42683
BLAKE2b-256 ca474921fb1f44f46ab4a09cdc7bd663f3eed073b030d7b2ac2c8abd1a75cd30

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d126b2ba5e92ed76f09b5b4108d3d54f9249c9b31fbca595d13037f4c531761c
MD5 ca3f312b20930af76fa6e42f1dc0c4b9
BLAKE2b-256 c52ce2bbe89cf2e1303ebad00c850fec174f316cc2c91d0fec60a99e3946b7a2

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75e89fd8780e4a098bcf5a5a5ac96ab53e4f4d5b96fbafcf2e110223e53d3939
MD5 2dd5502ac0c873e390e4c340eeab9f88
BLAKE2b-256 173e9c0f18a9dd8e2df8951f58d2fbb22ee5ee5af5d03cea704123b0f1543af5

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69199d0dfdae52c8d6fe5ff44f08828d876bf5fe2723e3ae1961852674a17264
MD5 160fe71470d94322ed709f7cfa87be3a
BLAKE2b-256 834f86672a4a6101b22d59522ac5f2e8466eff79dec9dbaff9a1c82d39438ce1

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8dd6bda3ff5cde5e287a3b9370fac6d3926212ce09a2334bf61d688fa64ff48
MD5 56d407274f1cd1043cb68b496efe211f
BLAKE2b-256 2a872dbd96a2d826e2bee2a2f5c9f3f8128bf8ae4375cf6c77571a486d1159d6

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6217bf42ff1e36022f46af947d278843f5720d4de7805a9ad7ac7c838ac212d2
MD5 4cfddf75e0a82275060ec4397e784f7d
BLAKE2b-256 42dc5d4de20ac61480a145ab8cf8232ddfd96a03dd48febca1d75757fa72b3c6

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae91655a52292d510c78c5b8240e3b7003628efb2ed575919b2d0c76389663bd
MD5 9ceeebb1a8f0dd4146bf08b9469884eb
BLAKE2b-256 3c0895123edbd09a92c48fe5a5ff0ffd372574a51c0985b810caa20c9dd37bf6

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06def1672cc57302358065866ff5769a4b91fc9b0f2818b8dbbebb4b24ac248c
MD5 646e2ffc50423da4d0c84262430f3efb
BLAKE2b-256 a108857fa73c55b3d441fb527d2e742e600aaef8f26c3272708e02389d79e72f

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03b61da90eee1a13fa194b4baaf230e7ee282b91669601fe8c29224a53555fea
MD5 d7a757da0a5e70d9fdad47269318d63b
BLAKE2b-256 bc30b1e4db77efdb6f9eb6944338d4ff67ee083e41acbf099d8c715c3acac209

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d57f5e37a1194c52ad39a4e6912adf65d2babb33b4d5481d9dda7869d1ed6e64
MD5 b7e1d6ee87e8022b0e27316704efff0a
BLAKE2b-256 e6cb5a80bf57e8b7eb6780ce6a7ce4e477a46d750659a8b1e23faa2c1bf15be2

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0430d59e04580abf1d2a38e46626e74a7a336bf1d588329555b3f6d510b41c38
MD5 e91a86797cd79918cb836b5a253bc067
BLAKE2b-256 95b5a08f0233da6b631386b420ed9fa87e6ea626cf1fac5a14a0df0a5ae3eee3

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f093f56a6ace845f3e7c347c777b38c208475de536a0a4a0701da665e92bffba
MD5 6d38091966e85bc59720b0b15575ba07
BLAKE2b-256 e981c192372e9d341ed09fd68ad1daa2555aec6f8810d8ecd099478a73e5b8ce

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1056bc28133c45800a4578f98d5484fd8f587127f83ea5f90aa914db55eb8908
MD5 ac1377963c6c37544d1faebf3d8cd669
BLAKE2b-256 2b4c974eadc3a2a3d75ff4a8d33ae8d412ef7223d274a92f389a58d06519a3b5

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7bb4f7200c697627b44d3178a91727ffac79f87fa059af941ab0daf488bd4859
MD5 529f604074c7cd88d40d8449083c6db5
BLAKE2b-256 a06a096a2ee30da9ad6870bc3bba92d02e876be8723602a49aa1feb475eac596

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a05c5788c20e62b58da25c604d9df11768fd8d11774e83251cdf6cd4f67509a
MD5 e13f8e78c58ade2162695f2ae19faf62
BLAKE2b-256 9215c42820755b66d654a9bb89f9ccea13a182814296d02ef1cc85914cb88362

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64be034ac33e9992920c04a450167d9613a3bca077b67066c98ef21d8eaee3e4
MD5 af8cc55fb8bd3555d296d4c734affeec
BLAKE2b-256 a692d98893a2351a4fd409babd8b81f07d39e94d6e427988c3d190f0c3f2a116

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9a855f3afa4d1b93e0c0fa68b63a7cf1f4d0f6437b2fd7fe363cd036882721ea
MD5 b22ff6e84c3f7c5cfba0eb9a04fb454e
BLAKE2b-256 dbb7ff4e8f0522fdf37c9c84a9b6e727b8d792d6e1294ec7af6afc9e1f373bbd

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 545e3ccfa09694c66641b8c5679599ecf4217af96788e5274765a4cfe3513128
MD5 b3068df7c8ca1bc41a287a373f51deed
BLAKE2b-256 b51ec0c3f08006161a590f455b3c0084245c5664e411133e0028d258b72b043d

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb1c35f2c1a14cf5f5c9f44df7f0680b370906d66e1f9fec0c53cb3b31f70e29
MD5 b1ffa4e3c5000d49d6210a4b002fbd96
BLAKE2b-256 297ab7b7811f3b9124e2d6f736bde631da06054b4d41633c3745f752e14a07d4

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 797b221a667bdb17e2ba618e11eb54128a349b6fcc010f7fe6c8f5a392c1a26f
MD5 8c054fc4d7aa7ae05e5109d59f52f791
BLAKE2b-256 cb91bf9a3e395b7840f636f39d620cd9804fe330b92b4c344fc0ac80f07368a3

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92a93b112b54803082f4789d49c94221bf39b620afd3f52ce180e42ef81a55c1
MD5 183ce3edc42be708d404da2db54b9dd2
BLAKE2b-256 31e5ecbc88ff4807c8e6c1d9e5f1efb514c0a2f3f3cbb962ce45c5bcd4e95b9c

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4534742eb1da9cab7dc4da2c4cd32164a5844e9f0fcd7dfdb11efec872573cb2
MD5 b956a0c7807d9045f770828bf176ac92
BLAKE2b-256 3c044ec274ffcd2f9813fa00a4550506fce85c41e57fb0d3434c9ce268ad1440

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 808d0a4dc7fffd4fb6ba8b50bddb0aab47ca7c3d3a4173ed1d742c516542c0aa
MD5 eff5ef03eb82d213bab12c8328ff17d6
BLAKE2b-256 7c90880eb1c54594ba2cec8a1245a3bfbba9e121c2765707690db79134bc7ee6

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1876b2f877c75e714a77010f01817f77e0ada4935e4ab5071532cd649f22955d
MD5 2ff99f893156cdaee6334fe2ff396b6a
BLAKE2b-256 fab3c79de5a26a9b0b566fdc2f3b4bd9bb2ff39dd218bf815628f94b8842ec3b

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c9a2d452d927d03d64670f543ecc126705ad72a36f74b7ab989b277e19de9c9
MD5 19cc29f88491ffabcb51f3b17f717e44
BLAKE2b-256 0329a0d47cfee8891c4f30b6ec3e54554d32b512e0514f0fdfb077c615913a0b

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee4bc07f2d0c7543e1ec812df8151c9119a58267bd689825f87c9c41a9036662
MD5 7ee5aa081ee97d352dda8b61a8f6b6c3
BLAKE2b-256 60ecf30241793554ad42b4c1f98615ad4acf6eb9473135697d817cb209952155

See more details on using hashes here.

File details

Details for the file rustshogi-0.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rustshogi-0.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fba01aaefa7b70c504088127b059bef83ad152e8b5e21d6e294fe28c0770fa89
MD5 14794dd6fbae8826c42db77056517e42
BLAKE2b-256 0a98772c9137a215ab96877578f7195817ac20195493f07223279cb607842e0f

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