2020-10-04 21:16:32 +05:30
2020-07-30 17:31:01 +05:30
2020-10-01 12:00:15 +05:30
2020-10-04 21:16:32 +05:30
2020-10-02 10:03:53 +05:30
2019-05-08 09:51:51 +05:30
2020-10-02 21:40:34 +13:00
2019-05-08 09:49:40 +05:30
2020-10-01 12:00:15 +05:30
2020-10-01 12:00:15 +05:30

Quart-Discord

PyPI Read the Docs

Discord OAuth2 extension for Quart.

Installation

To install current latest release you can use following command:

python3 -m pip install Quart-Discord

Basic Example

from quart import Quart, redirect, url_for
from quart_discord 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()

For an example to the working application, check test_app.py

Requirements

  • Quart
  • Async-OAuthlib
  • cachetools
  • discord.py

Documentation

Head over to documentation for full API reference.

Description
Discord OAuth2 extension for Flask. An Easier implementation of "Log In With Discord".
Readme MIT 2.3 MiB
Languages
Python 100%