repos_starred (view)
2 rows where description = "Save data from GitHub to a SQLite database" and "starred_at" is on date 2021-12-10
This data as json, CSV (advanced)
Suggested facets: starred_at (date), created_at (date), pushed_at (date), topics (array)
starred_at | starred_by | id | node_id | name | full_name | private | owner | html_url | description | fork | created_at | updated_at | pushed_at | homepage | size | stargazers_count | watchers_count | language | has_issues | has_projects | has_downloads | has_wiki | has_pages | forks_count | archived | disabled | open_issues_count | license | topics | forks | open_issues | watchers | default_branch | permissions | organization | temp_clone_token | allow_squash_merge | allow_merge_commit | allow_rebase_merge | delete_branch_on_merge | network_count | subscribers_count | parent | source | allow_auto_merge | allow_forking | visibility | is_template | template_repository | allow_update_branch | use_squash_pr_title_as_default | web_commit_signoff_required | squash_merge_commit_title | merge_commit_title | has_discussions | security_and_analysis |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2021-12-10T13:37:03Z | TenviLi | 207052882 | MDEwOlJlcG9zaXRvcnkyMDcwNTI4ODI= | github-to-sqlite | dogsheep/github-to-sqlite | 0 | 53015001 | https://github.com/dogsheep/github-to-sqlite | Save data from GitHub to a SQLite database | 0 | 2019-09-08T02:50:28Z | 2023-07-04T02:50:54Z | 2023-04-26T17:36:17Z | https://github-to-sqlite.dogsheep.net/ | 150 | 314 | 314 | Python | 1 | 1 | 1 | 1 | 0 | 38 | 0 | 0 | 23 | apache-2.0 | ["datasette", "datasette-io", "datasette-tool", "dogsheep", "github-api", "sqlite"] | 38 | 23 | 314 | main | {"admin": true, "maintain": true, "push": true, "triage": true, "pull": true} | 53015001 | 1 | 1 | 1 | 0 | 38 | 7 | 0 | 1 | public | 0 | 0 | 0 | 0 | COMMIT_OR_PR_TITLE | MERGE_MESSAGE | 0 | {"secret_scanning": {"status": "disabled"}, "secret_scanning_push_protection": {"status": "disabled"}, "dependabot_security_updates": {"status": "enabled"}} | ||||
2021-12-10T13:13:20Z | kaxil | 207052882 | MDEwOlJlcG9zaXRvcnkyMDcwNTI4ODI= | github-to-sqlite | dogsheep/github-to-sqlite | 0 | 53015001 | https://github.com/dogsheep/github-to-sqlite | Save data from GitHub to a SQLite database | 0 | 2019-09-08T02:50:28Z | 2023-07-04T02:50:54Z | 2023-04-26T17:36:17Z | https://github-to-sqlite.dogsheep.net/ | 150 | 314 | 314 | Python | 1 | 1 | 1 | 1 | 0 | 38 | 0 | 0 | 23 | apache-2.0 | ["datasette", "datasette-io", "datasette-tool", "dogsheep", "github-api", "sqlite"] | 38 | 23 | 314 | main | {"admin": true, "maintain": true, "push": true, "triage": true, "pull": true} | 53015001 | 1 | 1 | 1 | 0 | 38 | 7 | 0 | 1 | public | 0 | 0 | 0 | 0 | COMMIT_OR_PR_TITLE | MERGE_MESSAGE | 0 | {"secret_scanning": {"status": "disabled"}, "secret_scanning_push_protection": {"status": "disabled"}, "dependabot_security_updates": {"status": "enabled"}} |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW repos_starred AS select stars.starred_at, starring_user.login as starred_by, repos.* from repos join stars on repos.id = stars.repo join users as starring_user on stars.user = starring_user.id join users on repos.owner = users.id order by starred_at desc;