Live data from Hacker News

Steampipe SQLite – Virtual tables translated for common APIs

github.com

1–2 of 2 posts

Re: Steampipe SQLite – Virtual tables translated for common APIs

#2
This plays really well with datasette:

grab https://github.com/turbot/steampipe-plugin-hackernews/releas...

  datasette --load-extension steampipe_sqlite_hackernews.so 
and then in your browser:

  select
    *, 'https://news.ycombinator.com/item?id=' || id as link
  from
    hackernews_item
  where
    id = 38713046;