diff options
Diffstat (limited to 'pydis_site')
-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 %} |