issue_comments
2 rows where issue = 611326701
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
id ▼ | html_url | issue_url | node_id | user | created_at | updated_at | author_association | body | reactions | issue | performed_via_github_app |
---|---|---|---|---|---|---|---|---|---|---|---|
623050375 | https://github.com/simonw/sqlite-utils/issues/108#issuecomment-623050375 | https://api.github.com/repos/simonw/sqlite-utils/issues/108 | MDEyOklzc3VlQ29tbWVudDYyMzA1MDM3NQ== | simonw 9599 | 2020-05-03T03:59:16Z | 2020-05-03T03:59:27Z | OWNER | ``` import re r = re.compile(r'\$ sqlite-utils (\S+) ') rst = open("docs/cli.rst").read() {command for command in r.findall(rst) if "." not in command and ":" not in command} ``` Outputs: ``` {'add-column', 'add-foreign-key', 'create-index', 'disable-fts', 'enable-fts', 'index-foreign-keys', 'insert', 'optimize', 'populate-fts', 'query', 'rows', 'tables', 'vacuum', 'views'} ``` | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Documentation unit tests for CLI commands 611326701 | |
623050458 | https://github.com/simonw/sqlite-utils/issues/108#issuecomment-623050458 | https://api.github.com/repos/simonw/sqlite-utils/issues/108 | MDEyOklzc3VlQ29tbWVudDYyMzA1MDQ1OA== | simonw 9599 | 2020-05-03T04:00:32Z | 2020-05-03T04:00:32Z | OWNER | ``` from sqlite_utils import cli cli.cli.commands.keys() ``` Outputs: ``` dict_keys(['tables', 'views', 'vacuum', 'optimize', 'add-column', 'add-foreign-key', 'index-foreign-keys', 'create-index', 'enable-fts', 'populate-fts', 'disable-fts', 'insert', 'upsert', 'create-table', 'query', 'rows']) ``` | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Documentation unit tests for CLI commands 611326701 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] ( [html_url] TEXT, [issue_url] TEXT, [id] INTEGER PRIMARY KEY, [node_id] TEXT, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [updated_at] TEXT, [author_association] TEXT, [body] TEXT, [reactions] TEXT, [issue] INTEGER REFERENCES [issues]([id]) , [performed_via_github_app] TEXT); CREATE INDEX [idx_issue_comments_issue] ON [issue_comments] ([issue]); CREATE INDEX [idx_issue_comments_user] ON [issue_comments] ([user]);