码迷,mamicode.com
首页 > 其他好文 > 详细

16 信息标记形式及信息提取的一般方法

时间:2020-06-05 09:13:11      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:bit   sts   nbsp   图片   信息   class   get   text   beautiful   

技术图片

技术图片

技术图片

技术图片

技术图片

技术图片

"""信息提取的一般方法"""


import requests
from bs4 import BeautifulSoup

url = "https://python123.io/ws/demo.html"
r = requests.get(url)
demo = r.text
soup = BeautifulSoup(demo, "html.parser")
# http://www.icourse163.org/course/BIT-268001
# http://www.icourse163.org/course/BIT-1001870001
for link in soup.find_all(a):
    print(link.get(href))

 

16 信息标记形式及信息提取的一般方法

标签:bit   sts   nbsp   图片   信息   class   get   text   beautiful   

原文地址:https://www.cnblogs.com/sruzzg/p/13047450.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!