feedy
feedy copied to clipboard
RSS Feed Fetching Framework for Python
``` from feedy import Feedy from feedy_plugins import social_share_plugin from bs4 import BeautifulSoup feedy = Feedy('feedy.dat') @feedy.add('http://rss.cnn.com/rss/edition.rss') def cnn(info, body): soup = BeautifulSoup(body, "html.parser") for x in soup.find_all('img'): print(x['src']) @feedy.add('http://rss.cnn.com/rss/edition.rss')...
- https://github.com/jonathanslenders/python-prompt-toolkit - http://methane.hatenablog.jp/entry/2016/03/02/prompt_toolkit_%E3%81%8C%E3%82%A2%E3%83%84%E3%81%84