# Bussard ## An RSS reader
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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)