This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf8 -*- | |
# This short script parses the RSS feed from bitcoinupdate.com and returns a nicely formatted | |
# block of HTML for the most recent entry. | |
# | |
# Author: Harald Schilly <[email protected]> | |
# License: Apache 2.0 | |
import requests as req | |
from dateutil.parser import parse as date_parser |