Skip to content

Commit

Permalink
typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertMyles committed Mar 1, 2017
1 parent 298116e commit c662f42
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
4 changes: 3 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ knitr::opts_chunk$set(

[![Travis-CI Build Status](https://travis-ci.org/RobertMyles/tidyRSS.svg?branch=master)](https://travis-ci.org/RobertMyles/tidyRSS)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/tidyRSS)](https://cran.r-project.org/package=tidyRSS)
[![CRAN_Download_Badge](http://cranlogs.r-pkg.org/badges/tidyRSS)](https://CRAN.R-project.org/package=tidyRSS)
[![CRAN_Download_Badge](http://cranlogs.r-pkg.org/badges/grand-total/tidyRSS)](https://CRAN.R-project.org/package=tidyRSS)

tidyRSS is a package for extracting data from [RSS feeds](https://en.wikipedia.org/wiki/RSS).

Expand Down Expand Up @@ -65,6 +67,6 @@ RSS feeds can be finicky things, if you find one that doesn't work with `tidyfee

## Related

The package is a 'tidy' version of two other related fantastic little packages, [rss](https://github.com/noahhl/r-does-rss) and [feedeR](https://github.com/DataWookie/feedeR), both of which return lists. In comparison to feedeR, tidyRSS returns more information from the RSS feed (if it exists), and develpment on rss seems to have stopped some time ago. Both packages were influences for tidyRSS.
The package is a 'tidy' version of two other related fantastic little packages, [rss](https://github.com/noahhl/r-does-rss) and [feedeR](https://github.com/DataWookie/feedeR), both of which return lists. In comparison to feedeR, tidyRSS returns more information from the RSS feed (if it exists), and development on rss seems to have stopped some time ago. Both packages were influences for tidyRSS.


32 changes: 27 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->
[![Travis-CI Build Status](https://travis-ci.org/RobertMyles/tidyRSS.svg?branch=master)](https://travis-ci.org/RobertMyles/tidyRSS) [![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/tidyRSS)](https://cran.r-project.org/package=tidyRSS)
[![Travis-CI Build Status](https://travis-ci.org/RobertMyles/tidyRSS.svg?branch=master)](https://travis-ci.org/RobertMyles/tidyRSS) [![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/tidyRSS)](https://cran.r-project.org/package=tidyRSS) [![CRAN\_Download\_Badge](http://cranlogs.r-pkg.org/badges/tidyRSS)](https://CRAN.R-project.org/package=tidyRSS) [![CRAN\_Download\_Badge](http://cranlogs.r-pkg.org/badges/grand-total/tidyRSS)](https://CRAN.R-project.org/package=tidyRSS)

tidyRSS is a package for extracting data from [RSS feeds](https://en.wikipedia.org/wiki/RSS).

Expand Down Expand Up @@ -39,9 +39,31 @@ data("feeds")
url <- feeds$feeds[[1]]

tidyfeed(url)
#>
#> This page does not appear to be a suitable feed.
#> Have you checked that you entered the url correctly?
#> # A tibble: 20 × 6
#> item_title
#> <chr>
#> 1 Kevin Durant’s Injury Is Exactly Why The Warriors Needed Kevin Durant
#> 2 Russell Westbrook Can’t Stop Going Left
#> 3 The Earth In A Suitcase
#> 4 When Did Sports Become So Political?
#> 5 Significant Digits For Wednesday, Mar. 1, 2017
#> 6 Trump’s Speech Was Quiet — And Quietly Radical
#> 7 What Went Down At Trump’s First Address To Congress
#> 8 Firing Claudio Ranieri Won’t Fix Leicester City
#> 9 We’re Looking For A Part-Time Quantitative Editor
#> 10 How Frank Vogel Is Making Terrence Ross Feel At Home In Orlando
#> 11 How A Weakened Mexican Economy Could Threaten U.S. Security
#> 12 Significant Digits For Tuesday, Feb. 28, 2017
#> 13 How Trump’s Start-Of-Term Strategy Differs From Past Presidents’
#> 14 Politics Podcast: Where Do The Parties Go From Here?
#> 15 Why You Shouldn’t Always Trust The Inside Scoop
#> 16 Will Buyout Season Help The Cavs And Warriors?
#> 17 Kemba Walker Doesn’t Care How Close You’re Guarding Him
#> 18 All We Really Need To Get To Mars Is A Boatload Of Cash
#> 19 Oscars Night Was Predictable Until The Very End
#> 20 Significant Digits For Monday, Feb. 27, 2017
#> # ... with 5 more variables: item_date <dttm>, item_link <chr>,
#> # creator <chr>, head_title <chr>, head_link <chr>
```

More information is contained in the vignette: `vignette("tidyrss", package = "tidyRSS")`. For common feed types, tidyRSS should be fast. For some feeds, there can be a slight delay because `tidyfeed()` is testing different ways of parsing the feed.
Expand All @@ -54,4 +76,4 @@ RSS feeds can be finicky things, if you find one that doesn't work with `tidyfee
Related
-------

The package is a 'tidy' version of two other related fantastic little packages, [rss](https://github.com/noahhl/r-does-rss) and [feedeR](https://github.com/DataWookie/feedeR), both of which return lists. In comparison to feedeR, tidyRSS returns more information from the RSS feed (if it exists), and develpment on rss seems to have stopped some time ago. Both packages were influences for tidyRSS.
The package is a 'tidy' version of two other related fantastic little packages, [rss](https://github.com/noahhl/r-does-rss) and [feedeR](https://github.com/DataWookie/feedeR), both of which return lists. In comparison to feedeR, tidyRSS returns more information from the RSS feed (if it exists), and development on rss seems to have stopped some time ago. Both packages were influences for tidyRSS.

0 comments on commit c662f42

Please sign in to comment.