معرفی شرکت ها


dpy-http-server-0.1.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Efficiently and intuitively create and manage an HTTP web server running in tandem with a discord.py bot
ویژگی مقدار
سیستم عامل -
نام فایل dpy-http-server-0.1.0
نام dpy-http-server
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Marwynn Somridhivej
ایمیل نویسنده -
آدرس صفحه اصلی https://gitlab.com/marwynnsomridhivej/dpy-http-server
آدرس اینترنتی https://pypi.org/project/dpy-http-server/
مجوز MIT
# dpy-http-server `dpy-http-server` allows for efficient an intuitive creation and management of an HTTP web server that runs alongside a discord.py bot. ## Key Features - Easy to use, yet powerful API the makes spinning up a web server on the same event loop as a discord.py bot painless - Supports reloading on cog reload ## Getting Started Here are some examples on how to use this API: ### Global Scope ```python import discord import server from aiohttp import web bot = discord.Bot(command_prefix="!", description="example", intents=discord.Intents.all()) @bot.event async def on_ready(): bot.server = server.HTTPServer( bot=bot, host="0.0.0.0", port="8000", ) await bot.server.start() @server.add_route(path="/", method="GET") async def home(request): return web.json_response(data={"foo": "bar"}, status=200) bot.run(YOUR_TOKEN) ``` ### Inside Bot Subclass ```python import discord import server from aiohttp import web class Bot(discord.Bot): def __init__(*args, **kwargs): super().__init__(*args, **kwargs): self.server = server.HTTPServer( bot=self, host="0.0.0.0", port=8000, ) self.loop.create_task(self._start_webserver()) async def _start_webserver(self): await self.wait_until_ready() await self.server.start() @server.add_route(path="/", method="GET") async def home(self, request): return web.json_response(data={"foo": bar}, status=200) bot = Bot(command_prefix="!", description="example", intents=discord.Intents.all()) bot.run(YOUR_TOKEN) ``` ### Inside Cog ```python import server from aiohttp import web from discord.ext import commands class ServerCog(commands.Cog): def __init__(self, bot): self.bot = bot self.server = server.HTTPServer( bot=self.bot, host="0.0.0.0", port=8000, ) self.bot.loop.create_task(self._start_server()) async def _start_server(self): await self.bot.wait_until_ready() await self.server.start() @server.add_route(path="/", method="GET", cog="ServerCog") async def home(self, request): return web.json_response(data={"foo": "bar"}, status=200) ``` ### Using Checks with Globally Defined Methods ```python import discord import server from aiohttp import web bot = discord.Bot(command_prefix="!", description="example", intents=discord.Intents.all()) @bot.event async def on_ready(): bot.server = server.HTTPServer( bot=bot, host="0.0.0.0", port="8000", ) await bot.server.start() async def checker(request): return request.headers.get("authorization") == "password" async def fail_handler(request): return web.json_response(data={"message": "you are not authorized"}, status=401) @server.add_route(path="/", method="GET") @server.check(predicate=checker, fail_handler=fail_handler) async def home(request): return web.json_response(data={"foo": "bar"}, status=200) bot.run(YOUR_TOKEN) ``` ### Using Checks with Cog Defined Methods ```python import server from aiohttp import web from discord.ext import commands class ServerCog(commands.Cog): def __init__(self, bot): self.bot = bot self.server = server.HTTPServer( bot=self.bot, host="0.0.0.0", port=8000, ) self.bot.loop.create_task(self._start_server()) async def _start_server(self): await self.bot.wait_until_ready() await self.server.start() async def checker(self, request): return request.headers.get("authorization") == "password" async def fail_handler(self, request): return web.json_response(data={"message": "you are not authorized"}, status=401) @server.add_route(path="/", method="GET", cog="ServerCog") @server.check(predicate="checker", fail_handler="fail_handler") async def home(self, request): return web.json_response(data={"foo": "bar"}, status=200) ```


نیازمندی

مقدار نام
- discord.py
- aiohttp


نحوه نصب


نصب پکیج whl dpy-http-server-0.1.0:

    pip install dpy-http-server-0.1.0.whl


نصب پکیج tar.gz dpy-http-server-0.1.0:

    pip install dpy-http-server-0.1.0.tar.gz