It is allowed to used an encrypted connection to administer a remote repeater, like for amateur satellites. Only the control link may be encrypted. The repeated signals may not, just like any other amateur transmissions.
a small or inferior remnant or offshoot; especially : a group
(as a parliament) carrying on in the name of the original body
after the departure or expulsion of a large number of its
members
http://www.merriam-webster.com/dictionary/rump for e in results:
simple_author=e['author'].split('(')[1][:-1].strip()
if freqs.get(simple_author,0) < 1:
print ("%(date)s -- %(author)s -- %(title)s" % {
'date': parse(e['published']).strftime("%Y-%m-%d"),
'author': simple_author,
'title': e['title'],
}).encode('utf-8')
You might dislike my multi-line print and would prefer to .join() a list, possibly with a temporary variable. Or, maybe you'd prefer the newer .format(). Regardless, the important point is that the .encode() should happen later than it does in the article.