{"html_url": "https://github.com/dogsheep/dogsheep-photos/issues/1#issuecomment-623193947", "issue_url": "https://api.github.com/repos/dogsheep/dogsheep-photos/issues/1", "id": 623193947, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzE5Mzk0Nw==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T22:36:17Z", "updated_at": "2020-05-03T22:36:17Z", "author_association": "MEMBER", "body": "I'm going to use [osxphotos](https://github.com/RhetTbull/osxphotos) for this.\r\n\r\nSince I've already got code to upload photos and insert them into a table based on their `sha256` hash, my first go at this will be to import data using the tool and foreign-key it to the `sha256` hash in the existing table.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 602533300, "label": "Import photo metadata from Apple Photos into SQLite"}, "performed_via_github_app": null} {"html_url": "https://github.com/dogsheep/dogsheep-photos/issues/1#issuecomment-623195197", "issue_url": "https://api.github.com/repos/dogsheep/dogsheep-photos/issues/1", "id": 623195197, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzE5NTE5Nw==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T22:44:33Z", "updated_at": "2020-05-03T22:44:33Z", "author_association": "MEMBER", "body": "Command will be this:\r\n\r\n $ photos-to-sqlite apple-photos photos.db\r\n\r\nThis will populate a `apple_photos` table with the data imported by the `osxphotos` library, plus the calculated sha256.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 602533300, "label": "Import photo metadata from Apple Photos into SQLite"}, "performed_via_github_app": null} {"html_url": "https://github.com/dogsheep/dogsheep-photos/issues/1#issuecomment-623198653", "issue_url": "https://api.github.com/repos/dogsheep/dogsheep-photos/issues/1", "id": 623198653, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzE5ODY1Mw==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T23:09:57Z", "updated_at": "2020-05-03T23:09:57Z", "author_association": "MEMBER", "body": "For locations: I'll add `place_x` columns for all of these:\r\n```\r\n(Pdb) photo.place.address._asdict()\r\n{'street': None, 'sub_locality': None, 'city': 'Loreto', 'sub_administrative_area': 'Loreto', 'state_province': 'BCS', 'postal_code': None, 'country': 'Mexico', 'iso_country_code': 'MX'}\r\n```", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 602533300, "label": "Import photo metadata from Apple Photos into SQLite"}, "performed_via_github_app": null} {"html_url": "https://github.com/dogsheep/dogsheep-photos/issues/1#issuecomment-623198986", "issue_url": "https://api.github.com/repos/dogsheep/dogsheep-photos/issues/1", "id": 623198986, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzE5ODk4Ng==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T23:12:31Z", "updated_at": "2020-05-03T23:12:46Z", "author_association": "MEMBER", "body": "To get the taken date in UTC:\r\n```\r\nfrom datetime import timezone\r\n(Pdb) photo.date.astimezone(timezone.utc).isoformat()\r\n'2018-02-13T20:21:31.620000+00:00'\r\n(Pdb) photo.date.astimezone(timezone.utc).isoformat().split(\".\")\r\n['2018-02-13T20:21:31', '620000+00:00']\r\n(Pdb) photo.date.astimezone(timezone.utc).isoformat().split(\".\")[0]\r\n'2018-02-13T20:21:31'\r\n(Pdb) photo.date.astimezone(timezone.utc).isoformat().split(\".\")[0] + \"+00:00\"\r\n'2018-02-13T20:21:31+00:00'\r\n\r\n```", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 602533300, "label": "Import photo metadata from Apple Photos into SQLite"}, "performed_via_github_app": null} {"html_url": "https://github.com/dogsheep/dogsheep-photos/issues/1#issuecomment-623199214", "issue_url": "https://api.github.com/repos/dogsheep/dogsheep-photos/issues/1", "id": 623199214, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzE5OTIxNA==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T23:14:08Z", "updated_at": "2020-05-03T23:14:08Z", "author_association": "MEMBER", "body": "Albums have UUIDs:\r\n```\r\n(Pdb) photo.album_info[0].__dict__\r\n{'_uuid': '17816791-ABF3-447B-942C-9FA8065EEBBA', '_db': osxphotos.PhotosDB(dbfile='/Users/simon/Pictures/Photos Library.photoslibrary/database/photos.db'), '_title': 'Geotaggable Photos geotagged'}\r\n```", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 602533300, "label": "Import photo metadata from Apple Photos into SQLite"}, "performed_via_github_app": null} {"html_url": "https://github.com/dogsheep/dogsheep-photos/issues/1#issuecomment-623199701", "issue_url": "https://api.github.com/repos/dogsheep/dogsheep-photos/issues/1", "id": 623199701, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzE5OTcwMQ==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T23:17:38Z", "updated_at": "2020-05-03T23:17:38Z", "author_association": "MEMBER", "body": "Record burst_uuid as a column:\r\n```\r\n(Pdb) with_bursts[0]._info[\"burstUUID\"]\r\n'703FAA23-57BF-40B4-8A33-D9CEB143391B'\r\n```", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 602533300, "label": "Import photo metadata from Apple Photos into SQLite"}, "performed_via_github_app": null} {"html_url": "https://github.com/dogsheep/dogsheep-photos/issues/1#issuecomment-623199750", "issue_url": "https://api.github.com/repos/dogsheep/dogsheep-photos/issues/1", "id": 623199750, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzE5OTc1MA==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T23:17:58Z", "updated_at": "2020-05-03T23:17:58Z", "author_association": "MEMBER", "body": "Reading this source code is really useful for figuring out how to store a photo in a DB table: https://github.com/RhetTbull/osxphotos/blob/7444b6d173918a3ad2a07aefce5ecf054786c787/osxphotos/photoinfo.py", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 602533300, "label": "Import photo metadata from Apple Photos into SQLite"}, "performed_via_github_app": null} {"html_url": "https://github.com/dogsheep/github-to-sqlite/issues/38#issuecomment-623038148", "issue_url": "https://api.github.com/repos/dogsheep/github-to-sqlite/issues/38", "id": 623038148, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzAzODE0OA==", "user": {"value": 5779832, "label": "zzeleznick"}, "created_at": "2020-05-03T01:18:57Z", "updated_at": "2020-05-03T01:18:57Z", "author_association": "NONE", "body": "Thanks, @simonw! \r\n\r\nI feel a little foolish in hindsight, but I'm on the same page now and am glad to have discovered first-hand a motivation for this `repos_starred` use case.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 611284481, "label": "[Feature Request] Support Repo Name in Search \ud83e\udd7a"}, "performed_via_github_app": null} {"html_url": "https://github.com/dogsheep/github-to-sqlite/issues/38#issuecomment-623038378", "issue_url": "https://api.github.com/repos/dogsheep/github-to-sqlite/issues/38", "id": 623038378, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzAzODM3OA==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T01:21:13Z", "updated_at": "2020-05-03T01:21:13Z", "author_association": "MEMBER", "body": "No this is really useful feedback! I'm so close to this project that I miss what's not obvious to people dropping in for the first time.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 611284481, "label": "[Feature Request] Support Repo Name in Search \ud83e\udd7a"}, "performed_via_github_app": null} {"html_url": "https://github.com/dogsheep/github-to-sqlite/issues/38#issuecomment-623044643", "issue_url": "https://api.github.com/repos/dogsheep/github-to-sqlite/issues/38", "id": 623044643, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzA0NDY0Mw==", "user": {"value": 5779832, "label": "zzeleznick"}, "created_at": "2020-05-03T02:34:32Z", "updated_at": "2020-05-03T02:34:32Z", "author_association": "NONE", "body": "1. More than glad to share feedback from the sidelines as a [starrer](https://github-to-sqlite.dogsheep.net/github?sql=select%0D%0A++starred_at%2C%0D%0A++starred_by%2C%0D%0A++full_name+as+repo_name%0D%0Afrom%0D%0A++repos_starred%0D%0Awhere%0D%0A++starred_by+%3D+%22zzeleznick%22%0D%0Aorder+by%0D%0A++starred_at+desc). \r\n\r\n```\r\n-- Motivation:\r\n-- Datasette is a data hammer and I'm looking for nails\r\n-- e.g. Find which repos a user has starred => trigger a TBD downstream action\r\nselect\r\n starred_at,\r\n starred_by,\r\n full_name as repo_name\r\nfrom\r\n repos_starred\r\nwhere\r\n starred_by = \"zzeleznick\"\r\norder by\r\n starred_at desc\r\n``` \r\n\r\n| starred_at | starred_by | repo_name |\r\n| --- | --- | --- |\r\n| 2020-02-11T01:08:59Z | zzeleznick | dogsheep/twitter-to-sqlite |\r\n| 2020-01-11T21:57:34Z | zzeleznick | simonw/datasette |\r\n\r\n2. In my day job, I use [airflow](https://github.com/apache/airflow), and that's the mental model I'm bringing to [datasette](https://github.com/simonw/datasette). \r\n\r\n3. I see your project like [twitter-to-sqlite](https://github.com/dogsheep/twitter-to-sqlite) akin to [Operators](https://airflow.apache.org/docs/stable/_api/index.html#pythonapi-operators) in Airflow world.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 611284481, "label": "[Feature Request] Support Repo Name in Search \ud83e\udd7a"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/datasette/issues/151#issuecomment-623044858", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/151", "id": 623044858, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzA0NDg1OA==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T02:37:03Z", "updated_at": "2020-05-03T02:37:03Z", "author_association": "OWNER", "body": "I'm going to put this at `/-/patterns`, which will render a template called `patterns.html`.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 276718605, "label": "Set up a pattern portfolio"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/datasette/issues/151#issuecomment-623047233", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/151", "id": 623047233, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzA0NzIzMw==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T03:11:16Z", "updated_at": "2020-05-03T03:11:16Z", "author_association": "OWNER", "body": "Now live at https://latest.datasette.io/-/patterns", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 276718605, "label": "Set up a pattern portfolio"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/sqlite-utils/issues/107#issuecomment-623127140", "issue_url": "https://api.github.com/repos/simonw/sqlite-utils/issues/107", "id": 623127140, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzEyNzE0MA==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T15:27:22Z", "updated_at": "2020-05-03T15:27:22Z", "author_association": "OWNER", "body": "Syntax:\r\n\r\n $ sqlite-utils create-view my.db myview \"select sqlite_version()\"\r\n\r\nAlso accepts `--replace` and `--ignore` options, same as `create-table`.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 611222968, "label": "sqlite-utils create-view CLI command"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/sqlite-utils/issues/107#issuecomment-623128528", "issue_url": "https://api.github.com/repos/simonw/sqlite-utils/issues/107", "id": 623128528, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzEyODUyOA==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T15:36:58Z", "updated_at": "2020-05-03T15:36:58Z", "author_association": "OWNER", "body": "Documentation: https://github.com/simonw/sqlite-utils/blob/d16097231c5e51ea857b58c700f97a17b68dc583/docs/cli.rst#creating-views", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 611222968, "label": "sqlite-utils create-view CLI command"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/sqlite-utils/issues/108#issuecomment-623050375", "issue_url": "https://api.github.com/repos/simonw/sqlite-utils/issues/108", "id": 623050375, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzA1MDM3NQ==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T03:59:16Z", "updated_at": "2020-05-03T03:59:27Z", "author_association": "OWNER", "body": "```\r\nimport re\r\nr = re.compile(r'\\$ sqlite-utils (\\S+) ')\r\nrst = open(\"docs/cli.rst\").read()\r\n{command for command in r.findall(rst) if \".\" not in command and \":\" not in command}\r\n```\r\nOutputs:\r\n```\r\n{'add-column',\r\n 'add-foreign-key',\r\n 'create-index',\r\n 'disable-fts',\r\n 'enable-fts',\r\n 'index-foreign-keys',\r\n 'insert',\r\n 'optimize',\r\n 'populate-fts',\r\n 'query',\r\n 'rows',\r\n 'tables',\r\n 'vacuum',\r\n 'views'}\r\n```\r\n", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 611326701, "label": "Documentation unit tests for CLI commands"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/sqlite-utils/issues/108#issuecomment-623050458", "issue_url": "https://api.github.com/repos/simonw/sqlite-utils/issues/108", "id": 623050458, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzA1MDQ1OA==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T04:00:32Z", "updated_at": "2020-05-03T04:00:32Z", "author_association": "OWNER", "body": "```\r\nfrom sqlite_utils import cli\r\ncli.cli.commands.keys() \r\n```\r\nOutputs:\r\n``` \r\ndict_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'])\r\n```", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 611326701, "label": "Documentation unit tests for CLI commands"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/sqlite-utils/issues/27#issuecomment-623048530", "issue_url": "https://api.github.com/repos/simonw/sqlite-utils/issues/27", "id": 623048530, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzA0ODUzMA==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T03:30:31Z", "updated_at": "2020-05-03T03:30:31Z", "author_association": "OWNER", "body": "Copy the design for `--not-null` and `--default` from the `insert` command:\r\n```\r\n$ sqlite-utils insert dogs.db dogs_with_scores dogs-with-scores.json \\\r\n --not-null=age \\\r\n --not-null=name \\\r\n --default age 2 \\\r\n --default score 5\r\n```", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 455496504, "label": "sqlite-utils create-table command"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/sqlite-utils/issues/27#issuecomment-623049505", "issue_url": "https://api.github.com/repos/simonw/sqlite-utils/issues/27", "id": 623049505, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzA0OTUwNQ==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T03:45:32Z", "updated_at": "2020-05-03T03:45:32Z", "author_association": "OWNER", "body": "Could take `--ignore` to ignore if table already exists, and `--replace` to drop and replace it if it exists.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 455496504, "label": "sqlite-utils create-table command"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/sqlite-utils/issues/27#issuecomment-623051392", "issue_url": "https://api.github.com/repos/simonw/sqlite-utils/issues/27", "id": 623051392, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzA1MTM5Mg==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T04:15:05Z", "updated_at": "2020-05-03T04:15:05Z", "author_association": "OWNER", "body": "I need tests for what happens if table already exists, or if the user provides invalid column types.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 455496504, "label": "sqlite-utils create-table command"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/sqlite-utils/issues/27#issuecomment-623051447", "issue_url": "https://api.github.com/repos/simonw/sqlite-utils/issues/27", "id": 623051447, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzA1MTQ0Nw==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T04:15:52Z", "updated_at": "2020-05-03T04:15:52Z", "author_association": "OWNER", "body": "Supporting `--fk colname othertable othercol` would be neat too.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 455496504, "label": "sqlite-utils create-table command"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/sqlite-utils/issues/27#issuecomment-623051550", "issue_url": "https://api.github.com/repos/simonw/sqlite-utils/issues/27", "id": 623051550, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzA1MTU1MA==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T04:17:18Z", "updated_at": "2020-05-03T04:17:18Z", "author_association": "OWNER", "body": "Be nice if you could do `--fk colname` and have it guess the rest, but I'm not sure how to do that with a CLI option - they need a fixed number of arguments so that they don't consume the next batch of options.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 455496504, "label": "sqlite-utils create-table command"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/sqlite-utils/issues/27#issuecomment-623120166", "issue_url": "https://api.github.com/repos/simonw/sqlite-utils/issues/27", "id": 623120166, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzEyMDE2Ng==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T14:38:59Z", "updated_at": "2020-05-03T14:38:59Z", "author_association": "OWNER", "body": "I'll stick with requiring all three fk arguments.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 455496504, "label": "sqlite-utils create-table command"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/sqlite-utils/issues/27#issuecomment-623126943", "issue_url": "https://api.github.com/repos/simonw/sqlite-utils/issues/27", "id": 623126943, "node_id": "MDEyOklzc3VlQ29tbWVudDYyMzEyNjk0Mw==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2020-05-03T15:25:55Z", "updated_at": "2020-05-03T15:25:55Z", "author_association": "OWNER", "body": "Documentation: https://github.com/simonw/sqlite-utils/blob/78264b738cd72ffad6e5c32ede3f074f8aad0ca4/docs/cli.rst#creating-tables", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 455496504, "label": "sqlite-utils create-table command"}, "performed_via_github_app": null}