Web scraping 使用beautifulsoup从img标记获取src

Web scraping 使用beautifulsoup从img标记获取src,web-scraping,beautifulsoup,python-3.5,discord.py,Web Scraping,Beautifulsoup,Python 3.5,Discord.py,这是我最后一次呼救我正试图用我的discord机器人做一些很酷的嵌入,唯一的问题是我似乎无法从网站上获得img,有人能帮忙吗?在大多数情况下,这是其他人告诉我要使用的,而这里的代码不起作用 async def events(self, ctx): """Top GTAO bounses going on right now!""" if ctx.message.server.me.bot: try: await self.bot.dele

这是我最后一次呼救我正试图用我的discord机器人做一些很酷的嵌入,唯一的问题是我似乎无法从网站上获得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")

在查看网站时,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'
>soup.find(attrs={'class':'eventThumb'})
>>>_uu.img
>>>_u.get('data-src'))
'https://prod.cloud.rockstargames.com/global/Events/20449/829a53e7-d14e-4de8-a17b-ccb06becfed6.jpg'

因此,要修复此问题,您需要将
.get('src')
更改为
.get('data-src')

这其中的哪一部分不起作用?请尝试
evpic=soupObject.find('img',{'class':'eventThumb'})['src']
我得到了TypeError:'NoneType'对象不是subscriptableNo-one?这是裂口吗?有用!非常感谢。