91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 5.29KB
    文件類型: .py
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-03-27
  • 語(yǔ)言: 其他
  • 標(biāo)簽: 其他??

資源簡(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?

評(píng)論

共有 條評(píng)論