Metadata-Version: 2.1
Name: stacket
Version: 0.2.1
Summary: Stacket API Wrapper
Home-page: https://github.com/simonmaribo/stacket-api-wrapper
Author: SIMON#1386
License: MIT
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

![version](https://img.shields.io/github/v/release/simonmaribo/Stacket-API-Wrapper?label=Version&style=plastic) 
# Stacket API Wrapper : Python
Build powerful systems integrating your services together like never before.

#### Installing Requests and Supported Versions

Stacket is available on PyPI:

```console
$ python -m pip install stacket
```

# Example usage
```python
from stacket.StacketClient import StacketClient

client = StacketClient("auth-token")

if not client.verify():
    print("Token not authenticated with Stacket")
else:
    print("Authenticated with Stacket")


client.create_service({
    "type": "minecraft",
    "node": "aad10",
    "package": "pkg1",
    "platform": "spigot",
    "version": "1.8.8"
})

for service in client.get_services():
    print(f"{service.get_id()} : {service.get_status()}")
```
