prof18 / RSS-Parser

A Kotlin Multiplatform library to parse a RSS Feed

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Multiply feeds

eurocharts opened this issue · comments

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

You can simply do this:

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