Metadata-Version: 2.1
Name: discord-sdk
Version: 0.1.2a0
Summary: An asynchronous Discord library for python.
Home-page: https://github.com/moanie/discord-sdk
Author: moanie
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown
Provides-Extra: speedups

#### Quick Example

```py
import discordsdk


client = discordsdk.Client()

# make a basic slash command

@client.slash_command(guild_ids=[00000000])
async def hello(ctx):
    await ctx.send("hello world!")


client.run("TOKEN")
```

