# Bussard ## An RSS reader
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

1234567891011
  1. import feedparser
  2. import opyml
  3. import Psycopg2
  4. def read_archive(self, filename):
  5. # filename is assumed to be relative to the directory
  6. # you're calling this from, or globally qualified
  7. # It cannot be a URL or non-local file.
  8. with open(filename, "r") as file:
  9. contents = file.read(filename)