python 制作網(wǎng)站小說下載器
· Python 3.6
· Pycharm
相關(guān)模塊使用輸入想看的小說內(nèi)容,點擊搜索
這里會返回很多結(jié)果,我只選擇第一個
網(wǎng)頁數(shù)據(jù)是靜態(tài)數(shù)據(jù),但是要搜索,是post請求,需要提價data參數(shù),如下圖所示:
然后通過解析網(wǎng)站數(shù)據(jù),獲取第一個小說i的詳情頁url即可
靜態(tài)網(wǎng)頁的獲取,難度是不大的。def search(): search_url = ’http://www.xbiquge.la/modules/article/waps.php’ data = {’searchkey’: name } response = requests.post(url=search_url, data=data, headers=headers) selector = get_parsing(response.text) novel_url = selector.css(’.even a::attr(href)’).extract_first()1、獲取每本小說的章節(jié)名以及url地址
所有的章節(jié)名以及url地址,都包含在dd標簽里面
’/23/23019/11409705.html’ # 這是網(wǎng)頁獲取到的url’http://www.xbiquge.la/23/23019/11409705.html’ # 這是真實的小說章節(jié)內(nèi)容url地址3、小說名字,直接獲取即可。
def download_one_book(index_url): response = get_response(index_url) response.encoding = response.apparent_encoding sel = get_parsing(response.text) book_name = sel.css(’#info h1::text’).get() # 提取了所有章節(jié)的下載地址 urls = sel.css(’#list dd a::attr(href)’).getall() # 不要最新的 12 章放在最前main for url in urls:chapter_url = ’http://www.xbiquge.la’ + urlprint(chapter_url)
保存下載每章小說內(nèi)容
def download_one_chapter(chapter_url, book_name): response = get_response(chapter_url) response.encoding = response.apparent_encoding html = response.text selector = get_parsing(html) h1 = selector.css(’.bookname h1::text’).get() content = selector.css(’#content::text’).getall() lines = [] for c in content:lines.append(c.strip()) print(h1) text = ’n’.join(lines) file = open(book_name + ’.txt’, mode=’a’, encoding=’utf-8’) file.write(h1) file.write(’n’) file.write(text) file.write(’n’) file.close()小說軟件界面
root = Tk()root.title(’小說下載器’)root.geometry(’560x450+400+200’) label = Label(root, text=’請輸入下載小說名字:’, font=(’華文行楷’, 20))label.grid() entry = Entry(root, font=(’隸書’, 20))entry.grid(row=0, column=1) text = Listbox(root, font=(’隸書’, 16), width=50, heigh=15)text.grid(row=2, columnspan=2) button1 = Button(root, text=’開始下載’, font=(’隸書’, 15), command=search)button1.grid(row=3, column=0) button2 = Button(root, text=’退出程序’, font=(’隸書’, 15), command=root.quit)button2.grid(row=3, column=1) root.mainloop()顯示下載內(nèi)容
def novel_load(title): text.insert(END, ’正在保存:{}’.format(title)) # 文本框滾動 text.see(END) # 更新 text.update()實現(xiàn)效果
以上就是python 制作網(wǎng)站小說下載器的詳細內(nèi)容,更多關(guān)于python 小說下載器的資料請關(guān)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. Gitlab CI-CD自動化部署SpringBoot項目的方法步驟2. 解決android studio引用遠程倉庫下載慢(JCenter下載慢)3. ajax請求添加自定義header參數(shù)代碼4. ASP基礎(chǔ)知識VBScript基本元素講解5. 基于javascript處理二進制圖片流過程詳解6. Kotlin + Flow 實現(xiàn)Android 應用初始化任務(wù)啟動庫7. 使用Python和百度語音識別生成視頻字幕的實現(xiàn)8. 教你如何寫出可維護的JS代碼9. ASP刪除img標簽的style屬性只保留src的正則函數(shù)10. 使用python 計算百分位數(shù)實現(xiàn)數(shù)據(jù)分箱代碼
