前言
今天教大家使用者Python GUI程式設計——tkinter 打造一個小說下載器,想看什麼小說,就下載什麼小說
先看下效果圖
Tkinter 是使用 python 進行視窗視窗設計的模組。Tkinter模組("Tk 介面")是Python的標準Tk GUI工具包的介面。
作為 python 特定的GUI介面,是一個影像的視窗,tkinter是python 自帶的,可以編輯的GUI介面,我們可以用GUI 實現很多直觀的功能,比如想開發一個計算器,如果只是一個程式輸入,輸出視窗的話,是沒用使用者體驗的。所有開發一個影像化的小視窗,就是必要的。
開發環境
- 版 本:anaconda5.2.0(python3.6.5)
- 編輯器:pycharm
本次目標
爬取筆趣閣小說,使用 tkinter 打造一個小說下載器
http://www.xbiquge.la/
先設計一個影像化的介面
程式碼
from tkinter import * 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()
效果如下圖
開始小說網站的爬蟲程式碼
網頁資料是靜態網頁,但是要搜尋,是post請求,需要提交資料引數,如下圖所示:
然後通過解析網站資料,獲取第一個小說的詳情頁URL即可。
靜態網頁的爬取,缺點是不大的。
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,所有的章節名稱以及url地址都包含在dd標籤裡面。
2,獲取url後,需要拼接
'/23/23019/11409705.html' # 這是網頁獲取到的url 'http://www.xbiquge.la/23/23019/11409705.html' # 這是真實的小說章節內容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() # 提取了所有章節的下載地址 urls = sel.css('#list dd a::attr(href)').getall() # 不要最新的 12 章放在最前main for url in urls: chapter_url = 'http://www.xbiquge.la' + url print(chapter_url)
儲存下載每章小說內容
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()
再來個顯示下載內容
def novel_load(title): text.insert(END, '正在儲存:{}'.format(title)) # 文字框滾動 text.see(END) # 更新 text.update()
最後你還可以把程式碼給打包成exe檔案,分享給你的朋友們用
如果有想要這個程式的小夥伴記得私信我
這個是本篇文章的視訊版,詳細講解本次案例步驟,大家可以學習下
https://www.bilibili.com/video/BV13a4y1E7Tb