dependent_repos (view)
6 rows where "dependent_created" is on date 2021-03-29
This data as json, CSV (advanced)
Suggested facets: repo, dependent, dependent_created, dependent_updated, dependent_stars, dependent_watchers, dependent_created (date), dependent_updated (date)
repo | dependent | dependent_created | dependent_updated | dependent_stars | dependent_watchers |
---|---|---|---|---|---|
simonw/sqlite-utils | https://github.com/JackySo-24x7classroom/today-i-learn | 2021-03-29T23:36:10Z | 2021-03-30T00:30:42Z | 0 | 0 |
simonw/datasette | https://github.com/digital-land/datasette-builder | 2021-03-29T14:54:30Z | 2021-03-31T13:40:27Z | 0 | 0 |
simonw/datasette | https://github.com/KasperZutterman/pocket-data-datasette | 2021-03-29T11:50:50Z | 2021-03-29T12:52:27Z | 0 | 0 |
simonw/datasette | https://github.com/aarhusstadsarkiv/byraadsarkivet-frontend | 2021-03-29T11:30:34Z | 2021-10-03T14:52:07Z | 0 | 0 |
simonw/datasette | https://github.com/jokull/sedlabanki-data | 2021-03-29T07:36:47Z | 2021-05-06T20:21:12Z | 1 | 1 |
simonw/sqlite-utils | https://github.com/jokull/sedlabanki-data | 2021-03-29T07:36:47Z | 2021-05-06T20:21:12Z | 1 | 1 |
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;