Metadata-Version: 2.1
Name: py-dactyl
Version: 0.0.1a0
Summary: An easy to use Python wrapper for the Pterodactyl Panel API.
Home-page: https://github.com/iamkubi/pydactyl
Author: Ryan Kubiak
Author-email: iamkubi@gmail.com
License: UNKNOWN
Description: # pydactyl
        ======================
        
        [![Latest docs][docs-img]][docs]
        
        
        An easy to use Python wrapper for the Pterodactyl Panel API.
        
        ## Getting Started
        
        ```python
        from pydactyl import PterodactylClient
        
        # Create a client to connect to the panel and authenticate with your API key.
        client = PterodactylClient('https://panel.mydomain.com', 'MySuperSecretApiKey')
        
        # Get a list of all servers the user has access to
        my_servers = client.client.list_servers()
        # Get the unique identifier for the first server
        srv_id = my_servers.json()['data'][0]['attributes']['identifier']
        
        # Check the utilization of the server
        srv_utilization = client.client.get_server_utilization(srv_id)
        srv_utilization.json()
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Requires-Python: >=3.4
Description-Content-Type: text/markdown
