Popularity
4.2
Growing
Activity
0.0
Stable
14
6
9
Monthly Downloads: 6
Programming language: Elixir
License: MIT License
Tags:
Feeds
feedme alternatives and similar packages
Based on the "Feeds" category.
Alternatively, view feedme alternatives based on common mentions on social networks and blogs.
-
atomex
๐ Elixir RSS/ATOM feed builder with a focus on standards compliance, security and extensibility
Elixir and Phoenix Application Security Platform
Replace Snyk, reCaptcha, and Cloudflare bot defense with the only application security platform built for Elixir and Phoenix.
Promo
paraxial.io
Do you think we are missing an alternative of feedme or a related project?
Popular Comparisons
README
Feedme
Elixir RSS/Atom parser built on erlang's xmerl xml parser. It uses timex for parsing dates.
Setup
Add feedme into your mix dependencies and applications:
def application do
[applications: [:feedme]]
end
defp deps do
[{:feedme, "~> 0.0.1"}]
end
Then run mix deps.get
to install feedme.
Parsing
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: "http://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=\"http://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: "http://www.tutorialspoint.com/mp3s/tutorial.mp3"
},
guid: "9b68a5a7-4ab0-420e-8105-0462357fa1f1",
link: "http://blog.drewolson.org/elixir-streams/",
publication_date: %Timex.DateTime{...},
source: nil, title: "Elixir Streams"
}
]
}
ToDo
- [ ] Rss+Atom parser
- [ ] FeedBurner support