Metadata-Version: 2.1
Name: Flask-Discord-Interactions
Version: 1.0.4
Summary: A Flask extension for Discord slash commands.
Home-page: https://github.com/Breq16/flask-discord-interactions
Author: Brooke Chalmers
Author-email: breq@breq.dev
License: UNKNOWN
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: async
License-File: LICENSE

# Flask-Discord-Interactions

This is a Flask extension that lets you write Discord Slash Commands using a decorator syntax similar to Flask's `@app.route()` or Discord.py's `@bot.command()`.

```
@discord.command()
def ping(ctx):
    "Respond with a friendly 'pong'!"
    return "Pong!"
```

Full documentation is available on [readthedocs](https://flask-discord-interactions.readthedocs.io/).

