#!/usr/bin/env python3 import sys import urllib3 import xml.etree.ElementTree as ET http = urllib3.PoolManager() response = http.request('GET',sys.argv[1]) if response.status == 200: try: tree = ET.fromstring(response.data.decode('utf-8')) firstentry = tree.find('{http://www.w3.org/2005/Atom}entry') appliedarr = {} for child in firstentry: shortattr = child.tag.replace('{http://www.w3.org/2005/Atom}','') appliedarr.update({shortattr : child.text}) print('
'+appliedarr['summary'] + ' Updated: ' + appliedarr['updated'] +' Read More