Metadata-Version: 2.1
Name: Tinycord
Version: 0.3.0
Summary: Easy and flexible Discord wrapper built on aiohttp
Home-page: https://github.com/tinycord/Tinycord
Author: xArty
Author-email: email@xarty.xyz
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

<div align="center">
    <h1>TinyCord 🏮</h1>
    <p> Easy and flexible Discord wrapper built on aiohttp </p>
    <p>Thanks to <a href="https://github.com/Pincer-org/Pincer">Pincer</a> because we did take a lot of ideas and things from it <3  </p>
    <br>
    <img src="./Big-Banner.png" />
    <br>
</div>

<br>

<div align="center">

# Example

<div align="left">

```py
import tinycord

client = tinycord.Client(
    "Token", intents=[tinycord.Intents.all()]
)

@client.event
async def on_message(message: tinycord.Message):
    print(message.content)

@client.lisnten(tinycord.Events.messageUpdate)
async def update_message(before: tinycord.Message, after: tinycord.Message):
    print(f'{before.content} -> {after.content}')
    
client.connect()
```

# Auto Shard Example

```py
import tinycord

client = tinycord.Client(
    "Token", intents=[tinycord.Intents.all()]
)

@client.event
async def on_message(message: tinycord.Message):
    print(message.content)

@client.lisnten(tinycord.Events.messageUpdate)
async def update_message(before: tinycord.Message, after: tinycord.Message):
    print(f'{before.content} -> {after.content}')
    
client.connect_autosharded()
```

# Plugin

```py
import tinycord

plugin = tinycord.Plugin('test')

@plugin.event
async def on_ready(shard):
    print(f'{shard} is ready!')
```

# Docs
HELP!

# Discord

[![Tinycord Server](https://discord.com/api/guilds/923934645618376704/widget.png?style=banner2)](https://discord.gg/QP3CJythPh)


</div>
</div>


