def main(urls=[]):
print 'Saving feed data to ./.feedcache'
storage = shelvestorage.ShelveStorage('.feedcache')
storage.open()
try:
fc = cache.Cache(storage)
for url in urls:
parsed_data = fc[url]
print parsed_data.feed.title
for entry in parsed_data.entries:
print '\t', entry.title
finally:
storage.close()
return