Discord OAuth2 extension for Quart.
Project description
quartcord
Table of Contents
About
Discord OAuth2 extension for Quart.
Installation
Requirements
- Quart
- pyjwt
- aiohttp
- oauthlib
- discord.py
- cachetools
- Async-OAuthlib
Setup
To install current latest release you can use following command:
python -m pip install quartcord
Basic Example
from quart import Quart, redirect, url_for
from quartcord import DiscordOAuth2Session, requires_authorization, Unauthorized
app = Quart(__name__)
app.secret_key = b"random bytes representing quart secret key"
app.config["DISCORD_CLIENT_ID"] = 490732332240863233 # Discord client ID.
app.config["DISCORD_CLIENT_SECRET"] = "" # Discord client secret.
app.config["DISCORD_REDIRECT_URI"] = "" # URL to your callback endpoint.
app.config["DISCORD_BOT_TOKEN"] = "" # Required to access BOT resources.
discord = DiscordOAuth2Session(app)
@app.route("/login/")
async def login():
return await discord.create_session()
@app.route("/callback/")
async def callback():
await discord.callback()
return redirect(url_for(".me"))
@app.errorhandler(Unauthorized)
async def redirect_unauthorized(e):
return redirect(url_for("login"))
@app.route("/me/")
@requires_authorization
async def me():
user = await discord.fetch_user()
return f"""
<html>
<head>
<title>{user.name}</title>
</head>
<body>
<img src='{user.avatar_url}' />
</body>
</html>"""
if __name__ == "__main__":
app.run()
Documentation
Head over to documentation for full API reference.
Support
- Project Issues
- FumeStop Community Server (
Help > quartcord
)
Credits
- Flask-Discord
- Quart-Discord (Do not use; no longer maintained)
License
Copyright © 2023 Sayan "Sn1F3rt" Bhattacharyya
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
quartcord-1.0.1.tar.gz
(15.3 kB
view details)
Built Distribution
quartcord-1.0.1-py3-none-any.whl
(18.6 kB
view details)
File details
Details for the file quartcord-1.0.1.tar.gz
.
File metadata
- Download URL: quartcord-1.0.1.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2fad39481a7ed072e5bab025f4d5f60ae08b3739022f2ae35f0702b73b7cf47 |
|
MD5 | 436cc4e44972bda1897f86b0b4addcf1 |
|
BLAKE2b-256 | 0c6a4151ae72fb8e23e894e1a57f9ac90ee7935ad57e60231bab17e8f5a7363f |
File details
Details for the file quartcord-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: quartcord-1.0.1-py3-none-any.whl
- Upload date:
- Size: 18.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 239fe5655da20a75ab2cf823b6646be9b4537a652b665aabcf412ac3c2129089 |
|
MD5 | 244e43c978d1b8a8cc0e4ee8826b428a |
|
BLAKE2b-256 | 2ccaf08db10557e9991923c2eb67183b91b4d47bf2daf6558fe50463dfe9e200 |