turbot / steampipe-plugin-rss

Use SQL to instantly query RSS channels and Atom Feeds. Open source CLI. No DB required.
https://hub.steampipe.io/plugins/turbot/rss
Apache License 2.0
11 stars 2 forks source link

Recompile plugin with steampipe-plugin-sdk v1.8.2 #11

Closed misraved closed 2 years ago

misraved commented 2 years ago

Example query results

Results ``` select title, link, description from rss_channel where feed_link = 'https://steampipe.io/blog/feed.xml' +----------------+---------------------------+----------------------------------------+ | title | link | description | +----------------+---------------------------+----------------------------------------+ | Steampipe Blog | https://steampipe.io/blog | Blog and Resource Center for Steampipe | +----------------+---------------------------+----------------------------------------+ > select title, link, description from rss_channel where feed_link in ('https://steampipe.io/blog/feed.xml','https://www.podcastinsights.com/feed/'); +-------------------+---------------------------------+----------------------------------------+ | title | link | description | +-------------------+---------------------------------+----------------------------------------+ | Steampipe Blog | https://steampipe.io/blog | Blog and Resource Center for Steampipe | | Podcast Insights® | https://www.podcastinsights.com | | +-------------------+---------------------------------+----------------------------------------+ > select title, feed_type, feed_version from rss_channel where feed_link = 'https://steampipe.io/blog/feed.xml' +----------------+-----------+--------------+ | title | feed_type | feed_version | +----------------+-----------+--------------+ | Steampipe Blog | rss | 2.0 | +----------------+-----------+--------------+ ```