Commit graph

410 commits

Author SHA1 Message Date
Simon Willison
43eae8b193 Release 2.23 2.23
Refs #189, #173, #191
2020-10-28 14:38:10 -07:00
Simon Willison
0789bad8f7 @db.register_function(deterministic=True), closes #191 2020-10-28 14:30:58 -07:00
Simon Willison
f99a236529
Progress bar for sqlite-utils insert command, closes #173 2020-10-27 11:16:02 -07:00
Simon Willison
c7e5dd6451 Applied latest Black 2020-10-27 09:26:01 -07:00
Adam Wolf
f045d8559a
Allow iterables other than lists in m2m records (#189)
* Allow iterables other than Lists in m2m records
* Add test for iterable m2m records

Thanks, @adamwolf!
2020-10-27 09:24:21 -07:00
Simon Willison
2771ab96e7 Test showing stdin inserts work 2020-10-25 20:05:56 -07:00
Simon Willison
e4f1c7b936
python_requires=">=3.6"
Inspired by https://github.com/simonw/datasette/pull/1044
2020-10-23 14:19:30 -07:00
Simon Willison
55133b5966
Link to sqliteutils tag on my blog 2020-10-21 11:08:28 -07:00
Simon Willison
0b5edd6469 Added basic tests using hypothesis, closes #180 2020-10-18 21:51:50 -07:00
Simon Willison
47af71f603 Release 2.22 2.22
Refs #182 #137 #136 #184 #181
2020-10-16 12:30:25 -07:00
Simon Willison
21ff60e3b1 --load-extension= for many more commands, closes #137
Also added --load-extension=spatialite shortcut, closes #136
2020-10-16 12:14:22 -07:00
Simon Willison
2c541fac35 --encoding option for non-utf8 CSV/TSV, closes #182 2020-10-16 10:18:46 -07:00
Simon Willison
7c0ef116ed pk=['id'] now equivalent to pk='id', closes #181 2020-10-14 14:59:38 -07:00
Simon Willison
7eda0532e8 Consistent usage of db["dogs"], closes #185 2020-10-11 17:13:35 -07:00
Simon Willison
4e8e157b5d
Test against Python 3.9 on publish 2020-10-07 18:45:07 -07:00
Simon Willison
8e91de8e4e
Python 3.9 (#184)
* Test against Python 3.9
* Programming Language :: Python :: 3.9 classifier
* Python versions badge
2020-10-07 18:44:05 -07:00
Simon Willison
7f4fe9190c
Configure code scanning, refs #183 2020-09-30 15:17:23 -07:00
Shakeel Mahate
cada1017ed
Fixed incorrect example in README 2020-09-30 13:29:27 -07:00
Simon Willison
94fc62857e Demonstrate extract= creates correct foreign keys
Closes #138
2020-09-24 15:46:46 -07:00
Simon Willison
cda559f835 Include --column-order in combined example, refs #176 2020-09-24 13:33:19 -07:00
Simon Willison
a57acf84f7 Release 2.21 2.21
Refs #172, #175, #176, #177
2020-09-24 09:44:30 -07:00
Simon Willison
5a63b9e88c Simplify drop-foreign-key, and drop_foreign_keys, closes #177 2020-09-24 09:19:07 -07:00
Simon Willison
d13c123100 sqlite-utils transform --column-order option, closes #176 2020-09-24 09:11:53 -07:00
Simon Willison
725f206949 Documentation for .transform(column_order=), closes #175 2020-09-24 09:00:50 -07:00
Simon Willison
022cdd97a9
Much, much faster extract() implementation
Takes my test down from ten minutes to four seconds!

* Removed unnecessary update() optimization
* Added column_order= to .transform() and .transform_sql()
* Tests for reusing lookup table in extract()

Closes #172
2020-09-24 08:43:55 -07:00
Simon Willison
5eb14d1c1f Added several missing 'return self' to support chaining 2020-09-24 07:51:36 -07:00
Simon Willison
0ca5585fcb Clarify why you would want transform_sql() 2020-09-23 13:16:01 -07:00
Simon Willison
66d506587e Some optimizations for extract()
Refs #172 - seems to give me about 20% speedup.
2020-09-23 13:12:19 -07:00
Simon Willison
1ebffe1dbe Correction: SQLite ALTER TABLE can rename columns 2020-09-22 20:09:42 -07:00
Simon Willison
9f59a7a325 Fixed typo in release notes, refs #170 2.20 2020-09-22 17:35:52 -07:00
Simon Willison
5534c320e4 Applied Black 2020-09-22 17:32:40 -07:00
Simon Willison
dcdef136db Release 2.20
Refs #114, #42, #162, #164, #165, #167, #169. Closes #170
2020-09-22 17:31:15 -07:00
Simon Willison
b8e0048485 Fixed PRAGMA foreign_keys handling for .transform, closes #167 2020-09-22 17:12:56 -07:00
Simon Willison
5c4d58d152 Progress bar for "sqlite-utils extract", closes #169 2020-09-22 17:02:29 -07:00
Simon Willison
55cf928f73 sqlite-utils extract, closes #42 2020-09-22 16:37:39 -07:00
Simon Willison
2db6c5b2d5 table.extract() now works with rowid tables, refs #42 2020-09-22 16:11:28 -07:00
Simon Willison
71782311ce New .rows_where(select=) argument 2020-09-22 16:10:14 -07:00
Simon Willison
317071a552 Applied Black 2020-09-22 16:09:28 -07:00
Simon Willison
c3210f2ffb Added table.extract(rename=) option, refs #42 2020-09-22 15:57:02 -07:00
Simon Willison
c755f2852d Docstring for sqlite-utils transform 2020-09-22 15:50:12 -07:00
Simon Willison
f8553799d3 table.extract() method, refs #42 2020-09-22 15:20:18 -07:00
Simon Willison
f29f6821f2 Applied Black 2020-09-22 00:49:27 -07:00
Simon Willison
752d261229 Implemented sqlite-utils transform command, closes #164 2020-09-22 00:47:58 -07:00
Simon Willison
f8e10df00e
Keyword only arguments for transform()
Also renamed columns= to types=

Closes #165
2020-09-21 23:39:10 -07:00
Simon Willison
987dd123f2
table.transform() method - closes #114 2020-09-21 21:20:01 -07:00
Simon Willison
482477585a @db.register_function decorator, closes #162 2020-09-21 17:31:43 -07:00
Simon Willison
ef882986d0 Release 2.19 2.19
Refs #112, #157, #160
2020-09-20 15:22:56 -07:00
Simon Willison
e23eedb4ce ignore=True argument for add_foreign_key, closes #112
Also --ignore for add-foreign-key command

Plus table.add_foreign_key(...) now returns self, allowing more chaining
2020-09-20 15:17:25 -07:00
Simon Willison
ecb50c8f76 .enable_fts(..., replace=True) argument, closes #160 2020-09-20 15:05:46 -07:00
Simon Willison
3cc1944e53 sqlite-utils add-foreign-keys command, closes #157 2020-09-20 13:14:25 -07:00