Metadata-Version: 2.1
Name: tameris
Version: 0.1.0
Summary: A Python Discord API Wrapper based around customizability and expandability!
Home-page: https://github.com/erick-dsnk/tameris
Author: Tabacaru Eric
Author-email: erick.8bld@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown

# Tameris - Python Discord API wrapper!
Tameris is focused on customizability in your Discord bots as well as flexibility and expandability!

## Examples

1. Creating a bot with Tameris
```py
from tameris.core.client import Client

bot = Client(bot_token='my bot token', command_prefix='+')

async def on_ready():
    print('bot is ready')

bot.events.on_ready = on_ready

bot.run()
```

2. Making a command
```py
from tameris.core.client import Client
from tameris.commands.command import Command
from tameris.commands.context import Context

bot = Client(bot_token='my bot token', command_prefix='+')

class HelloCommand(Command):
    async def run(self, context: Context, call_arguments):
        await bot.send_message(message=f'Hello! @{context.author.name}#{context.author.discriminator}', channel_id=context.channel.id)
```

