معرفی شرکت ها


discordoauth.py-0.1.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Easily using discord webhooks in python - asynchronous and synchronous - documented at https://github.com/Coolo22/discordoauth.py/docs/
ویژگی مقدار
سیستم عامل -
نام فایل discordoauth.py-0.1.3
نام discordoauth.py
نسخه کتابخانه 0.1.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Coolo2
ایمیل نویسنده itsxcoolo2@gmail.com
آدرس صفحه اصلی https://github.com/Coolo22/discordoauth.py
آدرس اینترنتی https://pypi.org/project/discordoauth.py/
مجوز MIT
# discordwebhook.py [![Downloads](https://pepy.tech/badge/discordoauth-py)](https://pepy.tech/project/discordoauth-py) [![Downloads](https://pepy.tech/badge/discordoauth-py/month)](https://pepy.tech/project/discordoauth-py) ![Version](https://img.shields.io/pypi/v/discordoauth.py) ![Discord](https://img.shields.io/discord/937336250191458334?label=discord) A python package for using Discord Oauth2 with any webserver. Designed to be simple to use with as little input as possible. Asynchronous webservers (eg Quart) are reccomended For downloads see the [PyPi page](https://pypi.org/project/discordoauth.py/) For documentation see the /docs directory. For extra support join [the Discord server](https://discord.gg/5EhsXvShBE) # Installation ```pip install discordoauth.py``` ## Examples See Examples in the examples/ directory ### Quart example ```python """ Basic Quart example for using Discord Oauth2 """ import quart import discordoauth app = quart.Quart(__name__) # The application ID and secret to use for Oauth. app_id = 999999999999999999 app_secret = "app_secret_here" # Initialise client and choose scopes. # Supported scopes can be seen in the README.md client = discordoauth.Client(app_id, app_secret) scopes = discordoauth.Scopes(identify=True) # The address that flask is currently running on address = "localhost:5000" @app.route("/login", ["GET"]) def _login(): # Generate an oauth URL and redirect the user to it return quart.redirect( client.get_oauth_url(scopes, rediret_uri= address+"/return") ) @app.route("/return", ["GET"]) async def _discord_return(): # Get the code discord responds with from URI arguments code = quart.request.args.get("code") # Start a session session = client.new_session(code, scopes, address+"/return") # Use scope identify to fetch user information. Automatically converts code to access token user = await session.fetch_user() return f""" Username: {user.name} <br> User ID: {user.id} """ # Run the app locally on port 5000 app.run("0.0.0.0", 5000) ```


نحوه نصب


نصب پکیج whl discordoauth.py-0.1.3:

    pip install discordoauth.py-0.1.3.whl


نصب پکیج tar.gz discordoauth.py-0.1.3:

    pip install discordoauth.py-0.1.3.tar.gz