使用 BeautifulSoup 和 Python 提取 iframe

Extract iframes using BeautifulSoup with Python

我使用 Canvas LMS,我想从某些页面中提取 iframe 以更改 src 内容。 我尝试以下操作:

//some code
soup = BeautifulSoup(page_html, 'html.parser')
pretty_html = soup.prettify()
soup = BeautifulSoup(pretty_html, 'html.parser')
iframe = soup.find('iframe')
print(iframe)

但是结果出乎意料,结果是这样的:

None
None
<iframe allowfullscreen="" frameborder="0" height="276" mozallowfullscreen="" scrolling="no" src="https://fast.player.liquidplatform.com/pApiv2/embed/e50a2b66dc19adc532f288eb4bf2d302/%20f2c5f6ca3a4610c55d70cb211ef9d977" webkitallowfullscreen="" width="490"></iframe>
None
None
None
None
None
None

我只希望得到这个

<iframe allowfullscreen="" frameborder="0" height="276" mozallowfullscreen="" scrolling="no" src="https://fast.player.liquidplatform.com/pApiv2/embed/e50a2b66dc19adc532f288eb4bf2d302/%20f2c5f6ca3a4610c55d70cb211ef9d977" webkitallowfullscreen="" width="490"></iframe>

收到的页面html只有一个iframe,结果有什么问题?我想我应该只收到一个 iframe 对象,但我似乎收到了一个列表。有人可以为我澄清我做错了什么吗?

我发现了如何解决这个问题。

我更改代码:

iframe = soup.find('iframe')

iframe = soup.find_all('iframe')

然后,我开始收到 [],而不是 None 作为响应。空值。

我使用以下方法对其进行了测试:

if iframes != [] :
    print( iframes[0]['src'] )

我使用 iframe 获取了 src 的内容[0]['src']