You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feedme expose only one function named parse/1. Parse function detects the feed format as rss or atom.
{:ok,xml_string}=File.read("some.xml"){:ok,feed}=Feedme.parse(xml_string)# Feed%Feedme.Feed{meta: %Feedme.MetaData{author: nil,category: nil,cloud: nil,copyright: nil,description: "software is fun",docs: nil,generator: "Ghost 0.6",image: nil,language: nil,last_build_date: %Timex.DateTime{...},link: "https://blog.drewolson.org/",managing_editor: nil,publication_date: nil,rating: nil,skip_days: [],skip_hours: [],title: "collect {thoughts}",ttl: "60",web_master: nil}entries: [%Feedme.Entry{author: nil,categories: ["elixir"],comments: nil,description: "<p>I previously <a href=\"https://blog.drewolson.org/the-value-of-explicitness/\">wrote</a> about explicitness in Elixir. One of my favorite ways the language embraces explicitness is in its distinction between eager and lazy operations on collections. Any time you use the <code>Enum</code> module, you're performing an eager operation. Your collection will be transformed/mapped/enumerated immediately. When you use</p>",enclosure: %Feedme.Enclosure{length: "12216320",type: "audio/mpeg",url: "https://www.tutorialspoint.com/mp3s/tutorial.mp3"},guid: "9b68a5a7-4ab0-420e-8105-0462357fa1f1",link: "https://blog.drewolson.org/elixir-streams/",publication_date: %Timex.DateTime{...},source: nil,title: "Elixir Streams"}]}