Skip to main content

A Python wrapper for the Stoat API

Project description

A simple, flexible API wrapper for Stoat.

Key Features

  • Built on asyncio.

  • Sane rate limit handling that prevents 429s

  • Fast. Really faster than Revolt.py and voltage.

  • Low memory usage.

  • Customizable architecture. Build object parser in Rust to achieve high speeds.

  • Focuses on supporting both, bot and user accounts.

Installing

Python 3.10 or higher is required

To install the library, you can just run the following command:

# Linux/macOS
python3 -m pip install -U stoat.py

# Windows
py -3 -m pip install -U stoat.py

Or to install alpha master (with all new features):

# Linux/macOS
python3 -m pip install -U git+https://github.com/MCausc78/stoat.py@master

# Windows
py -3 -m pip install -U git+https://github.com/MCausc78/stoat.py@master

Quick Example

from stoat import Client

class MyClient(Client):
    async def on_ready(self, _, /):
        print('Logged on as', self.me)

    async def on_message(self, message, /):
        # don't respond to ourselves
        if message.author_id == self.me.id:
            return

        if message.content == 'ping':
            await message.channel.send('pong')

# You can pass `bot=False` to run as user account
client = MyClient(token='token')
client.run()

Bot Example

from stoat.ext import commands

# Pass `self_bot=True` to make your bot listen only to you
bot = commands.Bot(command_prefix='!')

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

token = 'token'

# That's also allowed, just like in `discord.py`. Pass `bot=False` keyword argument if you want to run as user account.
bot.run(token)

Why Not

  • pyrevolt - Doesn’t follow PEP8 and does a ton of requests on startup (not member list).

  • voltage - Slow and simply copypasta from revolt.py.

  • revolt.py - Slow and unable to disable member list loading.

  • luster - Unmaintained library.

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

stoat_py-1.2.0.tar.gz (336.0 kB view details)

Uploaded Source

Built Distribution

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

stoat_py-1.2.0-py3-none-any.whl (379.0 kB view details)

Uploaded Python 3

File details

Details for the file stoat_py-1.2.0.tar.gz.

File metadata

  • Download URL: stoat_py-1.2.0.tar.gz
  • Upload date:
  • Size: 336.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for stoat_py-1.2.0.tar.gz
Algorithm Hash digest
SHA256 b877326061c2ce4c37f2d20a09f1207c48bb835a859f3f0945bf295c2e322a21
MD5 73085ca6c087a7b9bafddc019b0406bf
BLAKE2b-256 20bb4c5cbe8d25d823a8a893856ac48c0e33442321adcca096b3b4a2278aa714

See more details on using hashes here.

File details

Details for the file stoat_py-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: stoat_py-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 379.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for stoat_py-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5aadba502350d5309899c6aa48f543a194684292b3bf0f1bf2188d87393e6d3e
MD5 ea475717906c7702ca7f187a2a97136d
BLAKE2b-256 db42a10ce1fa89743ef6981fd1d8caf0d09ed5fad0507d2b329c768d5647fc7e

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