我正在编写一个discord机器人,我想在音乐功能中显示队列。它总是发送URL,我无法将它们转换为网站的标题。代码可以工作,但问题是如何将URL列表转换为标题。我的代码:
@client.command()
async def view(ctx):
global queue
#convert url to title
html = request.urlopen(queue[0]).read().decode('utf8')
html[:60]
soup = BeautifulSoup(html, 'html.parser')
title= soup.find('title')
await ctx.send(f":page_facing_up: ・ Your queue: `{queue}`")
暂无答案!
目前还没有任何答案,快来回答吧!