最近一直在努力让我的Discord机器人从Pubg.op.gg中提取数据并向用户提供其K / D。
我遇到了多个错误,但最能显示的错误是:
F:\Python3\lib\site-packages\discord\ext\commands\core.py:50: RuntimeWarning: coroutine 'Pubg.get_kd' was never awaited
ret = yield from coro(*args, **kwargs)
从错误消息中我只是因为我找不到Pubg.get_kd而感到困惑,因为我找不到Pubg.get_kd。
继承我的代码:
import discord
from discord.ext import commands
import asyncio,aiohttp,json
from bs4 import BeautifulSoup as soup
class Pubg():
def __init__(self,bot):
self.bot = bot
async def get_info(self):
urlForInfo = await aiohttp.get("https://pubg.op.gg/user/"+user_info[0])
urlForInfo = await urlForInfo.text()
# urlForInfo = urllib.request.urlopen("https://pubg.op.gg/user/"+user[0]).read()
soup = bs.BeautifulSoup(urlForInfo, "lxml")
info = soup.find("div",{"class":"player-summary__name"})
playerID = info["data-user_id"]
playerNickname = info["data-user_nickname"]
season = soup.find("button",{"class":"ranked-stats-wrapper__season-btn"})
currentSeason = season["data-season"]
return playerID, playerNickname, currentSeason
async def get_kd(self):
playerID, playerNickname, currentSeason = self.get_info()
url = "https://pubg.op.gg/api/users/{}/ranked-stats?season={}&server={}&queue_size={}&mode={}".format(playerID,currentSeason,user[3],user[1],user[2])
resp = requests.get(url).text
resp = json.loads(resp)
""" Player Game Stats """
kills = resp["stats"]["kills_sum"]
deaths = resp["stats"]["deaths_sum"]
killDeath = str(kills / deaths)
KD = killDeath[:4]
return KD
@commands.command(pass_context = True)
async def kd(self, ctx):
KD = self.get_kd()
user_info = ctx.message.content.replace(".kd", "")
user = user_info.split("-")
await self.bot.say(f"Your K/D is: {KD}")
#await self.bot.say("test")
def setup(bot):
bot.add_cog(Pubg(bot))
答案 0 :(得分:0)
对于协程,您总是需要 await
。您在获得 async definitions
时在两个地方忘记了这一点。
所以这段代码现在应该可以工作(如果这是唯一的问题):
import discord
from discord.ext import commands
import asyncio,aiohttp,json
from bs4 import BeautifulSoup as soup
class Pubg():
def __init__(self,bot):
self.bot = bot
async def get_info(self):
urlForInfo = await aiohttp.get("https://pubg.op.gg/user/"+user_info[0])
urlForInfo = await urlForInfo.text()
# urlForInfo = urllib.request.urlopen("https://pubg.op.gg/user/"+user[0]).read()
soup = bs.BeautifulSoup(urlForInfo, "lxml")
info = soup.find("div",{"class":"player-summary__name"})
playerID = info["data-user_id"]
playerNickname = info["data-user_nickname"]
season = soup.find("button",{"class":"ranked-stats-wrapper__season-btn"})
currentSeason = season["data-season"]
return playerID, playerNickname, currentSeason
async def get_kd(self):
playerID, playerNickname, currentSeason = await self.get_info()
url = "https://pubg.op.gg/api/users/{}/ranked-stats?season={}&server={}&queue_size={}&mode={}".format(playerID,currentSeason,user[3],user[1],user[2])
resp = requests.get(url).text
resp = json.loads(resp)
""" Player Game Stats """
kills = resp["stats"]["kills_sum"]
deaths = resp["stats"]["deaths_sum"]
killDeath = str(kills / deaths)
KD = killDeath[:4]
return KD
@commands.command(pass_context = True)
async def kd(self, ctx):
KD = await self.get_kd()
user_info = ctx.message.content.replace(".kd", "")
user = user_info.split("-")
await self.bot.say(f"Your K/D is: {KD}")
#await self.bot.say("test")
def setup(bot):
bot.add_cog(Pubg(bot))
答案 1 :(得分:-1)
如果您要进行Couroutine,那么具有异步功能的函数,每次返回都必须为“等待返回”