Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more allowed frameworks for CJ11 #1365

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions pydis_site/templates/events/pages/code-jams/11/frameworks.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,31 @@ <h3 id="approved-frameworks"><a href="#approved-frameworks">Approved Frameworks<
</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>&ensp;Documentation</a>
<a href="https://github.com/interactions-py/interactions.py" class="card-footer-item"><i class="fab fa-github"></i>&ensp;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 %}
Expand Down