Metadata-Version: 2.4
Name: gameseek
Version: 1.1.0
Summary: Offizieller GameSeek Bot-API-Wrapper (Discord-ähnliches Coding)
Author-email: GameSeek <brand@gameseekapp.com>
License-Expression: MIT
Project-URL: Homepage, https://gameseekapp.xyz/bot
Project-URL: Documentation, https://gameseekapp.com/bot
Project-URL: Bug Tracker, https://gameseekapp.com/bot
Project-URL: Download, https://gameseekapp.xyz/bot/gameseek-pkg.zip
Keywords: gameseek,bot,discord,chat,api
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28
Dynamic: license-file

# gameseek

Offizieller Python-Wrapper für [GameSeek](https://gameseekapp.com)-Bots.
Discord-ähnliches Coding: `Bot`, `Embed`, `Button`, `View`.

## Installation

**Empfohlen (PyPI):**

```bash
pip install gameseek
```

**Direkt vom GameSeek-Server (immer aktuell):**

```bash
pip install https://gameseekapp.xyz/bot/gameseek-pkg.zip
```

Auch über `.com` möglich, falls die ZIP dort geroutet wird:

```bash
pip install https://gameseekapp.com/bot/gameseek-pkg.zip
```

## Schnellstart

```python
from gameseek import Bot, Embed

TOKEN = "gsbot_DEIN_TOKEN"
bot = Bot(TOKEN, command_prefix=("!", "/"))

@bot.command()
async def ping(ctx):
    await ctx.send("Pong!")

@bot.command()
async def hello(ctx):
    embed = Embed(title="Hallo", description=f"Hey {ctx.author}!")
    await ctx.send(embed=embed)

bot.run()
```

Token und Invite bekommst du im [Bot Portal](https://gameseekapp.xyz/bot).

## Abhängigkeit

Nur `requests` — **kein** `discord.py` nötig.

## Lizenz

MIT © GameSeek
