Skip to main content

Python library to communicate with OpenTTD Admin port

Project description

pyOpenTTDAdmin

pyOpenTTDAdmin is a Python library designed to facilitate communication with OpenTTD's Admin port. OpenTTD (Open Transport Tycoon Deluxe) is an open-source simulation game where players manage a transport company.

This library enables developers to interact with an OpenTTD server programmatically, allowing them to perform various administrative tasks and receive real-time updates from the game server.

Features

  • Authentication: Authenticate with an OpenTTD server using the provided password or secret key.
  • Packet Handling: Receive and parse packets from the server, allowing developers to react to different events and messages.
  • Sending Commands: Send commands to the OpenTTD server, such as chat messages, remote console commands, and more.
  • Subscription to Updates: Subscribe to various types of updates from the server, including chat messages, client information, company data, and more.
  • Flexible Usage: The library provides a flexible framework for building custom applications that interact with OpenTTD servers.

Usage

The basic usage of pyOpenTTDAdmin involves creating an instance of the Admin class, subscribing to updates from the server, and handling the received packets.

Example code for an echo bot can be found here:

from pyopenttdadmin import Admin, AdminUpdateType, openttdpacket as p, Auth

# Set the IP address and port number for connection
ip_address = "127.0.0.1"
port_number = 3977

# Setup authentification
auth = Auth(
    name = "pyOpenTTDAdmin", # This name shows up in the logs
    version = "15.0",
    password = "toor" # assuming the password is 'toor'
)

# Instantiate the Admin class and establish connection to the server
admin = Admin(ip = ip_address, port = port_number, auth = auth)

# Subscribe to receive chat updates
admin.subscribe(AdminUpdateType.CHAT)

# Print chat packets
@admin.add_handler(p.ChatPacket)
def chat_packet(admin: Admin, packet: p.ChatPacket):
    print(f'ID: {packet.id} Message: {packet.message}')

# Echo chat
@admin.add_handler(p.ChatPacket)
def echo_chat(admin: Admin, packet: p.ChatPacket):
    admin.send_global(packet.message)

# Run admin
admin.run()

pyOpenTTDAdmin also support async/await syntax:

import asyncio
from aiopyopenttdadmin import Admin, AdminUpdateType, openttdpacket as p, Auth

# Set the IP address and port number for connection
ip_address = "127.0.0.1"
port_number = 3977

# Setup authentification
auth = Auth(
    name = "pyOpenTTDAdmin", # This name shows up in the logs
    version = "15.0",
    password = "toor" # assuming the password is 'toor'
)

async def main():
    # Instantiate the Admin class and establish connection to the server
    admin = Admin(ip = ip_address, port = port_number, auth = auth)
    await admin.connect()

    # Subscribe to receive chat updates
    await admin.subscribe(AdminUpdateType.CHAT)

    # Print chat packets
    @admin.add_handler(p.ChatPacket)
    async def chat_packet(admin: Admin, packet: p.ChatPacket):
        print(f'ID: {packet.id} Message: {packet.message}')

    # Echo chat
    @admin.add_handler(p.ChatPacket)
    async def echo_chat(admin: Admin, packet: p.ChatPacket):
        await admin.send_global(packet.message)

    # Run admin
    print("running")
    await admin.run()


if __name__ == "__main__":
    asyncio.run(main())

Available Subscribe Types and Packet Types

The following are the available subscribe types that can be used with the library:

  • DATE: Updates about the date of the game.
  • CLIENT_INFO: Updates about the information of clients.
  • COMPANY_INFO: Updates about the generic information of companies.
  • COMPANY_ECONOMY: Updates about the economy of companies.
  • COMPANY_STATS: Updates about the statistics of companies.
  • CHAT: The admin would like to have chat messages.
  • CONSOLE: The admin would like to have console messages.
  • CMD_NAMES: The admin would like a list of all DoCommand names.
  • CMD_LOGGING: The admin would like to have DoCommand information.
  • GAMESCRIPT: The admin would like to have gamescript messages.

Here you find a list of all the packets that can be received from the server:

  • Errorpacket: The server tells the admin an error has occurred.
  • AdminJoinPacket: The admin announces and authenticates itself to the server.
  • ProtocolPacket: The server tells the admin its protocol version.
  • WelcomePacket: The server welcomes the admin to a game.
  • NewGamePacket: The server tells the admin its going to start a new game.
  • ShutdownPacket: The server tells the admin its shutting down.
  • DatePacket: The server tells the admin what the current game date is.
  • ClientJoinPacket: The server tells the admin that a client has joined.
  • ClientInfoPacket: The server gives the admin information about a client.
  • ClientUpdatePacket: The server gives the admin an information update on a client.
  • ClientQuitPacket: The server tells the admin that a client quit.
  • ClientErrorPacket: The server tells the admin that a client caused an error.
  • CompanyNewPacket: The server tells the admin that a new company has started.
  • CompanyInfoPacket: The server gives the admin information about a company.
  • CompanyUpdatePacket: The server gives the admin an information update on a company.
  • CompanyRemovePacket: The server tells the admin that a company has been removed.
  • CompanyEconomyPacket: The server gives the admin some economy related company information.
  • CompanyStatsPacket: The server gives the admin some statistics about a company.
  • ChatPacket: The server received a chat message and relays it.
  • RconEndPacket: The server indicates that the remote console command has completed.
  • RconPacket: The server's reply to a remote console command.
  • ConsolePacket: The server gives the admin the data that got printed to its console.
  • GamescriptPacket: The server gives the admin information from the GameScript in JSON.
  • CmdNamesPacket: The server sends out the names of the DoCommands to the admins.
  • CmdLoggingPacket: The server gives the admin copies of incoming command packets.
  • AdminRconPacket: The admin sends a remote console command.
  • AdminChatPacket: The admin sends a chat message to be distributed.
  • AdminSubscribePacket: The admin tells the server the update frequency of a particular piece of information.

Contributing

Contributions to pyOpenTTDAdmin are welcome! If you find any issues or have ideas for improvements, feel free to open an issue or submit a pull request on GitHub.

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

pyopenttdadmin-1.1.0.tar.gz (57.4 kB view details)

Uploaded Source

Built Distributions

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

pyopenttdadmin-1.1.0-cp314-cp314t-win_arm64.whl (549.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyopenttdadmin-1.1.0-cp314-cp314t-win_amd64.whl (382.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyopenttdadmin-1.1.0-cp314-cp314t-win32.whl (362.7 kB view details)

Uploaded CPython 3.14tWindows x86

pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyopenttdadmin-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (205.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyopenttdadmin-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (212.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyopenttdadmin-1.1.0-cp314-cp314-win_arm64.whl (544.1 kB view details)

Uploaded CPython 3.14Windows ARM64

pyopenttdadmin-1.1.0-cp314-cp314-win_amd64.whl (378.5 kB view details)

Uploaded CPython 3.14Windows x86-64

pyopenttdadmin-1.1.0-cp314-cp314-win32.whl (358.9 kB view details)

Uploaded CPython 3.14Windows x86

pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyopenttdadmin-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (198.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyopenttdadmin-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl (205.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (198.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (194.5 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

pyopenttdadmin-1.1.0-cp314-cp314-android_24_x86_64.whl (697.7 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

pyopenttdadmin-1.1.0-cp314-cp314-android_24_arm64_v8a.whl (725.9 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

pyopenttdadmin-1.1.0-cp313-cp313-win_arm64.whl (526.3 kB view details)

Uploaded CPython 3.13Windows ARM64

pyopenttdadmin-1.1.0-cp313-cp313-win_amd64.whl (367.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pyopenttdadmin-1.1.0-cp313-cp313-win32.whl (349.7 kB view details)

Uploaded CPython 3.13Windows x86

pyopenttdadmin-1.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (119.4 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyopenttdadmin-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (198.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyopenttdadmin-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl (205.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (198.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (194.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

pyopenttdadmin-1.1.0-cp313-cp313-android_24_x86_64.whl (697.5 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

pyopenttdadmin-1.1.0-cp313-cp313-android_24_arm64_v8a.whl (725.6 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

pyopenttdadmin-1.1.0-cp312-cp312-win_arm64.whl (526.3 kB view details)

Uploaded CPython 3.12Windows ARM64

pyopenttdadmin-1.1.0-cp312-cp312-win_amd64.whl (367.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pyopenttdadmin-1.1.0-cp312-cp312-win32.whl (349.7 kB view details)

Uploaded CPython 3.12Windows x86

pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyopenttdadmin-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (198.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyopenttdadmin-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl (205.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyopenttdadmin-1.1.0-cp311-cp311-win_arm64.whl (527.6 kB view details)

Uploaded CPython 3.11Windows ARM64

pyopenttdadmin-1.1.0-cp311-cp311-win_amd64.whl (366.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pyopenttdadmin-1.1.0-cp311-cp311-win32.whl (349.2 kB view details)

Uploaded CPython 3.11Windows x86

pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyopenttdadmin-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (197.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyopenttdadmin-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (203.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyopenttdadmin-1.1.0-cp310-cp310-win_arm64.whl (526.6 kB view details)

Uploaded CPython 3.10Windows ARM64

pyopenttdadmin-1.1.0-cp310-cp310-win_amd64.whl (365.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pyopenttdadmin-1.1.0-cp310-cp310-win32.whl (347.8 kB view details)

Uploaded CPython 3.10Windows x86

pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyopenttdadmin-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (196.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyopenttdadmin-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (202.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyopenttdadmin-1.1.0-cp39-cp39-win_arm64.whl (526.2 kB view details)

Uploaded CPython 3.9Windows ARM64

pyopenttdadmin-1.1.0-cp39-cp39-win_amd64.whl (367.1 kB view details)

Uploaded CPython 3.9Windows x86-64

pyopenttdadmin-1.1.0-cp39-cp39-win32.whl (349.2 kB view details)

Uploaded CPython 3.9Windows x86

pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyopenttdadmin-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (196.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyopenttdadmin-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (202.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pyopenttdadmin-1.1.0.tar.gz.

File metadata

  • Download URL: pyopenttdadmin-1.1.0.tar.gz
  • Upload date:
  • Size: 57.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyopenttdadmin-1.1.0.tar.gz
Algorithm Hash digest
SHA256 e678ec20002cbf7f0910334bf0dc083032c77ae5f6493fa22423239ea1580660
MD5 e0a3d0f34f290052b822c70f3c918aa6
BLAKE2b-256 94bf710a248f90d317738cb9c7e483c1966284c6aad4dde44f152f0a82e454fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0.tar.gz:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 395c0815b3dcb583be127e395381b900d18b8c3e5c0028ecf1cc456a332c8522
MD5 6f1b4b92b5dfdfb19a08441e29334549
BLAKE2b-256 aa88d8df90246199b5d1f624fb838fe70c5a24feb0815f39bb47219d97750bab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314t-win_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 da2b2aecdb2d08e5718cc1bac4cd57e53486fe0be5ad4c2173b4c517ad86290e
MD5 e503880dd9a7170b087c40550f48e3c4
BLAKE2b-256 dbcd3bdb57ec51e6b355916b8e5b5cfa775ec7621b229b8a875a576f4d5d4381

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d8e9e298637c404acde88344842894818b67b16e2f76c43545be65f283a315f1
MD5 b9da7fb94a0da62be1ee55281d5a98d4
BLAKE2b-256 3087b51a3ee914561686035ce949ca382b40226fca6834c1df06d733b065e870

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314t-win32.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1258771cad58f11a7920cfc7d820ea16d905a1d34985ccb5b20470172be67b8
MD5 ec4dca3372152e5c8199a3bd5230877b
BLAKE2b-256 fef9a7d74d8f452abaa5b73720e7afdf526189761402a7bcbd2568b077b202b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d75909b6d1057ba601103a373174fac8c067bb0e18b8a28989614b0c61ed78e
MD5 ba7cfc338679ec7893cff17b277dbc8e
BLAKE2b-256 6b99ad46e07573e9120ec41c9a963e6c94fea548ac853731b94a3a726454ed6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02cf8c3f167641106b389481f6bdb0e7560d8e21553b7e162effb503a9c0e3c5
MD5 c0eaae298f0c1c2524b0133c9dcec9ef
BLAKE2b-256 dc8779139757dda8efb8e74059035bf026529ed37a92e3e9ef2103118310d49b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f492f2703d9c9566450ab53cc4eb968158e6326d5e7737346ebb557001c05690
MD5 2bea32a759d05d34f2dfd829a489ffb7
BLAKE2b-256 e7f7a30b302f270697ba98c3e424856984053e6dd563398a3c4ff946ceaa5b72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9e647ff6dfde5013423284e71ec8cdb5ca2194e77c0cdbeaf91398c25d6ade2
MD5 cfe532574bc7eea3b01ec73106ebbb09
BLAKE2b-256 ab3ec5b09a23c8a83f788fd400652e8c332b110426cd987816dff007e96e730d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5ecf0d8bb7acca0fb1da0483c502498eb2c8216f88b46f5f7ead17b3b1dfb1f5
MD5 8b9910ab92917f7e64a940b8ae4c8541
BLAKE2b-256 d9ee5ed5f6931b4afe5278d144dd4fa2003436ccb8d84b3d8ffc9eab54fde152

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 af67ec7b5b362194325633d3082ea37b2d58ab9f3044a51aa2b4d575cf490909
MD5 64e5c9cbe820c163465d06980220dbe6
BLAKE2b-256 64eb7761885e4fbe1968f445d3eab1c7beaf2e59a402fa204d7017ea2531265f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9d7f8cfafd60c775e1003088037e17856254c5c0f0e5fb079e72ada4f581e280
MD5 6a9d5e79adfb428d2b0856eedc7786c4
BLAKE2b-256 b1918905cb7f68bf3f9faab8d39768e6d4975e3222ee5ba2e80b45bce0657fb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pyopenttdadmin-1.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 358.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1863a1c14b01d45885be9d096a4d028ca78142592e2ee3def975a0bc5fd6e576
MD5 8a6396218817c79947d1a1d7ca353b7c
BLAKE2b-256 c2b9ce3ac8d89a85e8b39c963c4d4a6610d9097ef77cb2a2b969f91362978441

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-win32.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 624a1d6a9a39ba7d687136c9423f9d639c41a16c0ea086b3a2ff8567a33d364f
MD5 74bb52f282e264f482da6a42af83e3ce
BLAKE2b-256 eee244de4135830fe1ff37dd93ea8534076d4982b23880a0203ccc8f27e84155

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 527729be9c5adeff8ddae42a56fd786dcea8d843c8d348757249fad0ecfe366e
MD5 c57934c162642ad62be472dd1a079df6
BLAKE2b-256 82454f1a777c79fc8b899528bed60eceec777799501d040338ee1bed4527f41e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e83706db4fb6ffeb16093b8d5f2ff6fa713d9ec047e3cc51b87960c17cd0a9d
MD5 f6456f6c8fbe58632646a74c545b56d9
BLAKE2b-256 78da9baae39ffb6b309bf9e1cf075958c48d7801d6352d7918e0128fb6dd6a35

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b8b2dae8054d5814d48dc25d8eb04eddd354035636cd7eecf9a34c7aef5c764
MD5 bdca32e9bad2e7d221497ddd310b7a4e
BLAKE2b-256 497b48236724247353eb05f2b3a756fc003c7748b3160406d0f3bc06fbb1aa5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dea044b58e7642ee0d8d4dfba5ef5aba537e2f4dcbb0af8799861d0ee20e981
MD5 aa0a1c32be73b355f269d54b3829d6c9
BLAKE2b-256 0761152b1f63f410bd4c0aff34da8484113637fb792f52afcc56ea1a80007dcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c0016b3c16704f5ee37377eb656d54c0a8e25c85ba50a6b5ac524fe3b0fef300
MD5 e4e5d1a39762280c89e8f50e3951f19d
BLAKE2b-256 24f483e6ebe024e081f1297080ea1dd95489437981584228c3bc9e1acd24665b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 01cfac74efe6e244c5505b5c06bff0adbd93b88fce23a0f1e299ef30afe332ee
MD5 1a408f6148c44e0907efe0e8a5c1fc35
BLAKE2b-256 972a52ecfc7dd84b903e226ca115997398762d3d89e29b59c08e5333f56eb6fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 20ad5b4252ce8aa40d45502c138c4107063df8150bab1d5f9ed301c856f57987
MD5 1820fd5200d0ef3f2fa9b63bc380de07
BLAKE2b-256 e576e435ed176093d440ff29fa0bd5597ca1fc879fbee59084ea3dbc24c17741

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 898c4808d4ef57e13138f511aa11a70c695b39a7b2df44405b607cd075da2ad4
MD5 655b6b8cbb26536d868e5d33f073e7f7
BLAKE2b-256 bd064a3ca89efd1414ca750cbfc4b30c0432a05a830412d30e87142564e2d319

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-android_24_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 78d1c24a80e63ef0f16d3ffa6107d6398643908cd27b054416f2e19760fe25ba
MD5 91aefb27e3344c811a0351bc29a0b9f6
BLAKE2b-256 b5e21c290aa1a6cb5a567a13c261f963d5eac496f924178ee3f7eabb78bb49b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 23c406d0fb081c72487ba99593210803a6166de2b1f2802a509b0f0409bf21ce
MD5 ae8a54f9366e24aa48480c95ea11963f
BLAKE2b-256 fc354003a47dd449fff015a2c660ebe8bdd187717ab4bf834979253d6def7419

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c9359724c4077d34504ed92fb96cd8fe42cb562d2c2e29188694d63eab76e89e
MD5 e3cf9add55bf8ca0be5113c325cbf3bc
BLAKE2b-256 8de789bfbf0bbcca2c06707289025a5862c720643a627c1f93c796dbc3f2f148

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pyopenttdadmin-1.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 349.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 da0a9c3b2988d9e6207ebd4907c29a5d45a5595d8fad9cca98490e64cee8a63d
MD5 bbbf99f19be00c0f725f54513a20488a
BLAKE2b-256 a89ce013c49084d1ceb8afde5b94b0309f4e86ffdc3807755159d1d23f667151

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-win32.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 a319d9ed3c54233884a279e187712dfe563f4b3e145d95e285667c350cb6e923
MD5 4aa5c5136e4370764f598c1bcbc053d3
BLAKE2b-256 45067080c4fed1040f31d38e861fe1961b7d2cfe7f6b58e0cc0047bd2975fc7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9378dcf084cf8668ecffe37f00dbc574fdc0810c6e395723da00b187fb25f07f
MD5 f5f10bf3d672d7d79ca592c687b03b1a
BLAKE2b-256 150e4a7a290a948e212bccd7bf1061552b5296e3f2665e1eac11e9735c122ad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cedb61c83bf8056c0d8907f48c75c32f620e866e8713b9ea963fb4ff74b38ac
MD5 6659c76e2a72506da38896476b6612fc
BLAKE2b-256 50d184bfce1fa8bea1f586a9825793e08a025d1ecfe187ef4ade2901406c0bf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 259f0f4c789b25530363b0bc760a924facc9d6f37a95f2d5d433aa0dc9d2797b
MD5 67b9f91f271f89019437250289279125
BLAKE2b-256 451e371b938b3ee9dca3427ffdac774b2f9f741edd29b10283662f5b501a6e6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb4dfbec701bd508ce66e1f55e6d116a17458757248275fd6951e3147fb1e690
MD5 51c3b6145036daab39b8538f53887623
BLAKE2b-256 b194f4ace3dc6788d7cc7b2934c36841fd4571dac8df34d4227b7a454af655b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6bdf94a99ba8fa3e9162c87d2db86487c3df34d5a80587da878891251e2f397
MD5 c5d37c43746b53aa518b5716de6a1f63
BLAKE2b-256 5654cc8ff86cc12f6681e29b0206dc7644c5063f87f6092d573f4555962065cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 62c8d95b2a58492e7e6914f709273fa04d0eb02f2b07e6ee99c8d0b68442dbd6
MD5 61118785d4f4d38998881cba91da4c42
BLAKE2b-256 8d51ffa8c3965426a1a350b25a6600dbcc852e7f32535b503dc6cfd68221d490

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 67df306863a5e6a81eb55f00d10b9733ed4ff0df3cb6a2450b03de7215a6dab9
MD5 abaf7fb146a74c976a05a10af16974c7
BLAKE2b-256 6cb8b1674a3c3f3026797bf1a3efcc3f0a3bda92da874268e859e3d21291669a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 9c18fdd2e7c4395783a842312e82c6ea2e5d33f7cede9478ce4d32e018128b42
MD5 9fc7a1c9b7b42ffee2319d6c43c18ac4
BLAKE2b-256 6f7ddd14adb50015feb434b3c49b42415ae05d1da989887458c5feddd96f2def

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp313-cp313-android_24_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 4dc446160d3b53b0b70a6e001ac744c497e2418794e47e37207855f2395d8ace
MD5 b7250fa180184ff796bb68d4560db97e
BLAKE2b-256 9d6fddd6d646e56e078e7139cef4b4c163d2eaf77c37c923848f32aaf86642e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-android_24_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 12caa0632e6d1d670ad54287c72286848d3c809884897c1993ecdda830a1fe68
MD5 4e4cf07068abb5eb5905bd958d2bc906
BLAKE2b-256 ada599951a274d9f8eb9087bcac47c133c77c78f3e1cd225c2b349e557684713

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp313-cp313-android_24_arm64_v8a.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ad0a04fb782f1172ca43d03b5c5b4265a1fea9862110b684fea8e28943ed5d29
MD5 da4551466d671503d1b8235e3523dcdd
BLAKE2b-256 8df067b5c33de89c6a77bd07de82c2755d37cf628d24a48b9b4c9edf7837a82f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e11b12d36f444b8b7c19bdc79975ebca19d040fa61a0c6d271276c8d05ce4881
MD5 d1570c13d53c51618df1aaa97585f53b
BLAKE2b-256 402be6bbcef8f553bfc1f48958a510c7d9e37b9c92ed735b95318bfeb72c9070

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pyopenttdadmin-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 349.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyopenttdadmin-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f18ae6fc657aa15cc4db3171d899e7b3e5cd8359743ec1d270ff2a4ceb6c7462
MD5 275a3ae1ce9df54c92b36f0363069647
BLAKE2b-256 23f1dad0fab8577b84a249448588c589b5179665e360fa0f8d2208d93e7f54d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp312-cp312-win32.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27c00628ea5bb1788c75a711fb232b5b1d2ce397ef034cf5ee9e42613ff38578
MD5 31ede3950e702167fff8befe312e66b8
BLAKE2b-256 4bbbd2f430131ab84f1023fff266dd02f71b41f9cd35e252c0fcfb848c286151

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 635e291ca94d6315f62e0a5cd25aad8c9cba99e2bedd7285fc9f2fde18f6d951
MD5 7a5c6ee3d63caffa7c7d951ac6122907
BLAKE2b-256 e067b9149f74f8764ab64b55120af2af54803f5dd10fff3ddf12e85789934c1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e6a7c20db263ae05edce20899fa9b02cd22f1c36d173b41081cdbf335669945
MD5 5ce72accf7cb287e22613b806090cfef
BLAKE2b-256 7208bbbb07a2134186b01cb2bc09a6711bd9820474eb8b20a2b544d0d942a4c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a3aa156bca10b307d908cd9410ffd64bcab22bfcf5bb22b322296af6dc832c5
MD5 14ef3be0effa8208dfd2b93695538e34
BLAKE2b-256 b1e0273844e628bf43dece5d1e78b20fc60f18ea7e4b8aba6e2d10f7781f48e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10fd19d74bc83c07afb12e8969c1af9ec56a9d1bb41a1b512eae7423add60e0b
MD5 35a7c25c1ec611b99c119ad6b24fc342
BLAKE2b-256 c5b66525e9aeb5809e9ed9087266896ae3be089ac60c26c4cfd291cf05d113e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c43bd5466bdbd1d0e889876570c60adc6a633f9775c983aafb2b8e15680e8a87
MD5 8205ea1c1d25018eaebb9c455a89c791
BLAKE2b-256 8025556c995e088f28f737eee0b35f6d43266e5700d56f8d93acb7d6719f05e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 122adfc540949fef7f41a6b67224882684304e71dab2ab5f7a574d9893f71b41
MD5 1b177b29e57249a4c50ff7049cfa9303
BLAKE2b-256 ba7dc509edd57883e7f9488212634b14bd2b954f2638b29f80b017a557482b24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 72a9f993cab5bfded7823a02a2caa76eff396bbf71d95b9ae44c5593f0c90eb0
MD5 b22119ad2c8da4a0811ed663d9b571f8
BLAKE2b-256 1090043c4672a4f96d1ef1c941c3f8bbb0f48b2ba1c68712d1f81a7142f55e49

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pyopenttdadmin-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 349.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyopenttdadmin-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 198eb0e3385ea9986841fe81ddf3b5e0aa91b42120126e3ee06a0fe30e67391a
MD5 a025346c2feabeb0fed540cb44457561
BLAKE2b-256 72e1502befc9f6557802bdcc03533d04d5f0320f809b0d0c7b93b9c406a8c9f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp311-cp311-win32.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b197ddedb4a861c9a69d5df0e655e3d60c3d924f65b5b707e48559d31e8ed48
MD5 27b87832d10eddc02fae0fe2b86445db
BLAKE2b-256 42278782b21508e727b89e175007ccb7169e6520f58050ca87411a19329b2b16

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2d70477987af03459979b759e488d503a28969a2883b88d3f6aae5db5c93139
MD5 83c4aa67354ebea027ff303673a9c99b
BLAKE2b-256 609320492b17aa2236920cd6c6543e2f173a9cf45e2060cd9a03e4db7719433c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cea38c9d92ea651ec1b2a5340cca951bf67e76670b5160625541246b452abf80
MD5 9eeb8a22318bc0d1ee1597a67fc8a04e
BLAKE2b-256 15dee5d82915126df3c7a61d3d0444f5170f9ba3742b03d7a948064c1c73e948

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 edb3bd58b6d753a8130cc61f9364c586e3975219d99c1c51f96692020b277549
MD5 4e0ddcbf2dd170e8e8a866bb0a4a2b28
BLAKE2b-256 a54b876f1d7ee33be862a8557bfca5e5c526fdbe0964bcd8a4b7cfd45f023f72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96f4e216129ab6607ed548ca32563991d519b2d838bf089b292485c895afbddd
MD5 295fd9afd82939f149bd3227e611e795
BLAKE2b-256 b0985988f7af5e2d4c127461da8e63e3efa7069e1c73205b347d099616c4d67f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 862e2af69b305ba97d83a63109cb52dc712b517965abb8de5b921ec09ab96c93
MD5 65eeebedb4ffdf9277ab94c5ce1a1750
BLAKE2b-256 f610484c7e3b381bfb6e2e903fb057b4715d5d24740dbed6ec6cee9af73bc985

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 21d8e4639be8204ff7460bffba9f5a5b46628dadae609d8035e88685a96a29e3
MD5 b53859e360a097265aea3715372eab9c
BLAKE2b-256 680b3d90b53d457951829eb8247f1e63c24fc8fbeb24fc9aedba08493b125a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp310-cp310-win_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5140ca50ad2a28400e35268dce211a23c5f852900c51fb73b904561c94f4ef21
MD5 60fac5c12b16422e4e0de7e3a1996902
BLAKE2b-256 03b7fe95a7f10149902359dfb72d8ab2c1d69d6c6d0d743ac96c8353c23d6559

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pyopenttdadmin-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 347.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyopenttdadmin-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dd04a456bab1b5fc7d9cb375e5258fde25ab22c0e1ac16300886f51c26337c48
MD5 ca992d08e23844fe05fb457e31c95deb
BLAKE2b-256 a9bb44bfc8c363b03d782b971aa2e557ac1a880a64054ff149036d7bfbd503b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp310-cp310-win32.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b394dd477691ad3dcfde8aa4abc9d9bd73ea8dd1929e1c76354ad8af9eb520ef
MD5 fe6d43847658b3f99e71cead37e6ab9f
BLAKE2b-256 0366f4e8906c225c4a33d5527ed522faa3f26303c59fecf1b0983c00b4b54d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fea258dafbe618d590ad20a488d2366c21070609bd8d12caa82cd569f6d9226
MD5 1c5526afd9464af59311db69fd32c9c9
BLAKE2b-256 6d64ff5ffc20c1d58d7ed75d8b2bedf3f54df50b22553ac4713ec19562c9ade0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed87d6b42bc626951139db428147ecd122c367b8fdd4c9e7cab681f85ca97355
MD5 0510b75ffb95be775b32f9656ad075b2
BLAKE2b-256 5db808dd5a4b138cc5d3a6b8677cfb7d30eac9e58359c97bcc26191d15697f02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 866db60136eb0fc70f402b200123b70f8a93bea536f4317f7aba8ec435e91020
MD5 d3fa322435d9a88f0370d14d38267c7e
BLAKE2b-256 65236c1ab81b8845ca3c790930b6ec54e3036b3cdeeb26cece7efcc2b5dc1316

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bf4cce395d6b60f0951874995e73a294a03760e5cde1c6d7a8434b878413cb4
MD5 04e36889edc230b23a3e33deedbd73b0
BLAKE2b-256 9c5a027eef3802edb5116b0bd04994874b5de7f30ae3c7b6e211725f82978aa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7bdc016c92c2a99d2a31ed356589ce54eedb09f5af4bd4988601de2ad4f9751
MD5 bceeedee265c006a67ae73f71ad077d1
BLAKE2b-256 5ac57ec881626d2c2fa9c15c721d9f444a512717b0f40d79c5d8443b0446ccd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 06c90ff7cad84faca7a439c40de61b049fb9fcb7e1994a37a3f97b73476ecb48
MD5 394ce1ddc34017705b97ed73500d30b6
BLAKE2b-256 d0af722041fde27c2c3e78f071b023a1226e36e65643edec61db2aa138f1c7e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp39-cp39-win_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eb8cf182b7d9517646927e999dded1d7e06c3a8526910f7a10513f78a301a138
MD5 e90ed2e3ecfd17e41f16aaf07ee80e81
BLAKE2b-256 159d4e6e140c1216efabff81f0e30191f574e6b6c4a4a3a7c6cfbb801e43cb45

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pyopenttdadmin-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 349.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyopenttdadmin-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 42b01208b6a914ebefca2996c8fd000b64756862c90e36fbd1f3a4793510bcf5
MD5 5f0cf4aaebfc576780a8feea8c974fc9
BLAKE2b-256 5809460e371ef1ed7b6be89c0990c97fb1435651d55c58a6c30bc04becf84572

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp39-cp39-win32.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d17dfe737190e3ff77370dfc900f2011b8c2deda4afbe7ab78a656fdff80e19
MD5 00135962c961d09c38d4ea0e0c0f5b9e
BLAKE2b-256 d6978f1532a579fb22ed22a453f9b51453ed22275d4a4a3180d60e3c493f3227

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff6044a305563de9e7b01a589c20a38f5b865d6b026289c32b6b62e87b447d7f
MD5 a6559a84ce1bd522536dd20597134c96
BLAKE2b-256 4143f86043f81d4784138cccbe3a4b372b3063caa8016104b23a0bcfd30e3c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e81e01d005a5eea122ec129cd49d26a5bfa83af309550d43a58a4310e2c89fd2
MD5 93369721effab8d28a985cc1164cfaab
BLAKE2b-256 d12baada5dc0c70080263771989538343ce46e764d67303feb791deb75cf82a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 150923ef406a155579cce38334e2eeed3a1e543587404bf06d03571794d9a5b2
MD5 23dafa9a6a32fa0bebf1bb1888cbe4a1
BLAKE2b-256 ab2e0cc848264eb1f4c9b19eb29d69135b9d21aa08282a5cff0a067e439974e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98d3409607afc456817604642dc853e70560d7a2340403fc4f105010ce632bb5
MD5 17de0f5d1bbc11fb447f8866c389e05a
BLAKE2b-256 72f17ca6643151bcf1394a4618d6971a83187fd40b6c8bd56ef45da33e4ef8f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyopenttdadmin-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyopenttdadmin-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6efacf9d313d17de243081e1740ff4c877d568638500b0c7c420225eb3fdbc7
MD5 ede3821d7ad07e03047dd0ba0254cfd6
BLAKE2b-256 acb5643a341be85c22f8b64ac79d03b932f4ed71e33d24a2dde1a3e42fd33fe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyopenttdadmin-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish.yml on liki-mc/pyOpenTTDAdmin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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