have you already heard of a tool called Datasette? I discovered it yesterday and find it really handy.
Github page:
The author presenting it (this is the best):
So basically you can just throw an SQLite database at it, and it creates a complete web-API for that dataset including facets, filtering, different output formats for filtered subsets, showing things on a map (if columns are called longitude and latitude), etc.
Does any of you have experience with it? I am considering to use it for out Open Power System Data project https://open-power-system-data.org/ where all our frictionless datapackage based Data Packages are also shipped with an SQLite database - so it would be a relatively easy set for us.
Hey @ingmars, we (Catalyst) discovered Datasette a few months ago and have started using it to publish our PUDL data via Google Cloud Run. We’re planning to do much more of this going forward, and are looking at moving to SQLite as our archiving format partly as a result.
Datasette maintainer here. I’ve been meaning to reach out to OKFN people for a while. I think the project shares a lot of philosophical goals with OKFN - my aim is to make it as inexpensive and easy as possible to share data in as flexible a way as possible.
One thing I’d love advice on is how Datasette could incorporate data packages - as both an import and export format.
People may find a recent talk I gave interesting - it covers ny Dogsheep project for personal analytics built on top of Datasette. The forum won’t let me include links (presumably because my account is new) so search Google for “Personal Data Warehouses: Reclaiming Your Data”.
In terms of going in the other direction, datasette is fundamentally a frontend over a SQLite DB and we have libraries that can convert a SQLite DB to a datapackage so the lion’s share of what you need there exists. It would probably be a small job to wrap that in a datasette plugin to give you a ‘export to datapackage’ button/feature (as opposed to datapackage-to-datasette which is a ‘tool’, to use your own terminology).