1 Star 0 Fork 1

lily/dict

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
download.py 793 Bytes
一键复制 编辑 原始数据 按行查看 历史
kajweb 提交于 2019-02-22 18:32 . fcm
#!/usr/bin/python3
# -*- coding: UTF-8 -*-
# SETP2 : 下载书本
import requests
import json
import urllib
import os
def downloadFile( url ):
filename = os.path.basename(url)
r = requests.get(url)
with open("./book/" + filename, "wb") as code:
code.write(r.content)
with open("./bookLists.txt",'r',encoding='UTF-8') as load_f:
load_dict = json.load(load_f)
bookLists = load_dict['data']['normalBooksInfo']
bookLen = len(bookLists);
nowIndex = 0;
for i in bookLists:
nowIndex = nowIndex +1;
print( "正在下载", ("{}/{}").format(nowIndex,bookLen) );
print(" id :", i['id']);
print("标题:", i['title']);
print("词数:", i['wordNum']);
fileUrl = i['offlinedata'];
print("地址:", fileUrl);
downloadFile( fileUrl );
print("== 下载完成 ==")
print();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liliy111/dict.git
git@gitee.com:liliy111/dict.git
liliy111
dict
dict
master

搜索帮助