• 大小: 0.71KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: 新浪  新闻  

资源简介

通过python BS 模块获取新浪新闻 链接,

如果您的python版本较高(>=python 3.3),那么请按照如下注释

#reload(sys)
#sys.setdefaultencoding("utf-8")
import imp
imp.reload(sys)

资源截图

代码片段和文件信息

#coding = ‘utf-8‘

import requests
from bs4 import BeautifulSoup
import sys
reload(sys)
sys.setdefaultencoding(“utf-8“)


url = “http://news.sina.com.cn/china/“
res = requests.get(url)
res.encoding = ‘utf-8‘


soup = BeautifulSoup(res.text “html.parser“)
elements = soup.select(‘.news-item‘)
    


fname = “sinanews.txt“
try:
    f = open(fn

评论

共有 条评论