prof18 / RSS-Parser

A Kotlin Multiplatform library to parse a RSS Feed
Apache License 2.0
509 stars 129 forks source link

Multiply feeds #62

Closed eurocharts closed 4 years ago

eurocharts commented 4 years ago

It was an article about RSS Parser on Medium: "This library allows you to easily download an (or multiple) RSS Feed"

Is it possible get more than one feed on latest version?

thank You

prof18 commented 4 years ago

You can simply do this:

val parser = Parser()
val articleList = parser.getChannel(url)
val articleList2 = parser.getChannel(url2)