diff options
author | 2024-07-16 02:21:53 +0300 | |
---|---|---|
committer | 2024-07-16 18:48:37 +0300 | |
commit | 6458acd706186aee15feaa19cc73bd114b054785 (patch) | |
tree | 9fbf1fb78434ca736944420464ce4804bed0402a /pydis_site/templates | |
parent | Merge pull request #1366 from python-discord/dependabot/pip/sentry-sdk-2.10.0 (diff) |
Add more allowed frameworks for CJ11
Diffstat (limited to 'pydis_site/templates')
-rw-r--r-- | pydis_site/templates/events/pages/code-jams/11/frameworks.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pydis_site/templates/events/pages/code-jams/11/frameworks.html b/pydis_site/templates/events/pages/code-jams/11/frameworks.html index f6984ab3..da50d0fc 100644 --- a/pydis_site/templates/events/pages/code-jams/11/frameworks.html +++ b/pydis_site/templates/events/pages/code-jams/11/frameworks.html @@ -97,6 +97,31 @@ </div> </div> + <div class="card mb-4"> + <div class="card-content"> + <div class="content"> + <p class="subtitle">interactions.py</p> + <p> + interactions.py offers a wide range of features for building Python-powered Discord bots and web applications. + </p> + </div> + </div> + <div class="card-footer"> + <a href="https://interactions-py.github.io/interactions.py/" class="card-footer-item"><i class="fas fa-book"></i> Documentation</a> + <a href="https://github.com/interactions-py/interactions.py" class="card-footer-item"><i class="fab fa-github"></i> GitHub</a> + </div> + </div> + + <h4 id="other-ways"><a href="#other-ways">Other Ways to Build Interactions</a></h4> + <p>It's possible to create Discord interactions with an HTTP client without relying on a Discord-dedicated framework. + This is allowed in the competition. + </p> + <p> + You can use libraries such as Flask, FastAPI, Starlette, and Tornado to build a web server along with any popular + HTTP client libraries such as requests, aiohttp, HTTPX, and grequests. + </p> + <p>Please be sure to check with the events team if you want to build Discord interactions using libraries not mentioned here.</p> + {% endblock %} {% block sidebar %} |