使用beautifulsoup从img标签获取src

贾斯汀·H

这是我最后一次寻求帮助的呼声,我正在尝试使用我的不和谐bot进行酷炫的嵌入,唯一的问题是我似乎无法从网站上获取img正常工作,有人可以帮忙吗?在大多数情况下,这是其他人告诉我的使用方式,此处找到的代码不起作用。

async def events(self, ctx):
    """Top GTAO bounses going on right now!"""

    if ctx.message.server.me.bot:
        try:
            await self.bot.delete_message(ctx.message)
        except:
            await self.bot.send_message(ctx.message.author, 'Could not delete your message on ' + ctx.message.server.name)

    url = "https://socialclub.rockstargames.com/" 

    async with aiohttp.get(url) as response:
        soupObject = BeautifulSoup(await response.text(), "html.parser")

    try:
        rm = "[Read More](https://socialclub.rockstargames.com/events)"
        img = "https://i.imgur.com/0Gu4sSK.png"
        avi = "https://i.imgur.com/s5O1yD2.png"
        bonus1 = soupObject.find(class_='bonuses').find('ul').get_text()
        evpic = soupObject.find(class_='eventThumb').find('img').get('src')
        # EMBED
        data = discord.Embed(title='GTA Online Bonuses', description='The Current GTA Online Bonuses', colour=0xE4BA22)
        data.set_author(name='Rockstar Games', icon_url=avi)
        data.add_field(name="This week: \n", value=bonus1)
        data.add_field(name="--------", value=rm)
        data.set_image(url=evpic)
        data.set_thumbnail(url=img)
        a`enter code here`wait self.bot.say(embed=data)


    except discord.HTTPException:
        await self.bot.say("I need the `Embed links` permission to send this OR error")
山姆·洛克特(Sam Rockett)

检查网站时,Rockstar不在src图片中使用该标记,因为它是由某些内部JS处理的

>>> soup.find(attrs={'class':'eventThumb'})
<div class="eventThumb">
<img class="lazyload" data-src="https://prod.cloud.rockstargames.com/global/Events/20449/829a53e7-d14e-4de8-a17b-ccb06becfed6.jpg"/>
</div>
>>> _.img
<img class="lazyload" data-src="https://prod.cloud.rockstargames.com/global/Events/20449/829a53e7-d14e-4de8-a17b-ccb06becfed6.jpg"/>
>>> _.get('data-src')
'https://prod.cloud.rockstargames.com/global/Events/20449/829a53e7-d14e-4de8-a17b-ccb06becfed6.jpg'

因此,要解决此问题,您需要将其更改.get('src').get('data-src')

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章