RobertMyles / tidyRSS

An R package for extracting 'tidy' data frames from RSS, Atom and JSON feeds
https://robertmyles.github.io/tidyRSS/
Other
82 stars 20 forks source link

make the *_parse functions exported? #68

Closed rmflight closed 1 year ago

rmflight commented 1 year ago

I have a situation where I want to parse a "local" rss feed (the quarto blog generated index.xml).

The httr::GET() fails on a local file, but tidyRSS::rss_parse() works just fine on the on disk index.xml file, but it's not exposed to other users.

I thought about putting it into my own package, but then I've copied over a rather large chunk of the package functions, which seems pointless. It seemed easier to just ask if you could export the various *_parse functions instead.

I also get it if it seems like too much work to support having them exported.

RobertMyles commented 1 year ago

Interesting idea, @rmflight , I'll consider that for the next version.

rmflight commented 1 year ago

Thanks @RobertMyles , appreciate even considering it.