本文章中的代码需要通过Python 3 的 bs4
库实现。
1.安装库bs4
库并非Python3自带,安装方法如下:
pip install bs4
2.废话少说,上代码:
from bs4 import BeautifulSoup
html_code = "<!DOCTYPE html><html><head></head><body><a href = 'https://www.baidu.com/'>百度</a> <a href = 'https://cn.bing.com/'>必应</a></body></html>"
#需要从中提取链接的HTML代码
urls = BeautifulSoup(html_code,"html.parser")
for link in urls.find_all('a'):
print(link.get('href'))
3.运行结果