xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 5.29KB
    文件類型: .py
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-03-27
  • 語言: 其他
  • 標(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)論