代码拉取完成,页面将自动刷新
同步操作将从 Cwoner/ctim_newspaper_spider 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# -*-coding:utf-8 -*-
# @Time: 2023/2/20 0020 下午 14:33
# @Author: Cwoner
# @Organization: CTIM
# @Software: PyCharm
import requests
from lxml import etree
import hashlib
from setting import SAVEPATH
import os
import re
from tools.serverAPI import upload_file
class SuiHuaRBao():
def __init__(self,ccdate,id=''):#20230101
self.url = f'https://www.suihuaxw.org.cn/paper/shrb/pc/layout/{ccdate[:6]}/{ccdate[6:]}/node_01.html'
self.ccdate = ccdate
self.id = id
self.name = '绥化日报'
print('初始化:',self.name, self.url)
self.mid = hashlib.md5((self.name+'_baozi').encode()).hexdigest()
if not os.path.isdir(SAVEPATH+self.mid):
os.mkdir(SAVEPATH+self.mid)
def index(self,c=0):
headers = {
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7",
"Accept-Language": "zh-CN,zh;q=0.9",
"Cache-Control": "max-age=0",
"Connection": "keep-alive",
"Referer": "http://epaper.hljnews.cn/hljrb/pc/layout/202302/20/",
"Upgrade-Insecure-Requests": "1",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36"
}
try:
response = requests.get(self.url, headers=headers, verify=False)
except:
if c > 2:
return
return self.index(c+1)
if response.status_code == 200:
text = response.content.decode('utf-8')
html = etree.HTML(text)
bans = html.xpath('//div[@class="Therestlist"]//li')
i = 0
for banItem in bans:
title = banItem.xpath('string(.)')
if not title:
title = f'未知标题{i}'
title = re.sub('\s','',title)
print(self.name,title)
a_nodes = banItem.xpath('.//a')
pdf_url = ''
for aItem in a_nodes:
if 'pdf' in aItem.xpath('./@href')[0]:
pdf_url = 'http://www.suihuaxw.org.cn/paper/shrb/pc/'+aItem.xpath('./@href')[0]
tid = hashlib.md5((self.name+title+self.ccdate).encode()).hexdigest()
file = tid + '.pdf'
if pdf_url:
pdf_url = pdf_url.replace('../../../','')
print(pdf_url)
self.__download(file,pdf_url,title,tid)
def __download(self,file,url,title,tid):
headers = {
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7",
"Accept-Language": "zh-CN,zh;q=0.9",
"Cache-Control": "max-age=0",
"Connection": "keep-alive",
"Upgrade-Insecure-Requests": "1",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36"
}
response = requests.get(url, headers=headers, verify=False)
if response.status_code == 200:
path = SAVEPATH + self.mid + '/' + self.ccdate + '/'
if not os.path.isdir(path):
os.mkdir(path)
with open(path + file,'wb',) as f:
f.write(response.content)
data = {
'entity_id': self.mid,
'title': title,
'tid': tid,
'file_name': file,
'origin_url': url,
'ndate': self.ccdate[:4] + '-' + self.ccdate[4:6] + '-' + self.ccdate[6:]
}
upload_file(data, response.content)
def run(self):
self.index()
if __name__ == '__main__':
ccdate = '20230308'
hr = SuiHuaRBao(ccdate)
hr.run()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。