commit 4d95104dfd63c7a3bf954ac36ebfb1927587481a Author: Your Name <1840655811@qq.com> Date: Sun Apr 17 15:10:42 2022 +0800 我新加了一个文件 diff --git a/pa大作业/.idea/.gitignore b/pa大作业/.idea/.gitignore new file mode 100644 index 0000000..359bb53 --- /dev/null +++ b/pa大作业/.idea/.gitignore @@ -0,0 +1,3 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml diff --git a/pa大作业/.idea/.name b/pa大作业/.idea/.name new file mode 100644 index 0000000..11a5d8e --- /dev/null +++ b/pa大作业/.idea/.name @@ -0,0 +1 @@ +main.py \ No newline at end of file diff --git a/pa大作业/.idea/inspectionProfiles/profiles_settings.xml b/pa大作业/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/pa大作业/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/pa大作业/.idea/misc.xml b/pa大作业/.idea/misc.xml new file mode 100644 index 0000000..b7ea289 --- /dev/null +++ b/pa大作业/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/pa大作业/.idea/modules.xml b/pa大作业/.idea/modules.xml new file mode 100644 index 0000000..e548b34 --- /dev/null +++ b/pa大作业/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/pa大作业/.idea/pa.iml b/pa大作业/.idea/pa.iml new file mode 100644 index 0000000..9a323b0 --- /dev/null +++ b/pa大作业/.idea/pa.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/pa大作业/baid.png b/pa大作业/baid.png new file mode 100644 index 0000000..abb034b Binary files /dev/null and b/pa大作业/baid.png differ diff --git a/pa大作业/main.py b/pa大作业/main.py new file mode 100644 index 0000000..1f83d40 --- /dev/null +++ b/pa大作业/main.py @@ -0,0 +1,80 @@ +from selenium import webdriver +import time +from selenium.webdriver.support import expected_conditions as EC +from selenium.webdriver.support.wait import WebDriverWait +from selenium.webdriver.common.by import By +from urllib.parse import urljoin +from selenium.common.exceptions import NoSuchElementException + + + +class VipCollection: + def __init__(self): + self.driver = webdriver.Chrome() + self.start_url = 'https://www.qidian.com/rank/vipcollect/' + + # 打开VIP收藏榜网页 + def start(self): + self.driver.get(self.start_url) + self.driver.maximize_window() + + + def page_request(self,j): + + page = 1+j + + f = open("qidain.txt", "a",encoding="utf-8") + try: + booklist=[] + dis=dict() + wait = WebDriverWait(self.driver, 10) # 设置网页加载超时时间10s + wait.until(EC.presence_of_element_located((By.CLASS_NAME, 'rank-body'))) # 等待页面排行数据被加载完成 + lis = self.driver.find_elements(By.XPATH,'''//*[@class='book-img-text']/ul/li''') # 小说排名列表信息 + # 解析列表信息,获取小说名称、url、排名、收藏数 + for li in lis: + data_rid = li.get_attribute('data-rid') # 直接获取li标签的data-rid属性,即每一页的排名1,2,3,4...20 + rank = (page - 2) * 20 + int(data_rid) # 因为每一页的排名都是1、2、3、4、5...20,所以我们需要给排名进行计算 + name = li.find_element(By.XPATH,"./div[@class='book-mid-info']/h2/a").text # 获取小说名称 + type=li.find_element(By.XPATH,"./div[@class='book-mid-info']/p[@class='author']/a[2]").text#获取小说类别 + author = li.find_element(By.XPATH,"./div[@class='book-mid-info']/p[@class='author']/a[@class='name']").text # 获取小说作者 + href = li.find_element(By.XPATH,"./div[@class='book-mid-info']/h2/a").get_attribute('href') + detail_url = urljoin(self.start_url, href) # 对url进行自动拼接,得到完整的小说详情url + collection = li.find_element(By.XPATH,'./div[3]/div/p/span/span').text # 获取收藏数 + print({'rank': rank,'name': name, 'type': type,"author":author, 'detail_url': detail_url, 'collection': collection})# + dis={'rank': rank,'name': name, 'type': type,"author":author, 'detail_url': detail_url, 'collection': collection} + booklist.append(dis) + + for k in booklist[::-1]: + k=str(k)+'\n' + f.write(k) + + # 定位下一页按钮,尝试点击元素直到最后一页 + try: + a= self.driver.find_element(By.ID,'PAGINATION-INPUT') + a.clear() + a.send_keys(page) + b=self.driver.find_element(By.XPATH,'//*[@id="PAGINATION-BUTTON"]') + if page==6: + self.close() + + if a: + b.click() + self.page_request(page) # 请求自己对页面进行解析 + # 下一页元素不存在就捕获异常,并结束 + except NoSuchElementException: + print('已经是最后一页,等待5秒结束......') + except Exception as e: + print(e) + + # 等待5秒关闭浏览器 + def close(self): + time.sleep(5) + self.driver.close() + + +if __name__ == '__main__': + top = VipCollection() + top.start() + top.page_request(j=1) + top.close() + diff --git a/pa大作业/qidain.txt b/pa大作业/qidain.txt new file mode 100644 index 0000000..0da5a7a --- /dev/null +++ b/pa大作业/qidain.txt @@ -0,0 +1,100 @@ +{'rank': 100, 'name': '明朝败家子', 'type': '历史', 'author': '上山打老虎额', 'detail_url': 'https://book.qidian.com/info/1011705052', 'collection': '𘟶\U000187fa𘟵𘟵𘟶𘟶'} +{'rank': 99, 'name': '深夜书屋', 'type': '悬疑', 'author': '纯洁滴小龙', 'detail_url': 'https://book.qidian.com/info/1011335417', 'collection': '𘟶\U000187fa𘟯𘟷𘟱𘟯'} +{'rank': 98, 'name': '这个诅咒太棒了', 'type': '都市', 'author': '行者有三', 'detail_url': 'https://book.qidian.com/info/1024722226', 'collection': '𘟶\U000187fa\U000187fa\U000187fa\U000187f9𘟯'} +{'rank': 97, 'name': '斗罗大陆V重生唐三', 'type': '玄幻', 'author': '唐家三少', 'detail_url': 'https://book.qidian.com/info/1027996625', 'collection': '𘟶𘟶𘟱\U000187f8𘟴𘟲'} +{'rank': 96, 'name': '九鼎记', 'type': '武侠', 'author': '我吃西红柿', 'detail_url': 'https://book.qidian.com/info/1321320', 'collection': '𘟶𘟶𘟷\U000187f8\U000187fa𘟷'} +{'rank': 95, 'name': '赤心巡天', 'type': '仙侠', 'author': '情何以甚', 'detail_url': 'https://book.qidian.com/info/1016530091', 'collection': '𘟶𘟶\U000187f9𘟷\U000187f8\U000187f9'} +{'rank': 94, 'name': '术师手册', 'type': '轻小说', 'author': '听日', 'detail_url': 'https://book.qidian.com/info/1025990049', 'collection': '𘟶𘟶𘟶𘟯\U000187fa\U000187f8'} +{'rank': 93, 'name': '惊悚乐园', 'type': '游戏', 'author': '三天两觉', 'detail_url': 'https://book.qidian.com/info/2597043', 'collection': '𘟶𘟲𘟷𘟵𘟲𘟴'} +{'rank': 92, 'name': '原来我是修仙大佬', 'type': '仙侠', 'author': '木下雉水', 'detail_url': 'https://book.qidian.com/info/1022314396', 'collection': '𘟶\U000187f8\U000187f8𘟯𘟵𘟷'} +{'rank': 91, 'name': '金刚不坏大寨主', 'type': '武侠', 'author': '徍男', 'detail_url': 'https://book.qidian.com/info/1023502814', 'collection': '𘟲𘟱𘟯𘟴𘟷𘟲'} +{'rank': 90, 'name': '明天下', 'type': '历史', 'author': '孑与2', 'detail_url': 'https://book.qidian.com/info/1015609210', 'collection': '𘟲𘟷\U000187f8\U000187f8\U000187fa\U000187f9'} +{'rank': 89, 'name': '异常生物见闻录', 'type': '科幻', 'author': '远瞳', 'detail_url': 'https://book.qidian.com/info/3242304', 'collection': '𘟲𘟵𘟲𘟶𘟴𘟷'} +{'rank': 88, 'name': '极道天魔', 'type': '仙侠', 'author': '滚开', 'detail_url': 'https://book.qidian.com/info/1005401501', 'collection': '𘟲𘟴\U000187fa𘟴𘟶𘟲'} +{'rank': 87, 'name': '我用闲书成圣人', 'type': '仙侠', 'author': '出走八万里', 'detail_url': 'https://book.qidian.com/info/1028463573', 'collection': '𘟲𘟴\U000187f8\U000187fa𘟯\U000187f8'} +{'rank': 86, 'name': '史上第一混乱', 'type': '都市', 'author': '张小花', 'detail_url': 'https://book.qidian.com/info/174075', 'collection': '𘟲\U000187f9𘟵𘟯\U000187fa𘟯'} +{'rank': 85, 'name': '校花的贴身高手', 'type': '都市', 'author': '鱼人二代', 'detail_url': 'https://book.qidian.com/info/1931432', 'collection': '𘟲\U000187f9𘟯\U000187f9𘟵\U000187fa'} +{'rank': 84, 'name': '莽荒纪', 'type': '仙侠', 'author': '我吃西红柿', 'detail_url': 'https://book.qidian.com/info/2502372', 'collection': '𘟲\U000187f9𘟲𘟲𘟵𘟶'} +{'rank': 83, 'name': '我的女友是恶劣大小姐', 'type': '轻小说', 'author': '掠过的乌鸦', 'detail_url': 'https://book.qidian.com/info/1021671831', 'collection': '𘟲𘟯𘟱𘟵𘟶𘟵'} +{'rank': 82, 'name': '一世之尊', 'type': '玄幻', 'author': '爱潜水的乌贼', 'detail_url': 'https://book.qidian.com/info/3249362', 'collection': '𘟲𘟯𘟯\U000187fa𘟵\U000187fa'} +{'rank': 81, 'name': '绍宋', 'type': '历史', 'author': '榴弹怕水', 'detail_url': 'https://book.qidian.com/info/1017281778', 'collection': '𘟲\U000187fa𘟵𘟯𘟴𘟯'} +{'rank': 80, 'name': '兰若蝉声', 'type': '短篇', 'author': '扫叶僧', 'detail_url': 'https://book.qidian.com/info/1016459104', 'collection': '𘟲\U000187fa𘟯𘟲\U000187fa𘟶'} +{'rank': 79, 'name': '仙逆', 'type': '仙侠', 'author': '耳根', 'detail_url': 'https://book.qidian.com/info/1264634', 'collection': '𘟲𘟶𘟱\U000187f8\U000187fa𘟶'} +{'rank': 78, 'name': '魔临', 'type': '悬疑', 'author': '纯洁滴小龙', 'detail_url': 'https://book.qidian.com/info/1016560323', 'collection': '𘟲𘟲𘟱𘟷\U000187f9𘟷'} +{'rank': 77, 'name': '神墓', 'type': '玄幻', 'author': '辰东', 'detail_url': 'https://book.qidian.com/info/63856', 'collection': '𘟲\U000187f8\U000187f8\U000187f8𘟲\U000187fa'} +{'rank': 76, 'name': '神秘复苏', 'type': '仙侠', 'author': '佛前献花', 'detail_url': 'https://book.qidian.com/info/1012584111', 'collection': '\U000187f8𘟵\U000187f9𘟲\U000187f9𘟶'} +{'rank': 75, 'name': '视死如归魏君子', 'type': '轻小说', 'author': '平层', 'detail_url': 'https://book.qidian.com/info/1027440366', 'collection': '\U000187f8𘟯𘟵𘟲𘟶𘟴'} +{'rank': 74, 'name': '天道图书馆', 'type': '玄幻', 'author': '横扫天涯', 'detail_url': 'https://book.qidian.com/info/1004179514', 'collection': '\U000187f8𘟯𘟲𘟲𘟱𘟷'} +{'rank': 73, 'name': '黎明之剑', 'type': '科幻', 'author': '远瞳', 'detail_url': 'https://book.qidian.com/info/1010400217', 'collection': '\U000187f8\U000187fa𘟷\U000187fa𘟲\U000187f8'} +{'rank': 72, 'name': '学霸的黑科技系统', 'type': '科幻', 'author': '晨星LL', 'detail_url': 'https://book.qidian.com/info/1011449273', 'collection': '\U000187f8𘟶𘟶𘟲𘟵\U000187f8'} +{'rank': 71, 'name': '斗罗大陆IV终极斗罗', 'type': '玄幻', 'author': '唐家三少', 'detail_url': 'https://book.qidian.com/info/1013406185', 'collection': '𘟷𘟱𘟱𘟷\U000187fa𘟱𘟴'} +{'rank': 70, 'name': '大梦主', 'type': '仙侠', 'author': '忘语', 'detail_url': 'https://book.qidian.com/info/1016534035', 'collection': '𘟷𘟱𘟷𘟲𘟲𘟷\U000187fa'} +{'rank': 69, 'name': '临渊行', 'type': '玄幻', 'author': '宅猪', 'detail_url': 'https://book.qidian.com/info/1017125042', 'collection': '𘟷𘟱𘟵\U000187f8𘟲\U000187f8𘟱'} +{'rank': 68, 'name': '从斗罗开始打卡', 'type': '轻小说', 'author': '夏竖琴', 'detail_url': 'https://book.qidian.com/info/1016869634', 'collection': '𘟷𘟱𘟴\U000187fa𘟲\U000187fa𘟴'} +{'rank': 67, 'name': '盗墓笔记', 'type': '悬疑', 'author': '南派三叔', 'detail_url': 'https://book.qidian.com/info/68223', 'collection': '𘟷𘟱\U000187f9𘟶\U000187f9𘟶\U000187f8'} +{'rank': 66, 'name': '签到十年,我被绝色师姐曝光了', 'type': '玄幻', 'author': '卿慕寒', 'detail_url': 'https://book.qidian.com/info/1025826037', 'collection': '𘟷𘟱𘟯𘟱\U000187f9𘟱\U000187fa'} +{'rank': 65, 'name': '不科学御兽', 'type': '玄幻', 'author': '轻泉流响', 'detail_url': 'https://book.qidian.com/info/1029006481', 'collection': '𘟷𘟱\U000187f8𘟷𘟷𘟷𘟱'} +{'rank': 64, 'name': '我欲封天', 'type': '仙侠', 'author': '耳根', 'detail_url': 'https://book.qidian.com/info/3106580', 'collection': '𘟷𘟷𘟱\U000187f9𘟶𘟷𘟶'} +{'rank': 63, 'name': '我有一座冒险屋', 'type': '悬疑', 'author': '我会修空调', 'detail_url': 'https://book.qidian.com/info/1012284323', 'collection': '𘟷𘟷𘟷𘟯\U000187f8\U000187f8\U000187f8'} +{'rank': 62, 'name': '九星毒奶', 'type': '科幻', 'author': '育', 'detail_url': 'https://book.qidian.com/info/1013432302', 'collection': '𘟷𘟷𘟵\U000187f8\U000187f9𘟯𘟵'} +{'rank': 61, 'name': '烂柯棋缘', 'type': '仙侠', 'author': '真费事', 'detail_url': 'https://book.qidian.com/info/1015990091', 'collection': '𘟷𘟷𘟴𘟶𘟲\U000187f8𘟯'} +{'rank': 60, 'name': '我的徒弟都是大反派', 'type': '玄幻', 'author': '谋生任转蓬', 'detail_url': 'https://book.qidian.com/info/1016660823', 'collection': '𘟷𘟷𘟶\U000187f9𘟵\U000187f8𘟲'} +{'rank': 59, 'name': '道君', 'type': '仙侠', 'author': '跃千愁', 'detail_url': 'https://book.qidian.com/info/1005236478', 'collection': '𘟷𘟷𘟲𘟯\U000187f9𘟲𘟷'} +{'rank': 58, 'name': '吞噬星空', 'type': '科幻', 'author': '我吃西红柿', 'detail_url': 'https://book.qidian.com/info/1639199', 'collection': '𘟷𘟷𘟲\U000187fa𘟲𘟱\U000187fa'} +{'rank': 57, 'name': '朕', 'type': '历史', 'author': '王梓钧', 'detail_url': 'https://book.qidian.com/info/1028520538', 'collection': '𘟷𘟵𘟷𘟷\U000187f8𘟵𘟯'} +{'rank': 56, 'name': '武动乾坤', 'type': '玄幻', 'author': '天蚕土豆', 'detail_url': 'https://book.qidian.com/info/2048120', 'collection': '𘟷𘟵𘟷𘟴𘟱\U000187f8𘟴'} +{'rank': 55, 'name': '斗罗大陆II绝世唐门', 'type': '玄幻', 'author': '唐家三少', 'detail_url': 'https://book.qidian.com/info/2517792', 'collection': '𘟷𘟵𘟴\U000187f8𘟴\U000187f9𘟶'} +{'rank': 54, 'name': '万界天尊', 'type': '玄幻', 'author': '血红', 'detail_url': 'https://book.qidian.com/info/1005238666', 'collection': '𘟷𘟵𘟯𘟱𘟴𘟯𘟷'} +{'rank': 53, 'name': '超神机械师', 'type': '游戏', 'author': '齐佩甲', 'detail_url': 'https://book.qidian.com/info/1009480992', 'collection': '𘟷𘟵𘟯𘟯𘟵𘟶\U000187f9'} +{'rank': 52, 'name': '亏成首富从游戏开始', 'type': '游戏', 'author': '青衫取醉', 'detail_url': 'https://book.qidian.com/info/1016150754', 'collection': '𘟷𘟵𘟯𘟲\U000187f9𘟶𘟯'} +{'rank': 51, 'name': '盘龙', 'type': '奇幻', 'author': '我吃西红柿', 'detail_url': 'https://book.qidian.com/info/1017141', 'collection': '𘟷𘟵\U000187f8𘟵\U000187fa𘟷𘟵'} +{'rank': 50, 'name': '我就是不按套路出牌', 'type': '轻小说', 'author': '百分之七', 'detail_url': 'https://book.qidian.com/info/1021578188', 'collection': '𘟷𘟵\U000187f8𘟴\U000187f8𘟷𘟱'} +{'rank': 49, 'name': '美食供应商', 'type': '都市', 'author': '会做菜的猫', 'detail_url': 'https://book.qidian.com/info/1003667321', 'collection': '𘟷𘟴𘟱𘟱\U000187fa\U000187f8𘟲'} +{'rank': 48, 'name': '雪鹰领主', 'type': '玄幻', 'author': '我吃西红柿', 'detail_url': 'https://book.qidian.com/info/3513193', 'collection': '𘟷𘟴𘟷𘟴𘟯𘟷𘟷'} +{'rank': 47, 'name': '将夜', 'type': '玄幻', 'author': '猫腻', 'detail_url': 'https://book.qidian.com/info/2083259', 'collection': '𘟷𘟴𘟷\U000187f9\U000187fa\U000187fa𘟲'} +{'rank': 46, 'name': '星辰变', 'type': '仙侠', 'author': '我吃西红柿', 'detail_url': 'https://book.qidian.com/info/118447', 'collection': '𘟷𘟴𘟷𘟶𘟵\U000187fa𘟯'} +{'rank': 45, 'name': '遮天', 'type': '仙侠', 'author': '辰东', 'detail_url': 'https://book.qidian.com/info/1735921', 'collection': '𘟷𘟴\U000187fa𘟲𘟱𘟯𘟱'} +{'rank': 44, 'name': '全职高手', 'type': '游戏', 'author': '蝴蝶蓝', 'detail_url': 'https://book.qidian.com/info/1887208', 'collection': '𘟷𘟴𘟲𘟯𘟵\U000187f8𘟯'} +{'rank': 43, 'name': '凡人修仙之仙界篇', 'type': '仙侠', 'author': '忘语', 'detail_url': 'https://book.qidian.com/info/1010734492', 'collection': '𘟷𘟴\U000187f8𘟱𘟲𘟵𘟴'} +{'rank': 42, 'name': '大魏读书人', 'type': '仙侠', 'author': '七月未时', 'detail_url': 'https://book.qidian.com/info/1029160231', 'collection': '𘟷𘟴\U000187f8𘟵𘟷𘟴\U000187f8'} +{'rank': 41, 'name': '明克街13号', 'type': '都市', 'author': '纯洁滴小龙', 'detail_url': 'https://book.qidian.com/info/1030870265', 'collection': '𘟷\U000187f9𘟱\U000187f9𘟯\U000187f9𘟴'} +{'rank': 40, 'name': '轮回乐园', 'type': '轻小说', 'author': '那一只蚊子', 'detail_url': 'https://book.qidian.com/info/1009817672', 'collection': '𘟷\U000187f9𘟷\U000187f8𘟷𘟵𘟵'} +{'rank': 39, 'name': '这个人仙太过正经', 'type': '仙侠', 'author': '言归正传', 'detail_url': 'https://book.qidian.com/info/1021635590', 'collection': '𘟷\U000187f9𘟵\U000187fa\U000187f9𘟱𘟲'} +{'rank': 38, 'name': '庆余年', 'type': '历史', 'author': '猫腻', 'detail_url': 'https://book.qidian.com/info/114559', 'collection': '𘟷\U000187f9𘟲𘟯𘟷\U000187f9\U000187f9'} +{'rank': 37, 'name': '深空彼岸', 'type': '都市', 'author': '辰东', 'detail_url': 'https://book.qidian.com/info/1027339371', 'collection': '𘟷\U000187f9𘟲\U000187f8𘟯𘟱𘟱'} +{'rank': 36, 'name': '稳住别浪', 'type': '都市', 'author': '跳舞', 'detail_url': 'https://book.qidian.com/info/1025325411', 'collection': '𘟷𘟯𘟵\U000187fa𘟲\U000187f8\U000187f9'} +{'rank': 35, 'name': '天启预报', 'type': '奇幻', 'author': '风月', 'detail_url': 'https://book.qidian.com/info/1014180485', 'collection': '𘟷𘟯𘟵𘟶\U000187fa\U000187fa𘟷'} +{'rank': 34, 'name': '凡人修仙传', 'type': '仙侠', 'author': '忘语', 'detail_url': 'https://book.qidian.com/info/107580', 'collection': '𘟷𘟯𘟯𘟱\U000187f8\U000187fa𘟵'} +{'rank': 33, 'name': '不朽凡人', 'type': '仙侠', 'author': '鹅是老五', 'detail_url': 'https://book.qidian.com/info/1003307568', 'collection': '𘟷𘟯\U000187fa𘟴𘟵𘟵𘟷'} +{'rank': 32, 'name': '大王饶命', 'type': '都市', 'author': '会说话的肘子', 'detail_url': 'https://book.qidian.com/info/1010191960', 'collection': '𘟷𘟯𘟶\U000187fa𘟴𘟶𘟷'} +{'rank': 31, 'name': '长夜余火', 'type': '玄幻', 'author': '爱潜水的乌贼', 'detail_url': 'https://book.qidian.com/info/1023422452', 'collection': '𘟷𘟯\U000187f8𘟵\U000187f8𘟷\U000187f8'} +{'rank': 30, 'name': '飞剑问道', 'type': '仙侠', 'author': '我吃西红柿', 'detail_url': 'https://book.qidian.com/info/1010468795', 'collection': '𘟷\U000187fa\U000187f8\U000187f9𘟲𘟱𘟵'} +{'rank': 29, 'name': '平平无奇大师兄', 'type': '轻小说', 'author': '黑夜弥天', 'detail_url': 'https://book.qidian.com/info/1017176480', 'collection': '𘟷𘟶𘟵𘟶\U000187fa\U000187f8𘟷'} +{'rank': 28, 'name': '赘婿', 'type': '历史', 'author': '愤怒的香蕉', 'detail_url': 'https://book.qidian.com/info/1979049', 'collection': '𘟷𘟶𘟯𘟱𘟵𘟯𘟵'} +{'rank': 27, 'name': '全球高武', 'type': '都市', 'author': '老鹰吃小鸡', 'detail_url': 'https://book.qidian.com/info/1012237441', 'collection': '𘟷𘟶𘟯𘟷𘟯\U000187f9\U000187f9'} +{'rank': 26, 'name': '放开那个女巫', 'type': '奇幻', 'author': '二目', 'detail_url': 'https://book.qidian.com/info/1003306811', 'collection': '𘟷𘟶𘟯𘟵𘟴𘟶\U000187f8'} +{'rank': 25, 'name': '这游戏也太真实了', 'type': '轻小说', 'author': '晨星LL', 'detail_url': 'https://book.qidian.com/info/1029391348', 'collection': '𘟷𘟶𘟯\U000187f9𘟲𘟲𘟲'} +{'rank': 24, 'name': '汉乡', 'type': '历史', 'author': '孑与2', 'detail_url': 'https://book.qidian.com/info/1010136878', 'collection': '𘟷𘟶𘟲𘟷\U000187fa𘟯𘟴'} +{'rank': 23, 'name': '大主宰', 'type': '玄幻', 'author': '天蚕土豆', 'detail_url': 'https://book.qidian.com/info/2750457', 'collection': '𘟷𘟶\U000187f8𘟵𘟶\U000187f9𘟷'} +{'rank': 22, 'name': '镇妖博物馆', 'type': '悬疑', 'author': '阎ZK', 'detail_url': 'https://book.qidian.com/info/1026722127', 'collection': '𘟷𘟲𘟱𘟵𘟶𘟵𘟱'} +{'rank': 21, 'name': '完美世界', 'type': '玄幻', 'author': '辰东', 'detail_url': 'https://book.qidian.com/info/2952453', 'collection': '𘟷𘟲\U000187fa𘟶𘟶\U000187f8𘟴'} +{'rank': 20, 'name': '斗罗大陆', 'type': '玄幻', 'author': '唐家三少', 'detail_url': 'https://book.qidian.com/info/1115277', 'collection': '𘟵𘟱𘟶𘟲\U000187f8\U000187f8𘟵'} +{'rank': 19, 'name': '玄界之门', 'type': '仙侠', 'author': '忘语', 'detail_url': 'https://book.qidian.com/info/3676417', 'collection': '𘟵𘟷\U000187f9\U000187fa𘟶𘟷𘟷'} +{'rank': 18, 'name': '从今天开始做藩王', 'type': '历史', 'author': '背着家的蜗牛', 'detail_url': 'https://book.qidian.com/info/1023831464', 'collection': '𘟵𘟴𘟯𘟱\U000187fa\U000187f9\U000187f9'} +{'rank': 17, 'name': '我的治愈系游戏', 'type': '悬疑', 'author': '我会修空调', 'detail_url': 'https://book.qidian.com/info/1025901449', 'collection': '𘟵𘟴𘟯\U000187f9\U000187f8𘟶𘟲'} +{'rank': 16, 'name': '星门', 'type': '玄幻', 'author': '老鹰吃小鸡', 'detail_url': 'https://book.qidian.com/info/1027669580', 'collection': '𘟵\U000187f9𘟯𘟴\U000187fa𘟵\U000187f9'} +{'rank': 15, 'name': '斗罗大陆III龙王传说', 'type': '玄幻', 'author': '唐家三少', 'detail_url': 'https://book.qidian.com/info/3681560', 'collection': '𘟵𘟯𘟷𘟶\U000187f8𘟵\U000187f9'} +{'rank': 14, 'name': '我真没想重生啊', 'type': '都市', 'author': '柳岸花又明', 'detail_url': 'https://book.qidian.com/info/1015648531', 'collection': '𘟵\U000187fa𘟱\U000187fa𘟵\U000187fa\U000187f9'} +{'rank': 13, 'name': '斗破苍穹', 'type': '玄幻', 'author': '天蚕土豆', 'detail_url': 'https://book.qidian.com/info/1209977', 'collection': '𘟵\U000187fa𘟷\U000187f9\U000187f8𘟲𘟷'} +{'rank': 12, 'name': '第一序列', 'type': '都市', 'author': '会说话的肘子', 'detail_url': 'https://book.qidian.com/info/1013562540', 'collection': '𘟵𘟲𘟷\U000187f9\U000187f9𘟷𘟱'} +{'rank': 11, 'name': '牧神记', 'type': '玄幻', 'author': '宅猪', 'detail_url': 'https://book.qidian.com/info/1009704712', 'collection': '𘟵𘟲𘟲\U000187fa\U000187f8𘟶𘟶'} +{'rank': 10, 'name': '开局签到荒古圣体', 'type': '玄幻', 'author': 'J神', 'detail_url': 'https://book.qidian.com/info/1021378513', 'collection': '𘟵\U000187f8𘟶𘟷𘟲𘟲𘟵'} +{'rank': 9, 'name': '夜的命名术', 'type': '都市', 'author': '会说话的肘子', 'detail_url': 'https://book.qidian.com/info/1021617576', 'collection': '𘟵\U000187f8\U000187f8𘟯𘟱𘟲𘟱'} +{'rank': 8, 'name': '从红月开始', 'type': '科幻', 'author': '黑山老鬼', 'detail_url': 'https://book.qidian.com/info/1024868626', 'collection': '𘟴𘟴𘟴𘟵\U000187f8𘟷𘟯'} +{'rank': 7, 'name': '万族之劫', 'type': '都市', 'author': '老鹰吃小鸡', 'detail_url': 'https://book.qidian.com/info/1018027842', 'collection': '𘟴𘟶\U000187fa𘟯𘟵𘟲\U000187fa'} +{'rank': 6, 'name': '我师兄实在太稳健了', 'type': '仙侠', 'author': '言归正传', 'detail_url': 'https://book.qidian.com/info/1016572786', 'collection': '𘟴\U000187f8𘟱𘟵\U000187f8𘟲\U000187f8'} +{'rank': 5, 'name': '修真聊天群(聊天群的日常生活)', 'type': '都市', 'author': '圣骑士的传说', 'detail_url': 'https://book.qidian.com/info/3602691', 'collection': '\U000187f9\U000187f9𘟴𘟲𘟷𘟵𘟲'} +{'rank': 4, 'name': '一念永恒', 'type': '仙侠', 'author': '耳根', 'detail_url': 'https://book.qidian.com/info/1003354631', 'collection': '\U000187f9\U000187f9𘟯\U000187f9𘟯𘟴\U000187f8'} +{'rank': 3, 'name': '大奉打更人', 'type': '仙侠', 'author': '卖报小郎君', 'detail_url': 'https://book.qidian.com/info/1019664125', 'collection': '\U000187f9𘟶\U000187f9𘟱𘟷𘟶𘟱'} +{'rank': 2, 'name': '诡秘之主', 'type': '玄幻', 'author': '爱潜水的乌贼', 'detail_url': 'https://book.qidian.com/info/1010868264', 'collection': '𘟯𘟶\U000187f9𘟱\U000187f9𘟶𘟱'} +{'rank': 1, 'name': '圣墟', 'type': '玄幻', 'author': '辰东', 'detail_url': 'https://book.qidian.com/info/1004608738', 'collection': '\U000187fa\U000187fa\U000187f8𘟵\U000187f9\U000187f9𘟯'}