home / github

Menu
  • Search all tables
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

10 rows where repo = 206202864 sorted by author_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

repo 1

  • inaturalist-to-sqlite · 10 ✖

author 1

  • simonw 10
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
d888c7c2f02aa0dfb1559603f02357cd0089da11 0.2.1 with tweaked dependency 2020-10-22T00:08:29Z 2020-10-22T00:08:29Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f inaturalist-to-sqlite 206202864 simonw 9599 web-flow 19864447
7d5f3480dc7022212d5fdcdeb9f3acf2744c4405 Release 0.2 2020-03-24T00:35:44Z 2020-03-24T00:35:44Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 inaturalist-to-sqlite 206202864 simonw 9599 simonw 9599
113bfbe5fe833e3c90a4ba364b2173d7cffe47a8 Fixed bug with conservation_status column 2020-03-24T00:35:14Z 2020-03-24T00:35:14Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 inaturalist-to-sqlite 206202864 simonw 9599 simonw 9599
a56d4394438f34abf175c6fdba0d5c2096d46133 Updated to sqlite-utils 2.x 2020-03-24T00:28:39Z 2020-03-24T00:28:39Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 inaturalist-to-sqlite 206202864 simonw 9599 simonw 9599
ce55b96ebeee79275307a406cd1ae88e511e147c Preparing release 0.1a 2019-09-04T04:03:31Z 2019-09-04T04:03:31Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 inaturalist-to-sqlite 206202864 simonw 9599 simonw 9599
a7b00b7bd95121ee2e39cf01498e77945c9d67f6 Added observations_with_photos view Optimized for use with datasette-json-html 2019-09-04T03:52:40Z 2019-09-04T03:52:40Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 inaturalist-to-sqlite 206202864 simonw 9599 simonw 9599
309bddb71e21f79dc6aa16d53413959929809663 Guess medium_url from /square.jpg regular url 2019-09-04T03:41:56Z 2019-09-04T03:41:56Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 inaturalist-to-sqlite 206202864 simonw 9599 simonw 9599
f7af9fa164739a09d5e83bc5be64fede4b7f795b Removed obsolete import 2019-09-04T03:34:07Z 2019-09-04T03:34:07Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 inaturalist-to-sqlite 206202864 simonw 9599 simonw 9599
5ff02db0ed251c9cbf494f932028e576692addf9 Removed obsolete code, applied black 2019-09-04T03:32:14Z 2019-09-04T03:32:14Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 inaturalist-to-sqlite 206202864 simonw 9599 simonw 9599
aa36ab8eacaf61643b81f639bbc60dc820741091 First working version 2019-09-04T01:17:22Z 2019-09-04T01:17:22Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 inaturalist-to-sqlite 206202864 simonw 9599 simonw 9599

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 19.81ms · About: github-to-sqlite