Mukunda Modell
Mukunda Modell
This sounds really ambitious but also really awesome. I like the idea that basically any piece of a page could be selectively replaced. It sort of sounds like a python...
FWIW I implemented something similar with a bit of plugin code: ```python @hookimpl def canned_queries(datasette: Datasette, database: str) -> Mapping[str, str]: # load "canned queries" from the filesystem under #...
FWIW I've written some web components that consume the json api and I think it's a really nice way to work with datasette. I like the combination with datasette+sqlite as...
It's a really great API and the documentation is really great too. Honestly, in more than 20 years of professional experience, I haven't worked with any software API that was...
I don't get the build error? This change hasn't touched anything related to phantomjs and `npm test` works locally.
> Can you rebase this onto master? Done
Couldn't the same thing be achieved by adding ControlMaster + ControlPersist to ssh_config? see https://developer.rackspace.com/blog/speeding-up-ssh-session-creation/
It's possible to generate dynamic autocompletion from the contents of your argparse parser. I built such a beast here: https://phabricator.wikimedia.org/diffusion/MSCA/browse/master/scap/arg.py;82d622ddc0897cb147149464776d37dd2276bc45$41 Based on: https://github.com/dbarnett/python-selfcompletion I could try to submit a pull...
One thing I'm immediately tempted to add is custom filter widgets - it'd be awesome if there was a dropdown select widget that can be populated by an arbitrary query...
> * Using [Datasette plugin hooks](https://docs.datasette.io/en/stable/plugin_hooks.html) would allow other plugins to implement rendering engines So how does a plugin add it's own hooks for other plugins to implement? I didn't...