Python實現的RSS閱讀器執行個體

來源:互聯網
上載者:User
本文執行個體講述了Python實現的RSS閱讀器。分享給大家供大家參考。具體如下:

# -*- coding:utf-8 -*-# file: pyRSS.py#import Tkinterimport urllibimport xml.parsers.expatclass MyXML: # XML解析類  def __init__(self, edit):    self.parser = xml.parsers.expat.ParserCreate() # 產生XMLParser    self.parser.StartElementHandler = self.start # 起始標記處理方法    self.parser.EndElementHandler = self.end # 結束標記處理方法    self.parser.CharacterDataHandler = self.data # 字元資料處理方法    self.title = False # 狀態標誌    self.description = False    self.date = False    self.edit = edit # 多行文字框對象  def start(self, name, attrs): # 起始標記處理方法    if name == 'title': # 判斷是否為title元素      self.title = True # 標誌設為真    elif name == 'description':      self.description = True    elif name == 'pubDate': # 判斷是否為pubDate      self.date = True # 標誌設為真    else:      pass  def end(self, name): # 結束標記處理    if name == 'title':      self.title = False # 標誌設為假    elif name == 'description':      self.description = False    elif name == 'pubDate':      self.date = False # 標誌設為假    else:      pass  def data(self,data): # 字元資料處理方法    if self.title: # 根據標誌狀態輸出資料      self.edit.insert(Tkinter.END,          '******************************\n')      self.edit.insert(Tkinter.END, 'Title: ')      self.edit.insert(Tkinter.END, data + '\n')    elif self.description:      self.edit.insert(Tkinter.END, 'Date: ')      self.edit.insert(Tkinter.END, data + '\n')    elif self.date:      self.edit.insert(Tkinter.END, 'Date: ')      self.edit.insert(Tkinter.END, data + '\n')    else:      pass  def feed(self, data):    self.parser.Parse(data, 0)class Window:  def __init__(self, root):    self.root = root # 建立組件    self.entryUrl = Tkinter.Entry(root,width = 30)    self.entryUrl.place(x = 65, y = 15)    self.get = Tkinter.Button(root,        text = '讀取RSS', command = self.Get, font = ('system','10'))    self.get.place(x = 350, y = 15)    self.frame = Tkinter.Frame(root, bd=2)    self.scrollbar = Tkinter.Scrollbar(self.frame)    self.edit = Tkinter.Text(self.frame,yscrollcommand = self.scrollbar.set,        width = 96, height = 32)    self.scrollbar.config(command=self.edit.yview)    self.edit.pack(side = Tkinter.LEFT)    self.scrollbar.pack(side=Tkinter.RIGHT, fill=Tkinter.Y)    self.frame.place(y = 50)  def Get(self):    url = self.entryUrl.get()    page = urllib.urlopen(url) # 開啟URL    data = page.read() # 讀取URL內容    parser = MyXML(self.edit) # 產生執行個體對象    parser.feed(data) # 處理XML資料    page.close()root = Tkinter.Tk()root.title('RSS 讀取程式')window = Window(root)root.minsize(700,500)root.maxsize(700,500)root.mainloop()

希望本文所述對大家的Python程式設計有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.