最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Discord

运维笔记admin14浏览0评论

Discord

Discord

问题描述

我正在尝试在 Cog 中集成一个基本的 aiohttp 网络服务器(使用 discord-py 重写).我正在为 cog 使用以下代码:

I am trying to integrate a basic aiohttp webserver in a Cog (using discord-py rewrite). I am using the following code for the cog:

from aiohttp import webimport discordfrom discord.ext import commandsclass Youtube(): def __init__(self, bot): self.bot = bot async def webserver(self): async def handler(request): return web.Response(text="Hello, world") app = web.Application() app.router.add_get('/', handler) runner = web.AppRunner(app) await runner.setup() site = web.TCPSite(runner, '192.168.1.111', 8999) await self.bot.wait_until_ready() await site.start()def setup(bot): yt = Youtube(bot) bot.add_cog(yt) bot.loop.create_task(yt.webserver())

它在启动机器人时工作正常.但是如果我在机器人运行时重新加载 cog,我会遇到一个问题:

It works fine upon starting the bot.But if I reload the cog while the bot is running, I encounter an issue:

OSError: [Errno 10048] 尝试绑定地址时出错('192.168.1.111', 8999):每个socket地址只使用一次(协议/网络地址/端口)通常是允许的

OSError: [Errno 10048] error while attempting to bind on address ('192.168.1.111', 8999): only one usage of each socket address (protocol/network address/port) is normally permitted

每次重新加载 cog 时,我都想不出一种简单/优雅的方式来释放和重新绑定.我很想对此提出一些建议.最终目标是拥有一个支持 youtube pubsubhubbub 订阅的 cog.

I cannot think of an simple/elegant way to release and re bind every time the cog is reloaded.I would love some suggestions on this. The end goal is to have a cog that supports youtube pubsubhubbub subscriptions.

可能只是有一种更好的方法可以将基本的网络服务器集成到我的机器人中.例如,我可以在启动机器人时使用一个守护进程(fork)(我已经有一个使用 HTTPServer 编写的网络服务器和一个可以处理 pubsubhubbub youtube 订阅的 BaseHTTPRequestHandler),但不知何故,我决定使用 aiohttp 将它集成到一个 cog 中:)

It might just be that there is a better way to integrate a basic webserver to my bot. I could use a deamon (fork) upon starting the bot for example (I already have a webserver written using HTTPServer with a BaseHTTPRequestHandler that can handle pubsubhubbub youtube subscriptions) but somehow I have my mind set on integrating it in a cog using aiohttp :)

推荐答案

from aiohttp import web import asyncio import discord from discord.ext import commands class Youtube(): def __init__(self, bot): self.bot = bot async def webserver(self): async def handler(request): return web.Response(text="Hello, world") app = web.Application() app.router.add_get('/', handler) runner = web.AppRunner(app) await runner.setup() self.site = web.TCPSite(runner, '192.168.1.111', 8999) await self.bot.wait_until_ready() await self.site.start() def __unload(self): asyncio.ensure_future(self.site.stop()) def setup(bot): yt = Youtube(bot) bot.add_cog(yt) bot.loop.create_task(yt.webserver())

谢谢帕特里克·豪!!

0 0 0 0 0

Discord

发布评论

评论列表(0)

  1. 暂无评论