From 6ccfcefb782bbf86b87bf047d01b979782aa6d97 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 9 Jun 2019 09:49:06 -0700 Subject: [PATCH] Added datasette-render-binary plugin to ecosystem --- docs/ecosystem.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/ecosystem.rst b/docs/ecosystem.rst index 17631e2a..844fe207 100644 --- a/docs/ecosystem.rst +++ b/docs/ecosystem.rst @@ -90,6 +90,11 @@ datasette-render-images `datasette-render-images `__ works with SQLite tables that contain binary image data in BLOB columns. It converts any images it finds into ``data-uri`` image elements, allowing you to view them directly in the Datasette interface. +datasette-render-binary +----------------------- + +`datasette-render-binary `__ renders binary data in a slightly more readable fashion: it shows ASCII characters as they are, and shows all other data as monospace octets. Useful as a tool for exploring new unfamiliar databases as it makes it easier to spot if a binary column may contain a decipherable binary format. + datasette-pretty-json ---------------------