Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/datawookie/feedeR
Handle RSS and Atom feeds from R
https://github.com/datawookie/feedeR
Last synced: 8 days ago
JSON representation
Handle RSS and Atom feeds from R
- Host: GitHub
- URL: https://github.com/datawookie/feedeR
- Owner: datawookie
- Created: 2016-08-06T04:25:55.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-09-28T09:48:37.000Z (about 4 years ago)
- Last Synced: 2024-12-02T08:57:23.248Z (10 days ago)
- Language: R
- Size: 313 KB
- Stars: 29
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
- jimsghstars - datawookie/feedeR - Handle RSS and Atom feeds from R (R)
README
---
output: github_document
---# feedeR
[![Build Status](https://travis-ci.org/DataWookie/feedeR.svg?branch=master)](https://travis-ci.org/DataWookie/feedeR)
[![GitHub version](https://badge.fury.io/gh/DataWookie%2FfeedeR.svg)](https://badge.fury.io/gh/DataWookie%2FfeedeR)
[![codecov.io](https://codecov.io/github/DataWookie/feedeR/coverage.svg?branch=master)](https://codecov.io/github/DataWookie/feedeR?branch=master)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/feedeR)](https://cran.r-project.org/package=feedeR)# Feed Reader Package for R
A package for reading [RSS](https://en.wikipedia.org/wiki/RSS) and [Atom](https://en.wikipedia.org/wiki/Atom_(standard)) feeds.
## Installation
Easy to install.
```
devtools::install_github("datawookie/feedeR")
```## Usage
For a RSS feed:
```
feed.extract("https://feeds.feedburner.com/RBloggers")
```For an Atom feed:
```
feed.extract("http://journal.r-project.org/rss.atom")
```## Similar Projects
- The [{scifetch}](https://github.com/yufree/scifetch) package has `getrss()`.
- The [{tidyRSS}](hhttps://CRAN.R-project.org/package=tidyRSS) package.