资源简介
一个基于Python的百度文库爬虫,
主要实现文库pdf文件的下载。
代码片段和文件信息
import requests
import re
import argparse
import json
import os
parser = argparse.ArgumentParser()
parser.add_argument(“url“ help=“Target Url你所需要文档的URL“ type=str)
parser.add_argument(‘type‘ help=“Target Type你所需要文档的的类型(DOC|PPT|TXT|PDF)“ type=str)
args = parser.parse_args()
url = args.url
type = args.type
# 根据文件决定函数
y = 0
def DOC(url):
doc_id = re.findall(‘view/(.*).html‘ url)[0]
html = requests.get(url).text
lists = re.findall(‘(https.*?0.json.*?)\\\\x22}‘ html)
lenth = (len(lists) // 2)
NewLists = lists[:lenth]
for i in range(len(NewLists)):
NewLists[i] = NewLists[i].replace(‘\\‘ ‘‘)
txts = requests.get(NewLists[i]).text
txtlists = re.findall(‘“c“:“(.*?)“.*?“y“:(.*?)‘ txts)
for i in range(0 len(txtlists)):
global y
print(txtlists[i][0].encode(‘utf-8‘).decode(‘unicode_escape‘ ‘ignore‘))
if y != txtlists[i][1]:
y = txtlists[i][1]
n = ‘\n‘
else:
n = ‘‘
filename = doc_id + ‘.txt‘
with open(filename ‘a‘ encoding=‘utf-8‘) as f:
f.write(n + txtlists[i][0].encode(‘utf-8‘).decode(‘unicode_escape‘ ‘ignore‘).replace(‘\\‘ ‘‘))
print(“文档保存在“ + filename)
def PPT(url):
doc_id = re.findall(‘view/(.*).html‘ url)[0]
url = “https://wenku.baidu.com/browse/getbcsurl?doc_id=“ + doc_id + “&pn=1&rn=99999&type=ppt“
html = requests.get(url).text
lists = re.findall(‘{“zoom“:“(.*?)““page“‘ html)
for i in range(0 len(lists)):
lists[i] = lists[i].replace(“\\“ ‘‘)
try:
os.mkdir(doc_id)
except:
pass
for i in range(0 len(lists)):
img = requests.get(lists[i]).content
with open(doc_id + ‘\img‘ + str(i) + ‘.jpg‘ ‘wb‘) as m:
m.write(img)
print(“PPT图片保存在“ + doc_id + “文件夹“)
def TXT(url):
doc_id = re.findall(‘view/(.*).html‘ url)[0]
url = “https://wenku.baidu.com/api/doc/getdocinfo?callback=cb&doc_id=“ + doc_id
html = requests.get(url).text
md5 = re.findall(‘“md5sum“:“(.*?)“‘ html)[0]
pn = re.findall(‘“totalPageNum“:“(.*?)“‘ html)[0]
rsign = re.findall(‘“rsign“:“(.*?)“‘ html)[0]
NewUrl = ‘https://wkretype.bdimg.com/retype/text/‘ + doc_id + ‘?rn=‘ + pn + ‘&type=txt‘ + md5 + ‘&rsign=‘ + rsign
txt = requests.get(NewUrl).text
jsons = json.loads(txt)
texts = re.findall(“‘c‘: ‘(.*?)‘“ str(jsons))
print(texts)
filename = doc_id + ‘.txt‘
with open(filename ‘a‘ encoding=‘utf-8‘) as f:
for i in range(0 len(texts)):
texts[i] = texts[i].replace(‘\\r‘ ‘\r‘)
texts[i] = texts[i].replace(‘\\n‘ ‘\n‘)
f.write(texts[i])
print(“文档保存在“ + filename)
def FPD(url):
doc_id = re.findall(‘view/(.*).html‘ url)[0]
url = “https://wenku.baidu.com/browse/getbcsurl?doc_id=“ + doc_id + “&pn=1&rn=99999&type=ppt“
html = requests.get(url).text
lists = re.findall(‘{“zoom“:“(.*?)“
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 398 2018-05-30 09:36 文库爬虫\.idea\FreeForWenku-master.iml
文件 212 2018-05-30 09:35 文库爬虫\.idea\misc.xm
文件 290 2018-05-30 09:35 文库爬虫\.idea\modules.xm
文件 14917 2018-05-30 10:03 文库爬虫\.idea\workspace.xm
文件 141668 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img0.jpg
文件 177485 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img1.jpg
文件 211042 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img10.jpg
文件 201024 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img11.jpg
文件 257453 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img12.jpg
文件 213538 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img13.jpg
文件 228293 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img14.jpg
文件 236833 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img15.jpg
文件 213298 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img16.jpg
文件 269043 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img17.jpg
文件 231817 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img18.jpg
文件 268082 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img19.jpg
文件 206299 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img2.jpg
文件 248085 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img3.jpg
文件 246805 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img4.jpg
文件 226442 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img5.jpg
文件 257286 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img6.jpg
文件 197320 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img7.jpg
文件 226475 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img8.jpg
文件 267267 2018-05-30 09:50 文库爬虫\09f3e7c9a1c7aa00b52acb96\img9.jpg
文件 44871 2018-05-30 09:55 文库爬虫\695832bbd5d8d15abe23482fb4daa58da0111cc7.txt
文件 7826677 2018-04-09 12:14 文库爬虫\FreeForWenku.exe
文件 3752 2018-05-30 09:59 文库爬虫\FreeForWenku.py
文件 575 2018-05-30 09:59 文库爬虫\README.md
目录 0 2018-05-30 09:36 文库爬虫\.idea\inspectionProfiles
目录 0 2018-05-30 10:03 文库爬虫\.idea
............此处省略5个文件信息
相关资源
- Python-Camelot一个可以轻松地从PDF文件中
- 《python深度学习》弗朗索瓦肖莱 高清
- 对比Excel,轻松学习Python数据分析1-
- python编程从入门到实践高清pdf +廖雪峰
- Python数据处理 Data Wrangling with Python 中
- Introduction to Computation and Programming Us
- Python for Finance.中文版(Yves Hilpisch)
- python深度学习pdf+源码案例
- Python金融大数据分析 完整.pdf版
- Introduction to Machine Learning with Python_正
- PYTHON数据可视化编程实战PDF
- 《Python编程 从入门到实践》中文pdf高
- Python编程快速上手 pdf+源码
- Python编程从入门到实践[中英文完整版
- Python机器学习经典 中文完整版高清
- Hands-On Reinforcement Learning with Python 20
- Practical Web Penetration Testing pdf
- 精通Python设计模式.pdf 详细目录,高清
- Django 2 Web Development Cookbook 3rd Edition.
- 《Python编程快速上手 让繁琐工作自动
- Python for Kids(高清)pdf
- Python编程:从入门到实践超高清中文
- python3标准库试看版.pdf
- Python数据处理中文版带书签高清文字
- 零起点Python大数据与量化交易.pdf.zi
- 流利的Python英语原版高清带书签.pdf
- elements-programming-interviews-python_已压缩
- 量化投资:以Python为工具 高清完整PD
- PYTHON自然语言处理_超高清pdf
- python量化.pdf
评论
共有 条评论