Metadata-Version: 2.1
Name: tameris
Version: 0.1.1
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

Creating a simple bot with Tameris

```py
bot = Client(bot_token='token', command_prefix='+')

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


async def ready():
    print('Logged in.')

async def on_message(message):
    await bot.process_commands(message)

bot.events.on_ready = ready
bot.events.on_message_create = on_message

bot.register_command(HelloCommand, 'hello')

bot.run()
```

