aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2018-12-18 19:38:22 -0800
committerBryan Newbold <bnewbold@archive.org>2018-12-18 19:38:22 -0800
commit96bc49924091126646c545b567252f3916ba0caf (patch)
tree09bd43999c0a9444368a7145e69f728c34978b99 /README.md
parent6f60f99bbf4b18f2576fb2a021b1ec93f084f651 (diff)
downloadsqlite-notebook-96bc49924091126646c545b567252f3916ba0caf.tar.gz
sqlite-notebook-96bc49924091126646c545b567252f3916ba0caf.zip
first draft
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index c31ae4d..7fafc49 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,15 @@
An un-inventively named quick script to process markdown documents, executing
in-line SQL statements against a sqlite database.
+
+You write a markdown file with code tagged `sql`, then run this script against
+it, along with a local sqlite3 database file, and you get HTML output with the
+query results in table form. Sort of like a crude/simple jupyter notebook.
+
+Requires the python package `mistune`. Try something like:
+
+ # debian/ubuntu
+ sudo apt install python3-mistune
+
+ # elsewhere
+ sudo pip3 install mistune