Browse and import production-ready LSD Modules. Each module transforms web content into structured data, built and tested by our developer community. Combine existing modules or create your own. See our docs to get started.
SELECT
a AS job_title
, div.small-12.large-3.columns AS type
, div.small-12.large-2.columns AS posted
FROM
https://staffjobsus.kirkland.com/jobs/search/?q=&location_city=New+York&sort_by=cfml10%2Cdesc
GROUP BY
div.jobs-section__item;
-- hacker news front page stories
SELECT
a AS title
, span.sitestr AS link
FROM
https://news.ycombinator.com/
GROUP BY
span.titleline;
SELECT
a.ArticleListing__title-link AS Headline
, a@href AS Link
FROM
https://venturebeat.com/
GROUP BY
h2.ArticleListing__title;
SELECT
a.title AS Headline
, a@href AS Link
FROM
https://sempremilan.com/
GROUP BY
div.img-txt.c-std-mgn-b;
SELECT
a AS Headline
, a@href AS Link
FROM
https://sempremilan.com/
GROUP BY
div.title;