Skip to main content

An asynchronous, feature-rich Python wrapper for the Pterodactyl Panel API.

Project description

Ptero-Wrapper

An asynchronous, feature-rich Python wrapper for the Pterodactyl Panel API.

ptero-wrapper is designed to provide a clean, modern, and fully async interface for both the Pterodactyl Client API and Application API. It's built on httpx and asyncio, making it highly performant for modern applications.

A key feature of this wrapper is its built-in support for multi-panel operation, allowing you to seamlessly manage servers across multiple different Pterodactyl instances with a single controller.

Features

  • Fully Asynchronous: Uses async/await and httpx for high-performance, non-blocking I/O.
  • Complete API Coverage: Provides methods for all Client and Application API endpoints.
  • Multi-Panel Support: Natively handles API keys and URLs for multiple distinct Pterodactyl instances.
  • Object-Oriented Models: All API responses are parsed into clean, type-hinted data models (e.g., ClientServer, Node, User, Backup).
  • Relationship Handling: Intelligently links related objects. A ClientServer object can have its Node and Owner (User) objects pre-attached. Models like Nest and Egg can lazy-load each other.
  • Real-time Websockets: Includes helper methods for authenticating to the client websocket and capturing real-time console output.

Installation

pip install ptero-wrapper

Quick Start

Here's a simple example of how to instantiate the controller and manage a server.

import asyncio
from ptero_wrapper import PteroControl, Panel

# Define your panel configurations
panels_config = [
    Panel(
        id='main_panel',
        base_url='[https://panel.example.com/api](https://panel.example.com/api)',
        client_key='ptlc_MainKey...',
        app_key='ptla_MainKey...'
    ),
    Panel(
        id='oci_panel',
        base_url='[http://panel2.example.com/api](http://panel2.example.com/api)',
        client_key='ptlc_OciKey...',
        app_key='ptla_OciKey...'
    ),
    Panel(
        id='test_panel',
        base_url='[http://testpanel.example.com/api](http://testpanel.example.com/api)',
        client_key='ptlc_TestKey...'
        # This panel has no app key
    )
]

async def main():
    # Instantiate the main controller
    control = PteroControl(panels=panels_config)

    try:
        # --- Client API Example ---
        print("Fetching servers from ALL panels...")
        servers = await control.get_servers()
        if not servers:
            print("No servers found.")
            return

        server = servers[0]
        print(f"Found server: {server.name} (Panel: {server.panel_id}, State: {server.resources.current_state})")

        # Send a power signal
        # await server.start()
        # print("Server start signal sent.")

        # Send a command and get the output
        resp, output = await server.send_command_with_output("list")
        if not output.startswith("ws_fail"):
            print(f"Server List: {output}")

        # --- Application API Example ---
        print("\nFetching nodes from 'main_panel'...")
        # Access a specific panel's API
        if 'main_panel' in control.app_apis:
            nodes = await control.app_apis['main_panel'].get_nodes()
            for node in nodes:
                print(f"- Node: {node.name} (Location: {node.location.short_code})")
        
        # --- Relationship Example ---
        if server.node and server.owner:
            print(f"\nServer {server.name} is on Node: {server.node.name}")
            print(f"Server {server.name} is owned by: {server.owner.username}")


    except Exception as e:
        print(f"An error occurred: {e}")
    finally:
        # Always close the session when done
        await control.close()

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

License

This project is licensed under the MIT License.

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

ptero-0.2.tar.gz (17.9 kB view details)

Uploaded Source

Built Distribution

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

ptero-0.2-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file ptero-0.2.tar.gz.

File metadata

  • Download URL: ptero-0.2.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for ptero-0.2.tar.gz
Algorithm Hash digest
SHA256 51918053edda8f9820c2f4c2bf6187cb1641518bb350b46afd8ef5fa49f6eef9
MD5 9c7725d0dfd61d5032b6f62bdaa2ed64
BLAKE2b-256 3f97662d01553dd92f57f1a707f8e33273b2ec8478a45a4fc7693a5c97b5b3a5

See more details on using hashes here.

File details

Details for the file ptero-0.2-py3-none-any.whl.

File metadata

  • Download URL: ptero-0.2-py3-none-any.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for ptero-0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f4c76d2a26774142cfabc881ed50391221f527a56afbf5083397d8f5611dbcb1
MD5 9872ef78eb3158ba672ffe949f64b13a
BLAKE2b-256 1d19ee51f5c41e6dc6b44a67d63684c939bc4f77f0dbdd7d12da564e3928a5dc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page