Skip to main content

A Zwei, wow

Project description

# Zwei

The deployable discord bot

## Why

why not

## Instructions

None yet!

## Cog making instructions

```python
from pathlib import Path
from discord.ext import commands

class CogName:
def __init__(self, bot:commands.Bot, datadir:Path, **kwargs):
self.bot = bot
self.datadir = datadir # your bot-nominated data directory
...

@commands.command()
def hello(self): #currently same as discord.py
self.bot.say("Hi!")


def setup(bot:commands.Bot, datadir:Path, **kwargs): # kwargs here for future compatibility
return CogName(bot, datadir, **kwargs)
```

Project details


Release history Release notifications | RSS feed

This version

0.1

Supported by

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