Skip to main content

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.

Release files for pyOpenTTDAdmin 1.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pyOpenTTDAdmin 1.1.0
File Size Uploaded
pyopenttdadmin-1.1.0.tar.gz 57.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pyOpenTTDAdmin 1.1.0
File
pyopenttdadmin-1.1.0-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
pyopenttdadmin-1.1.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
pyopenttdadmin-1.1.0-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
pyopenttdadmin-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
pyopenttdadmin-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
pyopenttdadmin-1.1.0-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
pyopenttdadmin-1.1.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
pyopenttdadmin-1.1.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
pyopenttdadmin-1.1.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
pyopenttdadmin-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl CPython 3.14 CPython 3.14 iOS 13.0+ ARM64 Simulator Details
pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl CPython 3.14 CPython 3.14 iOS 13.0+ ARM64 Device Details
pyopenttdadmin-1.1.0-cp314-cp314-android_24_x86_64.whl CPython 3.14 CPython 3.14 Android API level 24+ x86-64 Details
pyopenttdadmin-1.1.0-cp314-cp314-android_24_arm64_v8a.whl CPython 3.14 CPython 3.14 Android API level 24+ ARM64 v8a Details
pyopenttdadmin-1.1.0-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
pyopenttdadmin-1.1.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pyopenttdadmin-1.1.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
pyopenttdadmin-1.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl CPython 3.13 CPython 3.13 PyEmscripten 2025.0+ WebAssembly Details
pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
pyopenttdadmin-1.1.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pyopenttdadmin-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl CPython 3.13 CPython 3.13 iOS 13.0+ ARM64 Simulator Details
pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl CPython 3.13 CPython 3.13 iOS 13.0+ ARM64 Device Details
pyopenttdadmin-1.1.0-cp313-cp313-android_24_x86_64.whl CPython 3.13 CPython 3.13 Android API level 24+ x86-64 Details
pyopenttdadmin-1.1.0-cp313-cp313-android_24_arm64_v8a.whl CPython 3.13 CPython 3.13 Android API level 24+ ARM64 v8a Details
pyopenttdadmin-1.1.0-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
pyopenttdadmin-1.1.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pyopenttdadmin-1.1.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
pyopenttdadmin-1.1.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pyopenttdadmin-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
pyopenttdadmin-1.1.0-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
pyopenttdadmin-1.1.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pyopenttdadmin-1.1.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
pyopenttdadmin-1.1.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pyopenttdadmin-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
pyopenttdadmin-1.1.0-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
pyopenttdadmin-1.1.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pyopenttdadmin-1.1.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
pyopenttdadmin-1.1.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pyopenttdadmin-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
pyopenttdadmin-1.1.0-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
pyopenttdadmin-1.1.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pyopenttdadmin-1.1.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
pyopenttdadmin-1.1.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
pyopenttdadmin-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size:74.4 MB

Release files / pyopenttdadmin-1.1.0.tar.gz

Download URL pyopenttdadmin-1.1.0.tar.gz
Size 57.4 kB
Tags Source
SHA-256 checksum
How to use checksums
e678ec20002cbf7f0910334bf0dc083032c77ae5f6493fa22423239ea1580660
BLAKE2b-256 checksum
How to use checksums
94bf710a248f90d317738cb9c7e483c1966284c6aad4dde44f152f0a82e454fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314t-win_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314t-win_arm64.whl
Size 549.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
395c0815b3dcb583be127e395381b900d18b8c3e5c0028ecf1cc456a332c8522
BLAKE2b-256 checksum
How to use checksums
aa88d8df90246199b5d1f624fb838fe70c5a24feb0815f39bb47219d97750bab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314t-win_amd64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314t-win_amd64.whl
Size 382.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
da2b2aecdb2d08e5718cc1bac4cd57e53486fe0be5ad4c2173b4c517ad86290e
BLAKE2b-256 checksum
How to use checksums
dbcd3bdb57ec51e6b355916b8e5b5cfa775ec7621b229b8a875a576f4d5d4381
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314t-win32.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314t-win32.whl
Size 362.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
d8e9e298637c404acde88344842894818b67b16e2f76c43545be65f283a315f1
BLAKE2b-256 checksum
How to use checksums
3087b51a3ee914561686035ce949ca382b40226fca6834c1df06d733b065e870
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c1258771cad58f11a7920cfc7d820ea16d905a1d34985ccb5b20470172be67b8
BLAKE2b-256 checksum
How to use checksums
fef9a7d74d8f452abaa5b73720e7afdf526189761402a7bcbd2568b077b202b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 2.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7d75909b6d1057ba601103a373174fac8c067bb0e18b8a28989614b0c61ed78e
BLAKE2b-256 checksum
How to use checksums
6b99ad46e07573e9120ec41c9a963e6c94fea548ac853731b94a3a726454ed6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 1.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
02cf8c3f167641106b389481f6bdb0e7560d8e21553b7e162effb503a9c0e3c5
BLAKE2b-256 checksum
How to use checksums
dc8779139757dda8efb8e74059035bf026529ed37a92e3e9ef2103118310d49b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f492f2703d9c9566450ab53cc4eb968158e6326d5e7737346ebb557001c05690
BLAKE2b-256 checksum
How to use checksums
e7f7a30b302f270697ba98c3e424856984053e6dd563398a3c4ff946ceaa5b72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 205.8 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a9e647ff6dfde5013423284e71ec8cdb5ca2194e77c0cdbeaf91398c25d6ade2
BLAKE2b-256 checksum
How to use checksums
ab3ec5b09a23c8a83f788fd400652e8c332b110426cd987816dff007e96e730d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 212.0 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
5ecf0d8bb7acca0fb1da0483c502498eb2c8216f88b46f5f7ead17b3b1dfb1f5
BLAKE2b-256 checksum
How to use checksums
d9ee5ed5f6931b4afe5278d144dd4fa2003436ccb8d84b3d8ffc9eab54fde152
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-win_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-win_arm64.whl
Size 544.1 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
af67ec7b5b362194325633d3082ea37b2d58ab9f3044a51aa2b4d575cf490909
BLAKE2b-256 checksum
How to use checksums
64eb7761885e4fbe1968f445d3eab1c7beaf2e59a402fa204d7017ea2531265f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-win_amd64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-win_amd64.whl
Size 378.5 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
9d7f8cfafd60c775e1003088037e17856254c5c0f0e5fb079e72ada4f581e280
BLAKE2b-256 checksum
How to use checksums
b1918905cb7f68bf3f9faab8d39768e6d4975e3222ee5ba2e80b45bce0657fb5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-win32.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-win32.whl
Size 358.9 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
1863a1c14b01d45885be9d096a4d028ca78142592e2ee3def975a0bc5fd6e576
BLAKE2b-256 checksum
How to use checksums
c2b9ce3ac8d89a85e8b39c963c4d4a6610d9097ef77cb2a2b969f91362978441
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
624a1d6a9a39ba7d687136c9423f9d639c41a16c0ea086b3a2ff8567a33d364f
BLAKE2b-256 checksum
How to use checksums
eee244de4135830fe1ff37dd93ea8534076d4982b23880a0203ccc8f27e84155
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 2.6 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
527729be9c5adeff8ddae42a56fd786dcea8d843c8d348757249fad0ecfe366e
BLAKE2b-256 checksum
How to use checksums
82454f1a777c79fc8b899528bed60eceec777799501d040338ee1bed4527f41e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9e83706db4fb6ffeb16093b8d5f2ff6fa713d9ec047e3cc51b87960c17cd0a9d
BLAKE2b-256 checksum
How to use checksums
78da9baae39ffb6b309bf9e1cf075958c48d7801d6352d7918e0128fb6dd6a35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.14 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8b8b2dae8054d5814d48dc25d8eb04eddd354035636cd7eecf9a34c7aef5c764
BLAKE2b-256 checksum
How to use checksums
497b48236724247353eb05f2b3a756fc003c7748b3160406d0f3bc06fbb1aa5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Size 198.6 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5dea044b58e7642ee0d8d4dfba5ef5aba537e2f4dcbb0af8799861d0ee20e981
BLAKE2b-256 checksum
How to use checksums
0761152b1f63f410bd4c0aff34da8484113637fb792f52afcc56ea1a80007dcd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 205.4 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
c0016b3c16704f5ee37377eb656d54c0a8e25c85ba50a6b5ac524fe3b0fef300
BLAKE2b-256 checksum
How to use checksums
24f483e6ebe024e081f1297080ea1dd95489437981584228c3bc9e1acd24665b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Size 198.3 kB
Tags CPython 3.14 iOS 13.0+ ARM64 Simulator
SHA-256 checksum
How to use checksums
01cfac74efe6e244c5505b5c06bff0adbd93b88fce23a0f1e299ef30afe332ee
BLAKE2b-256 checksum
How to use checksums
972a52ecfc7dd84b903e226ca115997398762d3d89e29b59c08e5333f56eb6fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Size 194.5 kB
Tags CPython 3.14 iOS 13.0+ ARM64 Device
SHA-256 checksum
How to use checksums
20ad5b4252ce8aa40d45502c138c4107063df8150bab1d5f9ed301c856f57987
BLAKE2b-256 checksum
How to use checksums
e576e435ed176093d440ff29fa0bd5597ca1fc879fbee59084ea3dbc24c17741
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-android_24_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-android_24_x86_64.whl
Size 697.7 kB
Tags Android API level 24+ x86-64 CPython 3.14
SHA-256 checksum
How to use checksums
898c4808d4ef57e13138f511aa11a70c695b39a7b2df44405b607cd075da2ad4
BLAKE2b-256 checksum
How to use checksums
bd064a3ca89efd1414ca750cbfc4b30c0432a05a830412d30e87142564e2d319
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp314-cp314-android_24_arm64_v8a.whl

Download URL pyopenttdadmin-1.1.0-cp314-cp314-android_24_arm64_v8a.whl
Size 725.9 kB
Tags Android API level 24+ ARM64 v8a CPython 3.14
SHA-256 checksum
How to use checksums
78d1c24a80e63ef0f16d3ffa6107d6398643908cd27b054416f2e19760fe25ba
BLAKE2b-256 checksum
How to use checksums
b5e21c290aa1a6cb5a567a13c261f963d5eac496f924178ee3f7eabb78bb49b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-win_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-win_arm64.whl
Size 526.3 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
23c406d0fb081c72487ba99593210803a6166de2b1f2802a509b0f0409bf21ce
BLAKE2b-256 checksum
How to use checksums
fc354003a47dd449fff015a2c660ebe8bdd187717ab4bf834979253d6def7419
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-win_amd64.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-win_amd64.whl
Size 367.6 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
c9359724c4077d34504ed92fb96cd8fe42cb562d2c2e29188694d63eab76e89e
BLAKE2b-256 checksum
How to use checksums
8de789bfbf0bbcca2c06707289025a5862c720643a627c1f93c796dbc3f2f148
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-win32.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-win32.whl
Size 349.7 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
da0a9c3b2988d9e6207ebd4907c29a5d45a5595d8fad9cca98490e64cee8a63d
BLAKE2b-256 checksum
How to use checksums
a89ce013c49084d1ceb8afde5b94b0309f4e86ffdc3807755159d1d23f667151
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Size 119.4 kB
Tags CPython 3.13 PyEmscripten 2025.0+ WebAssembly
SHA-256 checksum
How to use checksums
a319d9ed3c54233884a279e187712dfe563f4b3e145d95e285667c350cb6e923
BLAKE2b-256 checksum
How to use checksums
45067080c4fed1040f31d38e861fe1961b7d2cfe7f6b58e0cc0047bd2975fc7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9378dcf084cf8668ecffe37f00dbc574fdc0810c6e395723da00b187fb25f07f
BLAKE2b-256 checksum
How to use checksums
150e4a7a290a948e212bccd7bf1061552b5296e3f2665e1eac11e9735c122ad2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 2.6 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8cedb61c83bf8056c0d8907f48c75c32f620e866e8713b9ea963fb4ff74b38ac
BLAKE2b-256 checksum
How to use checksums
50d184bfce1fa8bea1f586a9825793e08a025d1ecfe187ef4ade2901406c0bf7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
259f0f4c789b25530363b0bc760a924facc9d6f37a95f2d5d433aa0dc9d2797b
BLAKE2b-256 checksum
How to use checksums
451e371b938b3ee9dca3427ffdac774b2f9f741edd29b10283662f5b501a6e6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.13 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fb4dfbec701bd508ce66e1f55e6d116a17458757248275fd6951e3147fb1e690
BLAKE2b-256 checksum
How to use checksums
b194f4ace3dc6788d7cc7b2934c36841fd4571dac8df34d4227b7a454af655b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Size 198.3 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d6bdf94a99ba8fa3e9162c87d2db86487c3df34d5a80587da878891251e2f397
BLAKE2b-256 checksum
How to use checksums
5654cc8ff86cc12f6681e29b0206dc7644c5063f87f6092d573f4555962065cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 205.0 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
62c8d95b2a58492e7e6914f709273fa04d0eb02f2b07e6ee99c8d0b68442dbd6
BLAKE2b-256 checksum
How to use checksums
8d51ffa8c3965426a1a350b25a6600dbcc852e7f32535b503dc6cfd68221d490
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Size 198.1 kB
Tags CPython 3.13 iOS 13.0+ ARM64 Simulator
SHA-256 checksum
How to use checksums
67df306863a5e6a81eb55f00d10b9733ed4ff0df3cb6a2450b03de7215a6dab9
BLAKE2b-256 checksum
How to use checksums
6cb8b1674a3c3f3026797bf1a3efcc3f0a3bda92da874268e859e3d21291669a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Size 194.4 kB
Tags CPython 3.13 iOS 13.0+ ARM64 Device
SHA-256 checksum
How to use checksums
9c18fdd2e7c4395783a842312e82c6ea2e5d33f7cede9478ce4d32e018128b42
BLAKE2b-256 checksum
How to use checksums
6f7ddd14adb50015feb434b3c49b42415ae05d1da989887458c5feddd96f2def
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-android_24_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-android_24_x86_64.whl
Size 697.5 kB
Tags Android API level 24+ x86-64 CPython 3.13
SHA-256 checksum
How to use checksums
4dc446160d3b53b0b70a6e001ac744c497e2418794e47e37207855f2395d8ace
BLAKE2b-256 checksum
How to use checksums
9d6fddd6d646e56e078e7139cef4b4c163d2eaf77c37c923848f32aaf86642e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp313-cp313-android_24_arm64_v8a.whl

Download URL pyopenttdadmin-1.1.0-cp313-cp313-android_24_arm64_v8a.whl
Size 725.6 kB
Tags Android API level 24+ ARM64 v8a CPython 3.13
SHA-256 checksum
How to use checksums
12caa0632e6d1d670ad54287c72286848d3c809884897c1993ecdda830a1fe68
BLAKE2b-256 checksum
How to use checksums
ada599951a274d9f8eb9087bcac47c133c77c78f3e1cd225c2b349e557684713
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp312-cp312-win_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp312-cp312-win_arm64.whl
Size 526.3 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
ad0a04fb782f1172ca43d03b5c5b4265a1fea9862110b684fea8e28943ed5d29
BLAKE2b-256 checksum
How to use checksums
8df067b5c33de89c6a77bd07de82c2755d37cf628d24a48b9b4c9edf7837a82f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp312-cp312-win_amd64.whl

Download URL pyopenttdadmin-1.1.0-cp312-cp312-win_amd64.whl
Size 367.6 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e11b12d36f444b8b7c19bdc79975ebca19d040fa61a0c6d271276c8d05ce4881
BLAKE2b-256 checksum
How to use checksums
402be6bbcef8f553bfc1f48958a510c7d9e37b9c92ed735b95318bfeb72c9070
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp312-cp312-win32.whl

Download URL pyopenttdadmin-1.1.0-cp312-cp312-win32.whl
Size 349.7 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
f18ae6fc657aa15cc4db3171d899e7b3e5cd8359743ec1d270ff2a4ceb6c7462
BLAKE2b-256 checksum
How to use checksums
23f1dad0fab8577b84a249448588c589b5179665e360fa0f8d2208d93e7f54d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
27c00628ea5bb1788c75a711fb232b5b1d2ce397ef034cf5ee9e42613ff38578
BLAKE2b-256 checksum
How to use checksums
4bbbd2f430131ab84f1023fff266dd02f71b41f9cd35e252c0fcfb848c286151
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 2.6 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
635e291ca94d6315f62e0a5cd25aad8c9cba99e2bedd7285fc9f2fde18f6d951
BLAKE2b-256 checksum
How to use checksums
e067b9149f74f8764ab64b55120af2af54803f5dd10fff3ddf12e85789934c1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4e6a7c20db263ae05edce20899fa9b02cd22f1c36d173b41081cdbf335669945
BLAKE2b-256 checksum
How to use checksums
7208bbbb07a2134186b01cb2bc09a6711bd9820474eb8b20a2b544d0d942a4c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.12 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1a3aa156bca10b307d908cd9410ffd64bcab22bfcf5bb22b322296af6dc832c5
BLAKE2b-256 checksum
How to use checksums
b1e0273844e628bf43dece5d1e78b20fc60f18ea7e4b8aba6e2d10f7781f48e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Size 198.2 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
10fd19d74bc83c07afb12e8969c1af9ec56a9d1bb41a1b512eae7423add60e0b
BLAKE2b-256 checksum
How to use checksums
c5b66525e9aeb5809e9ed9087266896ae3be089ac60c26c4cfd291cf05d113e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 205.0 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
c43bd5466bdbd1d0e889876570c60adc6a633f9775c983aafb2b8e15680e8a87
BLAKE2b-256 checksum
How to use checksums
8025556c995e088f28f737eee0b35f6d43266e5700d56f8d93acb7d6719f05e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp311-cp311-win_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp311-cp311-win_arm64.whl
Size 527.6 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
122adfc540949fef7f41a6b67224882684304e71dab2ab5f7a574d9893f71b41
BLAKE2b-256 checksum
How to use checksums
ba7dc509edd57883e7f9488212634b14bd2b954f2638b29f80b017a557482b24
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp311-cp311-win_amd64.whl

Download URL pyopenttdadmin-1.1.0-cp311-cp311-win_amd64.whl
Size 366.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
72a9f993cab5bfded7823a02a2caa76eff396bbf71d95b9ae44c5593f0c90eb0
BLAKE2b-256 checksum
How to use checksums
1090043c4672a4f96d1ef1c941c3f8bbb0f48b2ba1c68712d1f81a7142f55e49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp311-cp311-win32.whl

Download URL pyopenttdadmin-1.1.0-cp311-cp311-win32.whl
Size 349.2 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
198eb0e3385ea9986841fe81ddf3b5e0aa91b42120126e3ee06a0fe30e67391a
BLAKE2b-256 checksum
How to use checksums
72e1502befc9f6557802bdcc03533d04d5f0320f809b0d0c7b93b9c406a8c9f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.6 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8b197ddedb4a861c9a69d5df0e655e3d60c3d924f65b5b707e48559d31e8ed48
BLAKE2b-256 checksum
How to use checksums
42278782b21508e727b89e175007ccb7169e6520f58050ca87411a19329b2b16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 2.5 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c2d70477987af03459979b759e488d503a28969a2883b88d3f6aae5db5c93139
BLAKE2b-256 checksum
How to use checksums
609320492b17aa2236920cd6c6543e2f173a9cf45e2060cd9a03e4db7719433c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cea38c9d92ea651ec1b2a5340cca951bf67e76670b5160625541246b452abf80
BLAKE2b-256 checksum
How to use checksums
15dee5d82915126df3c7a61d3d0444f5170f9ba3742b03d7a948064c1c73e948
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.11 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
edb3bd58b6d753a8130cc61f9364c586e3975219d99c1c51f96692020b277549
BLAKE2b-256 checksum
How to use checksums
a54b876f1d7ee33be862a8557bfca5e5c526fdbe0964bcd8a4b7cfd45f023f72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Size 197.9 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
96f4e216129ab6607ed548ca32563991d519b2d838bf089b292485c895afbddd
BLAKE2b-256 checksum
How to use checksums
b0985988f7af5e2d4c127461da8e63e3efa7069e1c73205b347d099616c4d67f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 203.9 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
862e2af69b305ba97d83a63109cb52dc712b517965abb8de5b921ec09ab96c93
BLAKE2b-256 checksum
How to use checksums
f610484c7e3b381bfb6e2e903fb057b4715d5d24740dbed6ec6cee9af73bc985
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp310-cp310-win_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp310-cp310-win_arm64.whl
Size 526.6 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
21d8e4639be8204ff7460bffba9f5a5b46628dadae609d8035e88685a96a29e3
BLAKE2b-256 checksum
How to use checksums
680b3d90b53d457951829eb8247f1e63c24fc8fbeb24fc9aedba08493b125a13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp310-cp310-win_amd64.whl

Download URL pyopenttdadmin-1.1.0-cp310-cp310-win_amd64.whl
Size 365.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
5140ca50ad2a28400e35268dce211a23c5f852900c51fb73b904561c94f4ef21
BLAKE2b-256 checksum
How to use checksums
03b7fe95a7f10149902359dfb72d8ab2c1d69d6c6d0d743ac96c8353c23d6559
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp310-cp310-win32.whl

Download URL pyopenttdadmin-1.1.0-cp310-cp310-win32.whl
Size 347.8 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
dd04a456bab1b5fc7d9cb375e5258fde25ab22c0e1ac16300886f51c26337c48
BLAKE2b-256 checksum
How to use checksums
a9bb44bfc8c363b03d782b971aa2e557ac1a880a64054ff149036d7bfbd503b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.6 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b394dd477691ad3dcfde8aa4abc9d9bd73ea8dd1929e1c76354ad8af9eb520ef
BLAKE2b-256 checksum
How to use checksums
0366f4e8906c225c4a33d5527ed522faa3f26303c59fecf1b0983c00b4b54d87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 2.5 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1fea258dafbe618d590ad20a488d2366c21070609bd8d12caa82cd569f6d9226
BLAKE2b-256 checksum
How to use checksums
6d64ff5ffc20c1d58d7ed75d8b2bedf3f54df50b22553ac4713ec19562c9ade0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ed87d6b42bc626951139db428147ecd122c367b8fdd4c9e7cab681f85ca97355
BLAKE2b-256 checksum
How to use checksums
5db808dd5a4b138cc5d3a6b8677cfb7d30eac9e58359c97bcc26191d15697f02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.10 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
866db60136eb0fc70f402b200123b70f8a93bea536f4317f7aba8ec435e91020
BLAKE2b-256 checksum
How to use checksums
65236c1ab81b8845ca3c790930b6ec54e3036b3cdeeb26cece7efcc2b5dc1316
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Size 196.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1bf4cce395d6b60f0951874995e73a294a03760e5cde1c6d7a8434b878413cb4
BLAKE2b-256 checksum
How to use checksums
9c5a027eef3802edb5116b0bd04994874b5de7f30ae3c7b6e211725f82978aa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 202.6 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e7bdc016c92c2a99d2a31ed356589ce54eedb09f5af4bd4988601de2ad4f9751
BLAKE2b-256 checksum
How to use checksums
5ac57ec881626d2c2fa9c15c721d9f444a512717b0f40d79c5d8443b0446ccd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp39-cp39-win_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp39-cp39-win_arm64.whl
Size 526.2 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
06c90ff7cad84faca7a439c40de61b049fb9fcb7e1994a37a3f97b73476ecb48
BLAKE2b-256 checksum
How to use checksums
d0af722041fde27c2c3e78f071b023a1226e36e65643edec61db2aa138f1c7e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp39-cp39-win_amd64.whl

Download URL pyopenttdadmin-1.1.0-cp39-cp39-win_amd64.whl
Size 367.1 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
eb8cf182b7d9517646927e999dded1d7e06c3a8526910f7a10513f78a301a138
BLAKE2b-256 checksum
How to use checksums
159d4e6e140c1216efabff81f0e30191f574e6b6c4a4a3a7c6cfbb801e43cb45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp39-cp39-win32.whl

Download URL pyopenttdadmin-1.1.0-cp39-cp39-win32.whl
Size 349.2 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
42b01208b6a914ebefca2996c8fd000b64756862c90e36fbd1f3a4793510bcf5
BLAKE2b-256 checksum
How to use checksums
5809460e371ef1ed7b6be89c0990c97fb1435651d55c58a6c30bc04becf84572
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 2.6 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5d17dfe737190e3ff77370dfc900f2011b8c2deda4afbe7ab78a656fdff80e19
BLAKE2b-256 checksum
How to use checksums
d6978f1532a579fb22ed22a453f9b51453ed22275d4a4a3180d60e3c493f3227
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 2.5 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ff6044a305563de9e7b01a589c20a38f5b865d6b026289c32b6b62e87b447d7f
BLAKE2b-256 checksum
How to use checksums
4143f86043f81d4784138cccbe3a4b372b3063caa8016104b23a0bcfd30e3c7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e81e01d005a5eea122ec129cd49d26a5bfa83af309550d43a58a4310e2c89fd2
BLAKE2b-256 checksum
How to use checksums
d12baada5dc0c70080263771989538343ce46e764d67303feb791deb75cf82a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL pyopenttdadmin-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.9 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
150923ef406a155579cce38334e2eeed3a1e543587404bf06d03571794d9a5b2
BLAKE2b-256 checksum
How to use checksums
ab2e0cc848264eb1f4c9b19eb29d69135b9d21aa08282a5cff0a067e439974e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL pyopenttdadmin-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Size 196.9 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
98d3409607afc456817604642dc853e70560d7a2340403fc4f105010ce632bb5
BLAKE2b-256 checksum
How to use checksums
72f17ca6643151bcf1394a4618d6971a83187fd40b6c8bd56ef45da33e4ef8f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release files / pyopenttdadmin-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL pyopenttdadmin-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 202.7 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e6efacf9d313d17de243081e1740ff4c877d568638500b0c7c420225eb3fdbc7
BLAKE2b-256 checksum
How to use checksums
acb5643a341be85c22f8b64ac79d03b932f4ed71e33d24a2dde1a3e42fd33fe9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 12, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.1.0 This release

73 release files

1.0.4

2 release files

1.0.3

2 release files

1.0.2

2 release files

1.0.1

2 release files

1.0.0

2 release files

0.1.3

2 release files

0.1.2

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page