資源簡(jiǎn)介
Python文章抓取,可以自動(dòng)抓取并保存文章到txt文件,適合的網(wǎng)站有CSDN,簡(jiǎn)書,各大新聞網(wǎng)站的文章。
代碼片段和文件信息
import?wx
from?newspaper?import?Article
from?threading?import?*
from?wx.lib.pubsub?import?pub
import?webbrowser
url?=?““
class?WorkerThread(Thread):
????“““Worker?Thread?Class.“““
????def?__init__(self?notify_window):
????????“““Init?Worker?Thread?Class.“““
????????Thread.__init__(self)
????????self._notify_window?=?notify_window
????????self._want_abort?=?0
????????self.start()
????def?run(self):
????????global?path
????????global?url
????????a?=?Article(url?language=‘zh‘)??#?Chinese
????????a.download()
????????a.parse()
????????#?print(a.text)
????????try:
????????????f?=?open(path?+?“\\Article.txt“?“a+“)??#?以追加的方式
????????????f.write(“url:?“?+?a.source_url)
????????????f.write(“\n“?+?a.title?+?“\n“)
????????????f.write(str(a.text))??#?寫完通過\n進(jìn)行換行
????????except:
????????????pass
????????wx.CallAfter(pub.sendMessage?“title“?msg=str(a.title))
????????wx.CallAfter(pub.sendMessage?“text“?msg=str(a.text))
class?InfoPanel(wx.frame):
????def?
- 上一篇:飛思卡爾舵機(jī)程序
- 下一篇:MASTERCAM-西門子后處理
評(píng)論
共有 條評(píng)論