Python 官方文档:入门教程 => 点击学习
目录项目地址:开心网日记爬取使用代码豆瓣日记爬取使用代码Roadmap项目地址: https://GitHub.com/aturret/python-crawler-exercise 用到了BeautifulSoup
https://GitHub.com/aturret/python-crawler-exercise
用到了BeautifulSoup4,请先安装。
pip install beautifulsoup4
kaixin001.py
登录开心网,浏览器F12看Http请求的header,获取自己的cookie。
填写cookie,要爬的日记的url,要爬的总次数。走你。
之后会生成html文件,格式是<:title>-<YYYYMMDDHHMMSS>
# -*- coding: utf-8 -*-
from urllib.request import urlopen
import urllib.request
import urllib.parse #为了获取HTTP response
from bs4 import BeautifulSoup #BS4
import string # 为了去掉空白字符
import time # 防止被杀cookie
import unicodedata # 字符修正
# 在这里放第一个链接
urlx = '链接' #写你想爬的文
def request(url):
global urlx #引用外面的链接作为全局变量,后面还会取下一个进行循环的
# 使用urllib库提交cookie获取http响应
headers = {
'GET https':url,
'Host':' www.kaixin001.com',
'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/90.0.4430.212 Safari/537.36',
'Accept':' application/JSON, text/javascript, **; q=0.01',
'Accept-Language':' zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
'Cookie':COOKIE, #改成自己的cookie,自己浏览器打开网站F12调试,自己找http请求的header
}
request = urllib.request.Request(url=urlx,headers=headers)
response = urllib.request.urlopen(request)
contents = response.read()
# 使用BS4获得所有HTMLtag
bsObj = BeautifulSoup(contents,"html.parser")
# 使用BS4的find函数获取当前页面的所有日记链接
article = bsObj.find("div", attrs={"class":"article"})
titleSet = article.findAll("h3")
# print(titleSet)
for title in titleSet:
titleText = title.findAll("a",attrs={"class":"j a_unfolder_n"})
for link in titleText:
noteUrl = str(link.attrs["href"])
print(noteUrl)
requestSinglePage(noteUrl)
next = bsObj.find("a",text="后页>")
if next==None:
print("结束了")
boolean=1
else:
url = str(next.attrs["href"]).replace("&type=note","")
print(url)
def requestSinglePage(urly):
global COOKIE
headers = {
'GET https':urly,
'Host':' www.douban.com',
'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/90.0.4430.212 Safari/537.36',
'Accept':' application/json, text/javascript, */*; q=0.01',
'Accept-Language':' zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
'Cookie':COOKIE, #改成自己的cookie,自己浏览器打开网站F12调试,自己找http请求的header
}
request = urllib.request.Request(url=urly,headers=headers)
response = urllib.request.urlopen(request)
contents = response.read()
# 使用BS4获得所有HTMLtag
bsObj = BeautifulSoup(contents,"html.parser")
# 使用BS4的find函数得到想要的东西:标题、发表时间和博客正文
title = bsObj.find("h1").get_text()
date = bsObj.find("span", attrs={"class":"pub-date"})
dateT = bsObj.find("span", attrs={"class":"pub-date"}).get_text()
text = bsObj.find("div", attrs={"id":"link-report"})
# textT = bsObj.find("div", attrs={"class":"textCont"}).get_text()
# 测试输出
print(title)
print(dateT)
# 生成HTML文件。这里直接用file.open()和file.write()了,也可以用jinja2之类的框架生成。
remove = string.whitespace+string.punctuation # 去掉日期的标点符号
table = str.maketrans(':',':',remove)
fileTitle=str(title)+'-'+str(dateT).translate(table)+'.html'
print(fileTitle) #测试输出
f = open(fileTitle,'w',encoding="utf-8") #注意用utf-8编码写入,不然会因为一些旧博文采用的gbk编码不兼容而出问题。
# 写入message
message = """
<html>
<head></head>
<body>
<h1>%s</h1>
<b>%s</b>
<br></br>
%s
</body>
</html>"""%(title,dateT,unicodedata.nORMalize('NFD',text.prettify()))
f.write(message)
f.close()
# 主循环,给爷爬
boolean=0
while(boolean==0):
a=1
request(url)
print('We finished page '+str(a)+' .')
a+=1
豆瓣四月份时候还有bug,手机端可以看到全部日记,半年隐藏无效。最近修好了。
不过现在的隐藏依然没有针对到具体的日记,或许可以想办法通过其他手段爬下来。
以上就是Python 开心网日记爬取的示例步骤的详细内容,更多关于python 开心网日记爬取的资料请关注编程网其它相关文章!
--结束END--
本文标题: python 开心网和豆瓣日记爬取的小爬虫
本文链接: https://lsjlt.com/news/10796.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0