运行代码
虽然今天传来不好的消息,京城新增数十例,但是调试程序的工作依然需要进行。运行下面区区十几代码,您可以立即得到自己想要的简易信息聚合RSS信息片段。代码运行是 Python 3.8 ,用 BeautifulSoup(v4.4.0)库 (点击获取库)
import urllib.request
from bs4 import BeautifulSoup
f = urllib.request.urlopen("https://www.cnbeta.com/backend.php")
soup = BeautifulSoup(f.read(), "html.parser")
for i in soup.find_all('item'):
for child in i.children:
if (child.name == 'title'):
print(child.string)
else:
if (child.name == 'description'):
desc_str = BeautifulSoup(child.string,'lxml')
print