加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
GuangZhouRBao.py 4.75 KB
一键复制 编辑 原始数据 按行查看 历史
Cwoner 提交于 2024-06-03 09:44 . first commit
# -*-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 GuangZhouRBao():
def __init__(self,ccdate,id=''):#20230101
self.url = f'https://gzdaily.dayoo.com/pc/html/{ccdate[:4]}-{ccdate[4:6]}/{ccdate[6:]}/node_1.htm'
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):
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"
}
response = requests.get(self.url, headers=headers, verify=False)
if response.status_code == 200:
text = response.content.decode('utf-8')
html = etree.HTML(text)
bans = html.xpath('//div[@id="catalog"]//a')
i = 0
for banItem in bans:
title = banItem.xpath('string(.)')
if not title:
title = f'未知标题{i}'
title = re.sub('\s','',title)
# page_node = banItem.xpath('.//a')[0]
page_url = f'https://gzdaily.dayoo.com/pc/html/{self.ccdate[:4]}-{self.ccdate[4:6]}/{self.ccdate[6:]}/' + banItem.xpath('./@href')[0]
print(self.name,title,page_url)
img_url = self.get_image_url(page_url)
tid = hashlib.md5((self.name+title+self.ccdate).encode()).hexdigest()
file = tid + '.jpg'
if img_url:
img_url = img_url.replace('../../../','')
print(img_url)
self.__download(file,img_url,title,tid)
def get_image_url(self,url):
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"
}
response = requests.get(url, headers=headers, verify=False)
if response.status_code == 200:
text = response.content.decode('utf-8')
html = etree.HTML(text)
img_url = html.xpath('//img[@id="Bantu"]/@src')[0].replace('../../../','')
img_url = 'https://gzdaily.dayoo.com/pc/' + img_url
return img_url
else:
return None
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,timeout=10)
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 = '20230905'
hr = GuangZhouRBao(ccdate)
hr.run()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化