dependent_repos (view)
6 rows where "dependent_created" is on date 2022-08-20
This data as json, CSV (advanced)
Suggested facets: repo, dependent, dependent_created, dependent_updated, dependent_created (date), dependent_updated (date)
repo | dependent | dependent_created | dependent_updated | dependent_stars | dependent_watchers |
---|---|---|---|---|---|
simonw/datasette | https://github.com/simonw/scotrail-datasette | 2022-08-20T21:37:29Z | 2022-08-20T22:23:06Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/simonw/scotrail-datasette | 2022-08-20T21:37:29Z | 2022-08-20T22:23:06Z | 0 | 0 |
simonw/datasette | https://github.com/chekos/datasette-spotify-embed | 2022-08-20T20:36:24Z | 2022-08-20T21:26:06Z | 0 | 0 |
simonw/datasette | https://github.com/simonw/datasette-mp3-audio | 2022-08-20T16:20:06Z | 2022-08-20T16:20:32Z | 0 | 0 |
simonw/datasette | https://github.com/phildini/berkeley-data | 2022-08-20T03:00:36Z | 2022-08-20T17:52:43Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/phildini/berkeley-data | 2022-08-20T03:00:36Z | 2022-08-20T17:52:43Z | 0 | 0 |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW dependent_repos AS select repos.full_name as repo, 'https://github.com/' || dependent_repos.full_name as dependent, dependent_repos.created_at as dependent_created, dependent_repos.updated_at as dependent_updated, dependent_repos.stargazers_count as dependent_stars, dependent_repos.watchers_count as dependent_watchers from dependents join repos as dependent_repos on dependents.dependent = dependent_repos.id join repos on dependents.repo = repos.id order by dependent_repos.created_at desc;