home / github

Menu
  • Search all tables
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

6 rows where "author_date" is on date 2020-10-09, raw_committer = "cd792325681cbad9f663f2879d8b69f1edbb678f" and repo = 107914493 sorted by author_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: author_date (date), committer_date (date)

repo 1

  • datasette · 6 ✖

author 1

  • simonw 6
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
549a007683e38fd13da72be7b2f5ee1adb1484c5 Clarify that datasette.client HTTP calls are simulated 2020-10-09T23:13:41Z 2020-10-09T23:13:41Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
99488de329fa252f54db3166e46da468aa512388 Link to 0.50 annotated release notes 2020-10-09T21:50:19Z 2020-10-09T21:50:19Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
ef76c9ea571eeefe136a18202f87ea8c4ef80ace Link to annotated release notes 2020-10-09T21:49:13Z 2020-10-09T21:49:13Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
6421ca2b22a8ebd801ca17b2ea38a98d353f1faa Use actions/setup-python@v2 to deploy latest This should fix an error with Python 3.9. 2020-10-09T16:28:17Z 2020-10-09T16:28:17Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
6e091b14b651d67e0ff41a353d36bbeb1d8ba235 Run tests against Python 3.9 2020-10-09T16:22:49Z 2020-10-09T16:22:49Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
8f97b9b58e77f82fef1f10e9c9f6754b993544b6 datasette.client internal requests mechanism Closes #943 * Datasette now requires httpx>=0.15 * Support OPTIONS without 500, closes #1001 * Added internals tests for datasette.client methods * Datasette's own test mechanism now uses httpx to simulate requests * Tests simulate HTTP 1.1 now * Added base_url in a bunch more places * Mark some tests as xfail - will remove that when new httpx release ships: #1005 2020-10-09T16:11:24Z 2020-10-09T16:11:24Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [commits] (
   [sha] TEXT PRIMARY KEY,
   [message] TEXT,
   [author_date] TEXT,
   [committer_date] TEXT,
   [raw_author] TEXT REFERENCES [raw_authors]([id]),
   [raw_committer] TEXT REFERENCES [raw_authors]([id]),
   [repo] INTEGER REFERENCES [repos]([id]),
   [author] INTEGER REFERENCES [users]([id]),
   [committer] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_commits_committer]
                ON [commits] ([committer]);
CREATE INDEX [idx_commits_author]
                ON [commits] ([author]);
CREATE INDEX [idx_commits_repo]
                ON [commits] ([repo]);
CREATE INDEX [idx_commits_raw_committer]
                ON [commits] ([raw_committer]);
CREATE INDEX [idx_commits_raw_author]
                ON [commits] ([raw_author]);
Powered by Datasette · Queries took 41.371ms · About: github-to-sqlite