dependent_repos (view)
6 rows where "dependent_created" is on date 2023-07-05
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/duran-2020/my-code | 2023-07-05T23:15:15Z | 2023-07-06T17:39:05Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/pydev1996/Requisition | 2023-07-05T15:46:27Z | 2023-07-07T16:07:50Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/kanedata/airtable-to-sqlite | 2023-07-05T14:16:58Z | 2023-07-05T19:45:50Z | 1 | 1 |
simonw/datasette | https://github.com/itissid/Drop-PoT | 2023-07-05T11:34:27Z | 2023-09-08T19:23:33Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/itissid/Drop-PoT | 2023-07-05T11:34:27Z | 2023-09-08T19:23:33Z | 0 | 0 |
simonw/sqlite-utils | https://github.com/pannet1/xts-excel | 2023-07-05T06:46:07Z | 2023-07-05T06:55:20Z | 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;