Tony Hirst
Tony Hirst
The `CustomColumnType()` approach looks good. This pushes you into the mindspace that you are defining and working with a custom column type. When creating the table, you could then error,...
Wondering if this actually relates to https://github.com/simonw/sqlite-utils/issues/402 ? I also wonder if this would be a sensible approach for eg registering `pint` based quantity conversions into and out of the...
I was wondering if you have any more thoughts on this? I have a tangible use case now: adding a "vector" column to a database to support semantic search using...
I did an quick sketch at some point trying to look inside zip files from py. Not sure if it ever worked properly: ```python import os import zipfile import datetime...
Is there any progress elsewhere on the handling of compound / composite foreign keys, or is this PR still effectively open?
> My hunch is that the case where you want to consider input from more than one column will actually be pretty rare - the only case I can think...
In passing, I note that `nbqa` [now supports](https://github.com/nbQA-dev/nbQA/issues/555#issuecomment-974651504) checks such as running `mdformat` over notebook Markdown cells, including the running of an `--nbqa-diff` switch that generates a preview rather than...
Running this command throws an error if a notebook does not have the `jupytext` metadata key set: ``` jovyan@87275628c719:~/notebooks$ jupytext --update-metadata '{"jupytext": null}' Part*/*.ipynb [jupytext] Reading Part 01 Notebooks/01.1 Getting...
A workaround is to just set the sync as follows: ``` jupytext --set-formats ipynb Part*/*.ipynb ``` It would then also be possible to legitimately set the value `null`. (Are there...
I have been looking for a simple way to render a notebook to myst and preserve code generated image outputs in particular. As as a really simple, minimal hack, it...