home / github

Menu
  • Search all tables
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

205 rows where committer = 19864447 and repo = 140912432 sorted by author_date descending

✖
✖
✖

✎ View and edit SQL

This data as json, CSV (advanced)

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

author >30

  • simonw 169
  • eyeseast 4
  • simonwiles 3
  • EdwardBetts 1
  • jayvdb 1
  • shakeel 1
  • adamwolf 1
  • spookylukey 1
  • mfa 1
  • tsibley 1
  • yurivish 1
  • tomviner 1
  • mcarpenter 1
  • meatcar 1
  • humitos 1
  • j-e-d 1
  • fgregg 1
  • numist 1
  • mcint 1
  • dbready 1
  • davidleejy 1
  • robjwells 1
  • minaeid90 1
  • nezhar 1
  • dylan-wu 1
  • chapmanjacobd 1
  • rhoboro 1
  • asg017 1
  • DeNeutoy 1
  • tkhattra 1
  • …

repo 1

  • sqlite-utils · 205 ✖
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
1500c19bd0f31b2e7f28a5ec2d7bfa133a2e4d4c Add more STRICT table support (#604) * Add more STRICT table support per https://github.com/simonw/sqlite-utils/issues/344#issuecomment-982014776. * Make `table.transform()` preserve STRICT mode. * Fix mypy failures in PR #604 * Link to SQLITE strict page in a few places 2023-12-08T05:05:27Z 2023-12-08T05:05:27Z Taj Khattra 77887d00c62b181af66df54bd6325b314eb5b25e GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 tkhattra 16437338 web-flow 19864447
9286c1ba432e890b1bb4b2a1f847b15364c1fa18 Fixed some markup bugs 2023-11-04T03:55:19Z 2023-11-04T03:55:19Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
347fdc865e91b8d3410f49a5c9d5b499fbb594c1 Map datetime.timedelta to text columns, closes #522 2023-11-04T00:49:50Z 2023-11-04T00:49:50Z Harald Nezbeda c05f3ac9fd9e1c01f58129c9f0e6965fe888c4d8 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 nezhar 4420927 web-flow 19864447
37273d7f63f08872aa1c90c4233a0580e384ac19 Fixed issue #433 - CLI eats cursor (#598) The issue is that underlying iterator is not fully consumed within the body of the `with file_progress()` block. Instead, that block creates generator expressions like `docs = (dict(zip(headers, row)) for row in reader)` These iterables are consumed later, outside the `with file_progress()` block, which consumes the underlying iterator, and in turn updates the progress bar. This means that the `ProgressBar.__exit__` method gets called before the last time the `ProgressBar.update` method gets called. The result is that the code to make the cursor invisible (inside the `update()` method) is called after the cleanup code to make it visible (in the `__exit__` method). The fix is to move consumption of the `docs` iterators within the progress bar block. (An additional fix, to make ProgressBar more robust against this kind of misuse, would to make it refusing to update after its `__exit__` method had been called, just like files cannot be `read()` after they are closed. That requires a in the click library). 2023-11-04T00:40:29Z 2023-11-04T00:40:29Z Luke Plant 189bbd99f415a97bb6554c438654cb35fc4c85ae GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 spookylukey 62745 web-flow 19864447
1c6ea54338e24fcebcee4e2f9c170ee300a5d946 .transform() now preserves rowid values * .transform() now preserves rowid values, refs #592 * Test transform rowids against different table types, closes #592 2023-09-09T00:45:30Z 2023-09-09T00:45:30Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
5d123f031fc4fadc98f508e0ef6b7b6671e86155 Fixed bug in replacing foreign key constraints example 2023-09-06T22:33:06Z 2023-09-06T22:33:06Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
02e56d1158b74175b15dd2e954ed7137c1089ed5 click-default-group>=1.2.3 Refs: - https://github.com/click-contrib/click-default-group/issues/21 2023-09-06T02:34:53Z 2023-09-06T02:34:53Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
1260bdc7bfe31c36c272572c6389125f8de6ef71 Link to sqlite-utils-fast-fks from changelog 2023-08-18T17:47:10Z 2023-08-18T17:47:10Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
98cd11a81ba553a8b4b5e7b88c447867256318a7 Link docs to sqlite-utils-fast-fks 2023-08-18T17:45:12Z 2023-08-18T17:45:12Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
7c1618e4b1f390cf9cf204a2e9b6df2abaebe365 Promote plugins in the README 2023-08-18T02:28:08Z 2023-08-18T02:28:08Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
509857ee8724f73760f3631b69c26f9047381187 .add_foreign_keys() uses .transform() instead of PRAGMA writable_schema Closes #577 This should solve all sorts of problems seen by users of platforms that throw errors on writable_schema. Also added `add_foreign_keys=` and `foreign_keys=` parameters to `table.transform()`. 2023-08-18T00:48:08Z 2023-08-18T00:48:08Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
fba26d3564dc8faa6c514fa59df944381a9e0c00 Typo in release notes 2023-07-25T05:54:13Z 2023-07-25T05:54:13Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
8bee14588687b66c54c7a3dfae5de2f9cc7cac3f Link 3.34 notes to new blog entry 2023-07-24T17:22:20Z 2023-07-24T17:22:20Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
3f80a026983d3e634f05a46f2a6da162b5139dd9 prepare_connection plugin hook Closes: - #574 Refs #567 --------- Co-authored-by: Simon Willison <swillison@gmail.com> 2023-07-22T22:59:08Z 2023-07-22T22:59:08Z Alex Garcia aa206886100eb0f7f5e54172b068d9dd45885448 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 asg017 15178711 web-flow 19864447
f5c63088e1454811ce8361208b72297408eb5237 Use sqlean if available in environment (#560) Closes #559 Closes #235 Refs https://github.com/simonw/llm/issues/60 - Uses `sqlean` in place of `sqlite3` if `sqlean.py` is installed - Uses `sqlite-dump` if available and `conn.iterdump()` does not exist - New `with db.ensure_autocommit_off()` method for ensuring autocommit is off, used by `enable_wal()` and `disable_wal()`. 2023-06-25T23:25:51Z 2023-06-25T23:25:51Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
d8fe1b0d899faaaa3d4714a39328f4c24932278f Reformatted CLI examples in docs Closes #551 2023-05-21T20:57:22Z 2023-05-21T20:57:22Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
718b0cba9b32d97a41bcf9757c97fe1d058da81c Experimental TUI powered by Trogon * sqlite-utils tui command if Trogon is installed, closes #545 * Documentation for trogon TUI * Screenshot of TUI * Ignore trogon mypy error * only run flake8 on Python 3.8 or higher, closes #550 2023-05-21T18:41:56Z 2023-05-21T18:41:56Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
d2a7b15b2b930fe384e1f1715fc4af23386f4935 Analyze tables options: --common-limit, --no-most, --no-least Closes #544 2023-05-21T16:19:30Z 2023-05-21T16:19:30Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
e047cc32e9d5de7025d4d3c16554d4290f4bd3d1 backwards-incompatible, not compatible 2023-05-09T21:08:31Z 2023-05-09T21:08:31Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
02f5c4d69d7b4baebde015c56e5bc62923f33314 Support repeated calls to Table.convert() * Test repeated calls to Table.convert() * Register Table.convert() functions under their own `lambda_hash` name * Raise exception on registering identical function names Refs #525 2023-05-08T21:53:58Z 2023-05-08T21:53:58Z Martin Carpenter 48e7f08226a63f00be8a5f44380ce11412c62eaf GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 mcarpenter 167893 web-flow 19864447
6500fed8b2085869b9714ce3a08c30f61dc829ad Transform no longer breaks non-string default values Closes #509 2023-05-08T21:13:36Z 2023-05-08T21:13:36Z rhoboro f98e0e8fe6ee48ca1f752bb408eecbbd294f9ceb GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 rhoboro 13819005 web-flow 19864447
39ef137e6760d385dc48d03eccf9b89943636fc7 Support self-referencing FKs in `create` (#537) 2023-05-08T21:10:00Z 2023-05-08T21:10:00Z Scott Perry b9c77b970cf91e2e44d83118464578123130e5fe GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 numist 544011 web-flow 19864447
80763edaa2bdaf1113717378b8d62075c4dcbcfb Different approach for Python 3.11 on ReadTheDocs Refs #540 2023-05-07T18:40:47Z 2023-05-07T18:40:47Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
963518bb16dc933694955309e7c9559e551b6a8e Build with 3.11 on ReadTheDocs Refs #540 2023-05-07T18:38:54Z 2023-05-07T18:38:54Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
8f9a729e8aff972cb18de25b40f4113e26bbc758 Add paths for homebrew on Apple silicon (#536) 2023-04-13T01:44:43Z 2023-04-13T01:44:43Z Chris Amico 90786fb02407ad60f10210c0592ee711a9a36fae GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 eyeseast 25778 web-flow 19864447
c0251cc9271260de73b4227859a51fab9b4cb745 Link /latest/ to /stable/ - refs #388 2023-03-26T23:42:01Z 2023-03-26T23:42:01Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
52ddb0b9ffa5284be668da088b7600b6ff64a2f9 Rename utility functions to library 2022-11-15T15:53:38Z 2022-11-15T15:53:38Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
529110e7d8c4a6b1bbf5fb61f2e29d72aa95a611 GitHub Actions has Python 3.11 on macOS now Refs https://github.com/actions/setup-python/issues/531 2022-10-26T19:27:32Z 2022-10-26T19:27:32Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
fb8f495582f68d8d49f57b42d12a66802f9ac238 Skip macOS 3.11 test when publishing Refs #505 2022-10-25T22:34:30Z 2022-10-25T22:34:30Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
5133339d00252cb258a4217eda830ac60f43ee1f Skip macos-latest Python 3.11 for the moment Refs https://github.com/actions/setup-python/issues/531 2022-10-25T19:08:58Z 2022-10-25T19:08:58Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
b8526c434a3d6aafb4102f9d9f5da14dfc4e3002 Test against Python 3.11 2022-10-25T14:17:49Z 2022-10-25T14:17:49Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
d792dad1cf5f16525da81b1e162fb71d469995f3 Clarify wording 2022-09-27T02:23:17Z 2022-09-27T02:23:17Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
cbed0807822dd3ba0e51b99c6b28125422f690f0 Typo 2022-09-27T00:10:59Z 2022-09-27T00:10:59Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
0b315d3fa83c1584eaeec32f24912898621e437a progressbar for inserts/upserts of other file formats * progressbar for inserts/upserts of other file formats, closes #485 * Pin to Python 3.10.6 for the moment as workaround for mypy error Co-authored-by: Simon Willison <swillison@gmail.com> 2022-09-15T20:37:51Z 2022-09-15T20:37:51Z Mischa Untaga e7784035c9ce3ef64d906c543907d5025673d054 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 MischaU8 99098079 web-flow 19864447
5b969273f1244b1bcf3e4dc071cdf17dab35d5f8 Markup tweak 2022-09-02T01:44:56Z 2022-09-02T01:44:56Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
686eed9a49faf87b0f2d3eba5fb12caa0250988f Typo in release notes 2022-09-02T01:37:13Z 2022-09-02T01:37:13Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
ecf1d40112e52a8f4e509c39b98caae996b7bc36 table.search_sql(include_rank=True) option (#480) * search_sql add include_rank option * add test * add FTS4 test * Apply Black Thanks, @chapmanjacobd 2022-08-31T03:40:35Z 2022-08-31T03:40:35Z Jacob Chapman aff9d2f73a18d2ec18afd0f3fefe046f37945a60 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 chapmanjacobd 7908073 web-flow 19864447
104f37fa4d2e7e5999c1d829267b62c737f74d3e db[table].create(..., transform=True) and create-table --transform Closes #467 2022-08-27T23:17:55Z 2022-08-27T23:17:55Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
c5f8a2eb1a81a18b52825cc649112f71fe419b12 in extract code, check equality witH IS instead of = for nulls (#455) sqlite "IS" is equivalent to SQL "IS NOT DISTINCT FROM" close #423 2022-08-27T14:45:03Z 2022-08-27T14:45:03Z Forest Gregg 88e22aeee75bfd8a1cdeae56a89d5509d1c1d1c4 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 fgregg 536941 web-flow 19864447
19dd077944429c1365b513d80cc71c605ae3bed3 Support entrypoints for `--load-extension` (#473) * Entrypoint support, closes #470 2022-08-27T05:55:47Z 2022-08-27T05:55:47Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
f4fb78fa95057fbc86c734020835a3155695297f Cross-link CLI to Python docs (#460) * Start cross-linking CLI to Python docs, refs #426 * More links to Python from CLI page, refs #426 2022-08-18T21:58:07Z 2022-08-18T21:58:07Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
f8ffac8787e299a62c99ed1ce914cd5ace84ad94 beanbag-docutils>=2.0 (#465) * beanbag-docutils>=2.0 Closes #464 2022-08-17T23:38:02Z 2022-08-17T23:38:02Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
83e7339255e811c62e6db8498c483c44a84d0f28 Use Read the Docs action v1 (#463) Read the Docs repository was renamed from `readthedocs/readthedocs-preview` to `readthedocs/actions/`. Now, the `preview` action is under `readthedocs/actions/preview` and is tagged as `v1` 2022-08-17T23:11:15Z 2022-08-17T23:11:15Z Manuel Kaufmann a9570db41e1b6fe56efd98307a0c1c3facf064e4 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 humitos 244656 web-flow 19864447
271433fdd18e436b0a527ab899cb6f6fa67f23d0 Discord badge (#462) 2022-08-02T21:15:52Z 2022-08-02T21:15:52Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
98a28cbfe6cea67f6334b42b74f35b0ddd309561 Oops, fixed project slug Refs: - https://github.com/readthedocs/readthedocs-preview/issues/10 - https://github.com/simonw/sqlite-utils/pull/460 2022-08-02T20:35:56Z 2022-08-02T20:35:56Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
1856002e3c0fcc9f09f72ab7d97ad8c75f6de7df readthedocs/readthedocs-preview Tip from https://twitter.com/readthedocs/status/1552354156056395778 2022-08-02T16:02:43Z 2022-08-02T16:02:43Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
1acc04c07124b17da0ca0cfbf34f38664d29fb7f Link to new tutorial Refs https://github.com/simonw/datasette.io/issues/108 2022-07-31T19:12:37Z 2022-07-31T19:12:37Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
77ca051d4f5ddbd42fd6250749efac7ea85ea094 Link to installation instructions (#457) 2022-07-27T17:57:50Z 2022-07-27T17:57:50Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
9e6cceac1c0e086429e2d308b700e59cc53a1991 Fixed incorrect issue number 2022-07-20T23:09:53Z 2022-07-20T23:09:53Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
b366e68deb0780048a23610c279552f8529d4726 table.duplicate(new_table_name) feature, closes #449 Thanks, @davidleejy 2022-07-15T21:21:36Z 2022-07-15T21:21:36Z David d4b26031589514477509e3dae9cde3678a3b610e GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 davidleejy 1690072 web-flow 19864447
575431149400fcccb87d69ac7325d81d97686ef6 Only syntax highlight if a code-block is used Refs #447 2022-06-21T15:00:17Z 2022-06-21T15:00:17Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
3fbe8a784cc2f3fa0bfa8612fec9752ff9068a2b Link to annotated release notes for 3.27 2022-06-19T03:30:24Z 2022-06-19T03:30:24Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
f142bb1212f98c1cb9ff72a3161351c5c8d1d281 flake8 fix, refs #440 2022-06-14T16:14:57Z 2022-06-14T16:14:57Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
7ddf5300886a32d6daf60cf1d71efe492b65c87e A less potentially confusing parameter name 2022-06-13T15:22:59Z 2022-06-13T15:22:59Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
9fedfc69d7239ac49900051e1c48ee9cdd470d9e docs to dogs (#437) 2022-05-30T21:32:41Z 2022-05-30T21:32:41Z Yuri 287c15deaf4abe1951327c443af0552f733317e7 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 yurivish 114388 web-flow 19864447
841ad44bacaff05ec79ef78166d12e80c82ba6d7 Fixed typo 2022-05-02T18:17:19Z 2022-05-02T18:17:19Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
ed6fd516082e8cc83b199798f62dd67728a6974f Depend on click-default-group-wheel (#429) To get this to work with Pyodide. Refs: https://github.com/simonw/click-default-group-wheel/issues/3 2022-05-02T18:05:00Z 2022-05-02T18:05:00Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
e3a14c33a033b0c2fc00f2470666caaf9027e446 Run tests against pull requests 2022-04-20T00:21:04Z 2022-04-20T00:21:04Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
396f80fcc60da8dd844577114f7920830a2e5403 Ignore common generated files (#419) Thanks, @eyeseast 2022-03-24T21:01:43Z 2022-03-24T21:01:43Z Chris Amico 90786fb02407ad60f10210c0592ee711a9a36fae GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 eyeseast 25778 web-flow 19864447
40b76f6f56e4a00da023396999a25989c83d91a6 Release 3.25.1 Refs #413 2022-03-11T18:08:20Z 2022-03-11T18:08:20Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
7f56f90d3030a4cf1d57a73e21e06843d4855e63 Fixed rST mistake 2022-03-02T07:01:07Z 2022-03-02T07:01:07Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
b6c9dfce0ba27eb5fb6bc2221044798420f861c4 Correct spelling mistakes (found with codespell) (#410) 2022-03-01T21:05:29Z 2022-03-01T21:05:29Z Edward Betts 51791e613746e8491727471d829230a5bd4eebe5 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 EdwardBetts 3818 web-flow 19864447
7a098aa0c5e8beef6ccc55c866cf7792af5fcf43 Link to my blog series 2022-02-17T15:39:54Z 2022-02-17T15:39:54Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
a692c56659c3563b26dcdc9e3534d63ecc26e180 Add SpatiaLite helpers to CLI (#407) * Add SpatiaLite CLI helpers * Add docs for spaitalite helpers * Fix flake8 issues and add more detail on spatial types * Run cog and add some help text. * Use SpatiaLite when calculating coverage, refs #407 Co-authored-by: Simon Willison <swillison@gmail.com> 2022-02-16T00:58:07Z 2022-02-16T00:58:07Z Chris Amico 90786fb02407ad60f10210c0592ee711a9a36fae GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 eyeseast 25778 web-flow 19864447
e46798959e10e4674b2a58a9c2f227c0a2deca1d Looks like Actions if: clauses prefer single quotes Refs #395, #79 2022-02-04T06:06:23Z 2022-02-04T06:06:23Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
749418728448abbbfa6305ad18152951a6721670 Only install SpatiaLite on Ubuntu, refs #395 For tests added to #79 2022-02-04T06:05:12Z 2022-02-04T06:05:12Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
4a2a3e2fd0d5534f446b3f1fee34cb165e4d86d2 Install SpatiaLite in tests To run tests for #79, #385 2022-02-04T05:56:34Z 2022-02-04T05:56:34Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
ee11274fcb1c00f32c95f2ef2924d5349538eb4d New spatialite helper methods, closes #79 - db.init_spatialite() - table.add_geometry_column() - table.create_spatial_index() Co-authored-by: Simon Willison <swillison@gmail.com> 2022-02-04T05:55:09Z 2022-02-04T05:55:09Z Chris Amico 90786fb02407ad60f10210c0592ee711a9a36fae GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 eyeseast 25778 web-flow 19864447
b2ab08e048228c3938b973dee12adb18729ebe39 Don't test main against 3.11-dev yet It breaks on Windows. Refs #394 2022-02-03T21:07:00Z 2022-02-03T21:07:00Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
44cbddff8ab6526f20f608e4d76592422af757bd Run tests against Python 3.11-dev Refs #394 2022-02-02T22:21:38Z 2022-02-02T22:21:38Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
a6da26a856c966598b2275b12558e65d3e61a682 Simplified example 2022-01-30T15:24:13Z 2022-01-30T15:24:13Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
feb01c1ddd2ba0a3c01518b6856520470d649bae Fixed duplicated example 2022-01-30T15:22:39Z 2022-01-30T15:22:39Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
6663d28952491aca2c8dcf586a301fb4791b5f69 SQL injection, not XSS 2022-01-30T15:17:20Z 2022-01-30T15:17:20Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
7fdff5019d7c9d609fb00b5c7fd64bcde029e4c8 Link to article from contributing, closes #386 2022-01-19T02:15:21Z 2022-01-19T02:15:21Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
5f38c8160138702810698249be27a3c71023b9e4 Fixed typo 2022-01-11T19:20:34Z 2022-01-11T19:20:34Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
5737a3aab4c32cabc05583a552905489eb76294c Link to annotated release notes 2022-01-11T19:18:35Z 2022-01-11T19:18:35Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
2448e45ddbc039a8acad49ea2af6f72dc14bcb3e upsert command, not update command 2022-01-11T18:06:50Z 2022-01-11T18:06:50Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
129141572f249ea290e2a075437e2ebaad215859 `sqlite-utils bulk` command * sqlite-utils bulk command, closes #375 * Refactor import_options and insert_upsert_options, refs #377 * Tests for sqlite-utils bulk, refs #377 * Documentation for sqlite-utils bulk, refs #377 2022-01-11T02:10:54Z 2022-01-11T02:10:54Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
6e46b9913411682f3a3ec66f4d58886c1db8654b Renamed ip to source in example code 2022-01-06T18:01:35Z 2022-01-06T18:01:35Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
f3fd8613113d21d44238a6ec54b375f5aa72c4e0 Removed unneccessary pytest-runner, closes #357 2021-12-16T20:43:12Z 2021-12-16T20:43:12Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
e328db8eba1fbf29a69eda95dfec861954f9e771 Improved schema example for sqlite-utils extract 2021-12-10T21:12:38Z 2021-12-10T21:12:38Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
33176ad47b9757f40ea016e7b8ec328229e60a74 Run pytest with colors Tip from https://twitter.com/cjolowicz/status/1461266663681187841 2021-11-19T08:09:16Z 2021-11-19T08:09:16Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
8f386a0d300d1b1c76132bb75972b755049fb742 Release 3.19a0 Refs #342 2021-11-19T07:27:41Z 2021-11-19T07:27:41Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
271b894af52eb6437ae6cd84eba9867ad8dd43f6 Map dict to TEXT Thanks, @minaeid90 2021-11-15T00:27:40Z 2021-11-15T00:27:40Z Mina Rizk 354fc054391e109f21a593b971cebb96f0dab254 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 minaeid90 2496189 web-flow 19864447
bc4c42d68879c710c851dba3c98deda96ca6caa8 Use python-dateutil package instead of dateutils (#324) 2021-11-14T23:25:40Z 2021-11-14T23:25:40Z Denys Pavlov 64b848f51063b81fd138f806322b4add4b5f1afd GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 meatcar 191622 web-flow 19864447
92aa5c9c5d26b0889c8c3d97c76a908d5f8af211 Fixed typo 2021-11-11T20:50:22Z 2021-11-11T20:50:22Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
fda4dad23a0494890267fbe8baf179e2b56ee914 Test against Python 3.10 (#330) * Test against Python 3.10 * Added 3.10 to classifiers * Test on Python 3.10 before publish 2021-10-13T22:25:05Z 2021-10-13T22:25:05Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
718a8f61bcaed39c04d5d223104056213f8c8516 Clarified description of --quote 2021-10-02T16:54:39Z 2021-10-02T16:54:39Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
49a010c93d90bc68ce1c6fff7639927248912b54 Ability to insert file contents as text, in addition to blob (#321) 2021-08-24T23:31:13Z 2021-08-24T23:31:13Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
d7b1024d3a9e092c030237410219a8ae376a4799 Corrected stdin example 2021-08-18T23:02:55Z 2021-08-18T23:02:55Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
b30f725d982309eb26ef0b985aadc0064df8e8f9 Small improvement to example 2021-08-18T23:02:07Z 2021-08-18T23:02:07Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
ddfdff657f34126c0b4c6f8361c2ca9e5d30c336 Fixed incorrecte output example 2021-08-18T23:01:00Z 2021-08-18T23:01:00Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
7479933bc4f708e9063d959c9d6fd3700ed6cc93 More sqlite-utils memory examples in README closes #294 2021-08-18T21:40:02Z 2021-08-18T21:40:02Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
53fec0d8639d2a66e322d05e1fcc8f34caa57815 db.quote_fts() method, thanks Mark Neumann Refs #296, closes #246. 2021-08-18T18:43:11Z 2021-08-18T18:43:11Z Mark Neumann 5a70455439f76d8dca83370bca6d17cd4c68a0a2 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 DeNeutoy 16001974 web-flow 19864447
1fe73c898b44695052f1a9ca832818d50cecf662 Remove link to older code example 2021-08-18T18:31:20Z 2021-08-18T18:31:20Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
7a19822ac9ee24be2fbb4c2326a0bf2f3d2d9c4d Updated tagline 2021-08-17T15:42:02Z 2021-08-17T15:42:02Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
7ee7b628e101863c73c2a95911bd2213de00fb1f Fixed some rogue backticks, closes #316 2021-08-14T05:10:47Z 2021-08-14T05:10:47Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
b966c44ef81bc6acbc4be95942afcf33b31e876f Minor markup fix 2021-08-13T11:32:40Z 2021-08-13T11:32:40Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
6de0a5d46a00a66d827c32deaca5cbd0ad2103ad Typo fix 2021-08-11T12:03:07Z 2021-08-11T12:03:07Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
af89c5f8513ad6c4228e5f8c8b6c9b5c98c12f63 How to create a Database instance 2021-08-11T11:56:54Z 2021-08-11T11:56:54Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447

Next page

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 107.149ms · About: github-to-sqlite
  • Sort ascending
  • Sort descending
  • Facet by this
  • Hide this column
  • Show all columns
  • Show not-blank rows