Metadata-Version: 2.1
Name: deta-discord-interactions
Version: 0.0.2
Summary: A web framework for Discord interactions specialized for usage in https://deta.sh
Home-page: https://github.com/etrotta/flask-discord-interactions/tree/deta
Author: etrotta
Author-email: etrotta <etrotta@duck.com>
License: MIT
Project-URL: Homepage, https://github.com/etrotta/flask-discord-interactions/tree/deta
Project-URL: Bug Tracker, https://github.com/etrotta/flask-discord-interactions/issues
Platform: any
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# Deta-Discord-Interactions

This is a small web framework that lets you write Discord Application Commands using a decorator syntax similar to Flask's `@app.route()` or Discord.py's `@bot.command()`, specialized for usage in https://deta.sh

It is a fork of [flask-discord-interactions](https://pypi.org/project/Flask-Discord-Interactions/), but without requiring Flask and with some added features to make the usage of the library simpler.

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

The documentation of the original library is available on [readthedocs](https://flask-discord-interactions.readthedocs.io/).
The documentation of the Fork is still Work in Progress.
