python beautifulsoup4 findall 之后获取 img limian de src
时间: 2024-06-10 14:04:23 浏览: 134
Python中BeautifulSoup通过查找Id获取元素信息
可以使用以下代码获取img标签中的src属性:
```python
from bs4 import BeautifulSoup
import requests
url = 'http://example.com' # 网页链接
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
imgs = soup.find_all('img') # 找到所有的img标签
for img in imgs:
src = img.get('src') # 获取img标签的src属性
print(src)
```
其中,`response.content`表示网页的原始内容,`html.parser`是解析器。后面的代码通过遍历找到的`img`标签,使用`get()`方法获取`src`属性值,并打印输出。
阅读全文