Python-Requests 抓取 YouTube 描述并存在 BS4 问题

标签 python beautifulsoup siblings

我正在尝试获取如图所示的文本和链接。但我只能通过 sibling 获取文本和之后的链接。我需要他们像图中那样聚集在一起。我尝试使用 br.next_element 但它没有捕获 a 链接。我错过了什么?

import requests
from bs4 import BeautifulSoup
url_id = 'aM7aW0G58CI'

s = requests.Session()
r = s.get('https://www.youtube.com/watch?v='+url_id)
html = r.text
soup = BeautifulSoup(html, 'lxml')
for i in soup.find_all('p', id='eow-description'):
    for br in i.find_all('br'):
        next_sib = br.next_sibling
        print(next_sib)

for i in soup.find_all('p', id='eow-description'):
    for a in i.find_all('a'):
        print(a.text)

这是我得到的输出。我不明白下面的屏幕截图显示的内容。

输出:

Special shout to 
Wanna support what we do? Livestream at 2PM PT!: 
It Wasn’t Me, I Swear!: 
TheDeFrancoFam Vlog: 
———————————— 
CATCH UP ON THIS WEEK’S SHOWS: 
<br/>
Why People Are Freaking Out About The Trump NFL Boycott and Anthony Weiner Going to Jail…: 
WOW! Dirty Advertising Exposed And Major Backlash Following Unexpected Compromise…: 
Why Trump's "HUGE Failure" Is A Massive Loss For His Enemies and A Shocking Change To Women's Rights: 
DISGUSTING! The Horrible Truth About Belle Gibson Exposed, Controversial Video Blows Up, and More: 
<br/>
————————————
GET SOME GEAR: 
————————————
FACEBOOK: 
TWITTER: 
INSTAGRAM: 
SNAPCHAT: TheDeFrancoFam
REDDIT: 
ITUNES: 
GOOGLE PLAY: 
————————————
Edited by:
James Girardier - 
Jason Mayer - 
<br/>
Produced by:
Amanda Morones - 
<br/>
Motion Graphics Artist:
Brian Borst - 
<br/>
P.O. BOX
Attn: Philip DeFranco
16350 Ventura Blvd
Ste D #542
Encino, CA 91436
http://DKPhil.com
http://DeFrancoElite.com
https://youtu.be/fFxDbYE06zU
https://youtu.be/kR7DquGe4vY
https://youtu.be/qdWUQGHtyPk
https://youtu.be/CWlUs1-7KN4
https://youtu.be/kUWt-oipvOY
https://youtu.be/XVsTh4zxKNo
https://teespring.com/stores/defranco...
http://on.fb.me/mqpRW7
http://Twitter.com/PhillyD
https://instagram.com/phillydefranco/
https://www.reddit.com/r/DeFranco
http://DeFrancoMistakes.com
http://mistakeswithdefranco.com
https://twitter.com/jamesgirardier
https://www.instagram.com/jayjaymay/
https://twitter.com/MandaOhDang
https://twitter.com/brianjborst

enter image description here

最佳答案

使用children并检查我制作的tag名称(child.name)

import requests
from bs4 import BeautifulSoup

url_id = 'aM7aW0G58CI'

s = requests.Session()
r = s.get('https://www.youtube.com/watch?v='+url_id)
soup = BeautifulSoup(r.text, 'lxml')

# to concatenate <br> 
br = ''

for p in soup.find_all('p', id='eow-description'):
    for child in p.children:
        if child.name == 'a':
            #print(' a:', child.text)
            print(br, child.text)
            br = '' # reset br
        elif child.name == 'br':
            if child.next_sibling.name != 'br': # skip <br/> ?
                #print('br:', child.next_sibling)
                br += str(child.next_sibling)
        #else:
        #    print(child.name, child)

我得到:

Special shout to  http://DKPhil.com
Wanna support what we do? Livestream at 2PM PT!:  http://DeFrancoElite.com
It Wasn’t Me, I Swear!:  https://youtu.be/fFxDbYE06zU
TheDeFrancoFam Vlog:  https://youtu.be/kR7DquGe4vY
———————————— CATCH UP ON THIS WEEK’S SHOWS: Why People Are Freaking Out About The Trump NFL Boycott and Anthony Weiner Going to Jail…:  https://youtu.be/qdWUQGHtyPk
WOW! Dirty Advertising Exposed And Major Backlash Following Unexpected Compromise…:  https://youtu.be/CWlUs1-7KN4
Why Trump's "HUGE Failure" Is A Massive Loss For His Enemies and A Shocking Change To Women's Rights:  https://youtu.be/kUWt-oipvOY
DISGUSTING! The Horrible Truth About Belle Gibson Exposed, Controversial Video Blows Up, and More:  https://youtu.be/XVsTh4zxKNo
————————————GET SOME GEAR:  https://teespring.com/stores/defranco...
————————————FACEBOOK:  http://on.fb.me/mqpRW7
TWITTER:  http://Twitter.com/PhillyD
INSTAGRAM:  https://instagram.com/phillydefranco/
SNAPCHAT: TheDeFrancoFamREDDIT:  https://www.reddit.com/r/DeFranco
ITUNES:  http://DeFrancoMistakes.com
GOOGLE PLAY:  http://mistakeswithdefranco.com
————————————Edited by:James Girardier -  https://twitter.com/jamesgirardier
Jason Mayer -  https://www.instagram.com/jayjaymay/
Produced by:Amanda Morones -  https://twitter.com/MandaOhDang
Motion Graphics Artist:Brian Borst -  https://twitter.com/brianjborst
<小时/>

编辑:您可能必须使用

else:
    print(child.name, child)

获取邮政信箱地址

关于Python-Requests 抓取 YouTube 描述并存在 BS4 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48069806/

相关文章:

python - listAPI View 中以十为基数的int()的文字无效 djangorest框架

html - 单击菜单项时如何影响其他元素

Python正则表达式:Optional

python - CSV 阅读器在 Ubuntu 和 Windows 上的不同输出 - Python

python - 如何提取 URL?

python - 使用 BeautifulSoup 提取特定的 dl 和 dd 列表元素

python - Webcrawler - 使用 Beautiful soup 检查带有 href 的 <a> 标签是否在 li 标签内?

php - 如何在PHP中使用跟随兄弟的xpath查询?

jquery - 获取具有索引号的特定同级

python - 此代码中的控制流是什么?