Added new JSON Feed (@jsonfeed) format to the (universal) feedparser gem
Hello, I’ve added support for reading feeds in the new JSON Feed format in - surprise, surprise - JSON to the universal feedparser gem. Nothing changes if you read in feeds in xml or json ;-) Use it like:
require 'open-uri'
require 'feedparser'
txt = open( 'https://jsonfeed.org/feed.json' ).read
feed = FeedParser::Parser.parse( txt )
pp feed
Enjoy. Cheers.
Post a comment