Blog entry by ID

Owned by simonw, visibility: Public

Query parameters

SQL query
select * from blog_entry where id = %(id)s

1 row

id title slug body created metadata search_document tweet_html import_ref extra_head_html card_image custom_template series_id
7991 datasette.io, an official project website for Datasette datasette-io <p>This week I launched <a href="https://datasette.io/">datasette.io</a> - the new official project website for Datasette.</p> <p>Datasette's first open source release was <a href="https://simonwillison.net/2017/Nov/13/datasette/">just over three years ago</a>, but until now the official site duties have been split between the <a href="https://github.com/simonw/datasette">GitHub repository</a> and <a href="https://docs.datasette.io/">the documentation</a>.</p> <p><img style="max-width: 100%" alt="A screenshot of datasette.io" src="https://static.simonwillison.net/static/2020/datasette-io.png" /></p> <h4>The Baked Data architectural pattern</h4> <p>The site itself is built on Datasette (<a href="https://github.com/simonw/datasette.io">source code here</a>). I'm using a pattern that I <a href="https://simonwillison.net/2019/Oct/28/niche-museums-kepler/">first started exploring</a> with <a href="https://www.niche-museums.com/">Niche Museums</a>: most of the site content lives in a SQLite database, and I use custom Jinja templates to implement the site's different pages.</p> <p>This is effectively a variant of the static site generator pattern. The SQLite database is built by scripts as part of the deploy process, then deployed to Google Cloud Run as a binary asset bundled with the templates and Datasette itself.</p> <p>I call this the <strong>Baked Data</strong> architectural pattern - with credit to Kevin Marks for <a href="https://chat.indieweb.org/dev/2020-11-15#t1605478365993400">helping me</a> coin the right term. You bake the data into the application.</p> <p><em>Update: I wrote more about this in July 2021: <a href="https://simonwillison.net/2021/Jul/28/baked-data/">The Baked Data architectural pattern</a></em></p> <p>It's comparable to static site generation because everything is immutable, which greatly reduces the amount of things that can go wrong - and any content changes require a fresh deploy. It's extremely easy to scale - just run more copies of the application with the bundled copy of the database. Cloud Run and other serverless providers handle that kind of scaling automatically.</p> <p>Unlike static site generation, if a site has a thousand pages you don't need to build a thousand HTML pages in order to deploy. A single template and a SQL query that incorporates arguments from the URL can serve as many pages as there are records in the database.</p> <h4>How the site is built</h4> <p>You can browse the site's underlying database tables in Datasette <a href="https://datasette.io/content">here</a>.</p> <p>The <a href="https://datasette.io/content/news">news table</a> powers the latest news on the homepage and <a href="https://datasette.io/news">/news</a>. News lives in a <a href="https://github.com/simonw/datasette.io/blob/main/news.yaml">news.yaml file</a> in the site's GitHub repository. I wrote <a href="https://gist.github.com/simonw/6a59833eee83bec1f1317c7f80406275">a script</a> to import the news that had been accumulating in <a href="https://github.com/simonw/datasette/blob/0.52.5/README.md">the 0.52 README</a> - now that news has moved to the site the README is a lot more slim!</p> <p>At build time my <a href="https://github.com/simonw/yaml-to-sqlite">yaml-to-sqlite</a> script runs to load that news content into a database table.</p> <p>The <a href="https://github.com/simonw/datasette.io/blob/72e3b6a470d2543dede13d51a61a22180b5c96f9/templates/index.html#L78-L85">index.html</a> template then uses the following Jinja code to output the latest news stories, using the <code>sql()</code> function from the <a href="https://github.com/simonw/datasette-template-sql">datasette-template-sql</a> Datasette plugin:</p> <div class="highlight highlight-text-html-django"><pre><span class="pl-e">{%</span> <span class="pl-s">set</span> <span class="pl-s">ns</span> = <span class="pl-s">namespace</span>(<span class="pl-s">current_date</span>=<span class="pl-s">""</span>) <span class="pl-e">%}</span> <span class="pl-e">{%</span> <span class="pl-k">for</span> <span class="pl-s">row</span> <span class="pl-k">in</span> <span class="pl-s">sql</span>(<span class="pl-s">"select date, body from news order by date desc limit 15"</span>, <span class="pl-s">database</span>=<span class="pl-s">"content"</span>) <span class="pl-e">%}</span> <span class="pl-e">{%</span> <span class="pl-k">if</span> <span class="pl-s">prettydate</span>(<span class="pl-s">row</span>[<span class="pl-s">"date"</span>]) != (<span class="pl-s">ns</span>.<span class="pl-s">current_date</span> <span class="pl-k">and</span> <span class="pl-s">prettydate</span>(<span class="pl-s">ns</span>.<span class="pl-s">current_date</span>)) <span class="pl-e">%}</span> &lt;<span class="pl-ent">h3</span>&gt;{{ prettydate(row["date<span class="pl-smi">"]</span>) }} &lt;<span class="pl-ent">a</span> <span class="pl-e">href</span>=<span class="pl-s"><span class="pl-pds">"</span>/news/{{ row[<span class="pl-pds">"</span></span><span class="pl-e">date</span><span class="pl-s"><span class="pl-pds">"</span>] }}<span class="pl-pds">"</span></span> <span class="pl-e">style</span>=<span class="pl-s"><span class="pl-pds">"</span><span class="pl-s1"><span class="pl-c1"><span class="pl-c1">font-size</span></span>: <span class="pl-c1">0.8<span class="pl-k">em</span></span>; <span class="pl-c1"><span class="pl-c1">opacity</span></span>: <span class="pl-c1">0.4</span></span><span class="pl-pds">"</span></span>&gt;#&lt;/<span class="pl-ent">a</span>&gt;&lt;/<span class="pl-ent">h3</span>&gt; <span class="pl-e">{%</span> <span class="pl-s">set</span> <span class="pl-s">ns</span>.<span class="pl-s">current_date</span> = <span class="pl-s">prettydate</span>(<span class="pl-s">row</span>[<span class="pl-s">"date"</span>]) <span class="pl-e">%}</span> <span class="pl-e">{%</span> <span class="pl-k">endif</span> <span class="pl-e">%}</span> {{ render_markdown(row["body<span class="pl-smi">"]</span>) }} <span class="pl-e">{%</span> <span class="pl-k">endfor</span> <span class="pl-e">%}</span></pre></div> <p><code>prettydate()</code> is a custom function I wrote in <a href="https://github.com/simonw/datasette.io/blob/353f1f940cb0cb3c38d3bdf6e345328740990702/plugins/dateformat.py">a one-off plugin</a> for the site. The <code>namespace()</code> stuff is a Jinja trick that lets me keep track of the current date heading in the loop, so I can output a new date heading only if the news item occurs on a different day from the previous one.</p> <p><code>render_markdown()</code> is provided by the <a href="https://github.com/simonw/datasette-render-markdown">datasette-render-markdown</a> plugin.</p> <p>I wanted permalinks for news stories, but since they don't have identifiers or titles I decided to provide a page for each day instead - for example <a href="https://datasette.io/news/2020-12-10">https://datasette.io/news/2020-12-10</a></p> <p>These pages are implemented using <a href="https://simonwillison.net/2020/Sep/15/datasette-0-49/#path-parameters-custom-page-templates">Path parameters for custom page templates</a>, introduced in Datasette 0.49. The implementation is a single template file at <a href="https://github.com/simonw/datasette.io/blob/353f1f940cb0cb3c38d3bdf6e345328740990702/templates/pages/news/%7Byyyy%7D-%7Bmm%7D-%7Bdd%7D.html">templates/pages/news/{yyyy}-{mm}-{dd}.html</a>, the full contents of which is:</p> <div class="highlight highlight-text-html-django"><pre><span class="pl-e">{%</span> <span class="pl-k">extends</span> <span class="pl-s">"page_base.html"</span> <span class="pl-e">%}</span> <span class="pl-e">{%</span> <span class="pl-k">block</span> <span class="pl-s">title</span> <span class="pl-e">%}</span>Datasette News: {{ prettydate(yyyy + "-" + mm + "-" + dd) }}<span class="pl-e">{%</span> <span class="pl-k">endblock</span> <span class="pl-e">%}</span> <span class="pl-e">{%</span> <span class="pl-k">block</span> <span class="pl-s">content</span> <span class="pl-e">%}</span> <span class="pl-e">{%</span> <span class="pl-s">set</span> <span class="pl-s">stories</span> = <span class="pl-s">sql</span>(<span class="pl-s">"select date, body from news where date = ? order by date desc"</span>, [<span class="pl-s">yyyy</span> + <span class="pl-s">"-"</span> + <span class="pl-s">mm</span> + <span class="pl-s">"-"</span> + <span class="pl-s">dd</span>], <span class="pl-s">database</span>=<span class="pl-s">"content"</span>) <span class="pl-e">%}</span> <span class="pl-e">{%</span> <span class="pl-k">if</span> <span class="pl-k">not</span> <span class="pl-s">stories</span> <span class="pl-e">%}</span> {{ raise_404("News not found") }} <span class="pl-e">{%</span> <span class="pl-k">endif</span> <span class="pl-e">%}</span> &lt;<span class="pl-ent">h1</span>&gt;&lt;<span class="pl-ent">a</span> <span class="pl-e">href</span>=<span class="pl-s"><span class="pl-pds">"</span>/news<span class="pl-pds">"</span></span>&gt;News&lt;/<span class="pl-ent">a</span>&gt;: {{ prettydate(yyyy + "-" + mm + "-" + dd) }}&lt;/<span class="pl-ent">h1</span>&gt; <span class="pl-e">{%</span> <span class="pl-k">for</span> <span class="pl-s">row</span> <span class="pl-k">in</span> <span class="pl-s">stories</span> <span class="pl-e">%}</span> {{ render_markdown(row["body<span class="pl-smi">"]</span>) }} <span class="pl-e">{%</span> <span class="pl-k">endfor</span> <span class="pl-e">%}</span> <span class="pl-e">{%</span> <span class="pl-k">endblock</span> <span class="pl-e">%}</span></pre></div> <p>The crucial trick here is that, because the filename is <code>news/{yyyy}-{mm}-{dd}.html</code>, a request to <code>/news/2020-12-10</code> will render that template with the <code>yyyy</code>, <code>mm</code> and <code>dd</code> template variables set to those values from the URL.</p> <p>It can then execute a SQL query that incorporates those values. It assigns the results to a <code>stories</code> variable, then checks that at least one story was returned - if not, it raises a 404 error.</p> <p>See Datasette's <a href="https://docs.datasette.io/en/stable/custom_templates.html#custom-pages">custom pages documentation</a> for more details on how this all works.</p> <p>The site also offers an <a href="https://datasette.io/content/feed.atom">Atom feed</a> of recent news. This is powered by the <a href="https://github.com/simonw/datasette-atom">datasette-atom</a> using the output of <a href="https://datasette.io/content/feed">this canned SQL query</a>, with a <code>render_markdown()</code> SQL function provided by <a href="https://github.com/simonw/datasette.io/blob/353f1f940cb0cb3c38d3bdf6e345328740990702/plugins/sql_functions.py">this site plugin</a>.</p> <h4>The plugin directory</h4> <p>One of the features I'm most excited about on the site is the new <a href="https://datasette.io/plugins">Datasette plugin directory</a>. Datasette has over 50 plugins now and I've been wanting a definitive directory of them for a while.</p> <p>It's pretty basic at the moment, offering a list of plugins plus simple <code>LIKE</code> based search, but I plan to expand it a great deal in the future.</p> <p>The fun part is where the data comes from. For a couple of years now I've been using GitHub topics to tag my plugins - I tag them with <code>datasette-plugin</code>, and the ones that I planned to feature on the site when I finally launched it were also tagged with <code>datasette-io</code>.</p> <p>The <code>datasette.io</code> deployment process runs a script called <a href="https://github.com/simonw/datasette.io/blob/353f1f940cb0cb3c38d3bdf6e345328740990702/build_plugin_directory.py">build_plugin_directory.py</a>, which uses a GraphQL query against the GitHub search API to find all repositories belonging to me that have been tagged with those tags.</p> <p>That GraphQL query looks like this:</p> <div class="highlight highlight-source-graphql"><pre><span class="pl-k">query</span> { <span class="pl-v">search</span>(<span class="pl-v">query</span>:<span class="pl-s"><span class="pl-pds">"</span>topic:datasette-io topic:datasette-plugin user:simonw<span class="pl-pds">"</span></span> <span class="pl-v">type</span>:<span class="pl-c1">REPOSITORY</span>, <span class="pl-v">first</span>:<span class="pl-c1">100</span>) { <span class="pl-v">repositoryCount</span> <span class="pl-v">nodes</span> { <span class="pl-k">...</span> <span class="pl-k">on</span> <span class="pl-c1">Repository</span> { <span class="pl-v">id</span> <span class="pl-v">nameWithOwner</span> <span class="pl-v">openGraphImageUrl</span> <span class="pl-v">usesCustomOpenGraphImage</span> <span class="pl-v">repositoryTopics</span>(<span class="pl-v">first</span>:<span class="pl-c1">100</span>) { <span class="pl-v">totalCount</span> <span class="pl-v">nodes</span> { <span class="pl-v">topic</span> { <span class="pl-v">name</span> } } } <span class="pl-s">openIssueCount</span>: <span class="pl-v">issues</span>(<span class="pl-v">states</span>:[<span class="pl-c1">OPEN</span>]) { <span class="pl-v">totalCount</span> } <span class="pl-s">closedIssueCount</span>: <span class="pl-v">issues</span>(<span class="pl-v">states</span>:[<span class="pl-c1">CLOSED</span>]) { <span class="pl-v">totalCount</span> } <span class="pl-v">releases</span>(<span class="pl-v">last</span>: <span class="pl-c1">1</span>) { <span class="pl-v">totalCount</span> <span class="pl-v">nodes</span> { <span class="pl-v">tagName</span> } } } } } }</pre></div> <p>It fetches the name of each repository, the <code>openGraphImageUrl</code> (which doesn't appear to be included in the regular GitHub REST API), the number of open and closed issues and details of the most recent release.</p> <p>The script has access to a copy of the current site database, which is downloaded on each deploy by the build script. It uses this to check if any of the repositories have new releases that haven't previously been seen by the script.</p> <p>Then it runs the <code>github-to-sqlite releases</code> command (part of <a href="https://github.com/dogsheep/github-to-sqlite">github-to-sqlite</a>) to fetch details of those new releases.</p> <p>The end result is a database of repositories and releases for all of my tagged plugins. The plugin directory is then built against a <a href="https://datasette.io/content/plugins">custom SQL view</a>.</p> <h4>Other site content</h4> <p>The rest of the site content is mainly static template files. I use the <code>render_markdown()</code> function inline in some of them so I can author in Markdown rather than HTML - here's <a href="https://github.com/simonw/datasette.io/blob/main/templates/pages/examples.html">the template</a> for the <a href="https://datasette.io/examples">/examples page</a>. The various <a href="https://datasette.io/for">Use cases for Datasette</a> pages are likewise built as static templates.</p> <h4 id="sqlite-utils-analyze-tables">Also this week: sqlite-utils analyze-tables</h4> <p>My other big project this week has involved building out a Datasette instance for a client. I'm working with over 5,000,000 rows of CSV data for this, which has been a great opportunity to push the limits of some of my tools.</p> <p>Any time I'm working with new data I like to get a feel for its general shape. Having imported 5,000,000 rows with dozens of columns into a database, what can I learn about the columns beyond just browsing them in Datasette?</p> <p><code>sqlite-utils analyze-tables</code> (<a href="https://sqlite-utils.readthedocs.io/en/stable/cli.html#analyzing-tables">documented here</a>) is my new tool for doing just that. It loops through every table and every column in the database, and for each column it calculates statistics that include:</p> <ul> <li>The total number of distinct values</li> <li>The total number of null or blank values</li> <li>For non-distinct columns, the 10 most common and 10 least common values</li> </ul> <p>It can output those to the terminal, or if you add the <code>--save</code> option it will also save them to a SQLite table called <code>_analyze_tables_</code> - here's <a href="https://github-to-sqlite.dogsheep.net/github/_analyze_tables_">that table</a> for my github-to-sqlite demo instance.</p> <p>I can then use the output of the tool to figure out which columns might be a primary key, or which ones warrant being extracted out into a separate lookup table using <a href="https://simonwillison.net/2020/Sep/23/sqlite-utils-extract/">sqlite-utils extract</a>.</p> <p>I expect I'll be expanding this feature a lot in the future, but I'm already finding it to be really helpful.</p> <h4>Datasette 0.53</h4> <p>I pushed out a small feature release of Datasette to accompany the new project website. Quoting <a href="https://docs.datasette.io/en/stable/changelog.html#v0-53">the release notes</a>:</p> <blockquote> <ul> <li>New <code>?column__arraynotcontains=</code> table filter. (<a href="https://github.com/simonw/datasette/issues/1132">#1132</a>)</li> <li> <code>datasette serve</code> has a new <code>--create</code> option, which will create blank database files if they do not already exist rather than exiting with an error. (<a href="https://github.com/simonw/datasette/issues/1135">#1135</a>)</li> <li>New <code>?_header=off</code> option for CSV export which omits the CSV header row, <a href="https://docs.datasette.io/en/stable/csv_export.html#csv-export-url-parameters">documented here</a>. (<a href="https://github.com/simonw/datasette/issues/1133">#1133</a>)</li> <li>"Powered by Datasette" link in the footer now links to <a href="https://datasette.io/">https://datasette.io/</a>. (<a href="https://github.com/simonw/datasette/issues/1138">#1138</a>)</li> <li>Project news no longer lives in the README - it can now be found at <a href="https://datasette.io/news">https://datasette.io/news</a>. (<a href="https://github.com/simonw/datasette/issues/1137">#1137</a>)</li> </ul> </blockquote> <h4>Office hours</h4> <p>I had my first round of <a href="https://calendly.com/swillison/datasette-office-hours">Datasette office hours</a> on Friday - 20 minute video chats with anyone who wants to talk to me about the project. I had five great conversations - it's hard to overstate how thrilling it is to talk to people who are using Datasette to solve problems. If you're an open source maintainer I can thoroughly recommend giving this format a try.</p> <h4>Releases this week</h4> <ul> <li> <strong><a href="https://github.com/simonw/datasette-publish-fly">datasette-publish-fly</a></strong>: <a href="https://github.com/simonw/datasette-publish-fly/releases/tag/1.0.1">1.0.1</a> - 2020-12-12<br /> Datasette plugin for publishing data using Fly</li> <li> <strong><a href="https://github.com/simonw/datasette-auth-passwords">datasette-auth-passwords</a></strong>: <a href="https://github.com/simonw/datasette-auth-passwords/releases/tag/0.3.3">0.3.3</a> - 2020-12-11<br /> Datasette plugin for authentication using passwords</li> <li> <strong><a href="https://github.com/simonw/datasette">datasette</a></strong>: <a href="https://github.com/simonw/datasette/releases/tag/0.53">0.53</a> - - 2020-12-11<br /> An open source multi-tool for exploring and publishing data</li> <li> <strong><a href="https://github.com/simonw/datasette-column-inspect">datasette-column-inspect</a></strong>: <a href="https://github.com/simonw/datasette-column-inspect/releases/tag/0.2a">0.2a</a> - 2020-12-09<br /> Experimental plugin that adds a column inspector</li> <li> <strong><a href="https://github.com/simonw/datasette-pretty-json">datasette-pretty-json</a></strong>: <a href="https://github.com/simonw/datasette-pretty-json/releases/tag/0.2.1">0.2.1</a> - 2020-12-09<br /> Datasette plugin that pretty-prints any column values that are valid JSON objects or arrays</li> <li> <strong><a href="https://github.com/simonw/yaml-to-sqlite">yaml-to-sqlite</a></strong>: <a href="https://github.com/simonw/yaml-to-sqlite/releases/tag/0.3.1">0.3.1</a> - 2020-12-07<br /> Utility for converting YAML files to SQLite</li> <li> <strong><a href="https://github.com/simonw/datasette-seaborn">datasette-seaborn</a></strong>: <a href="https://github.com/simonw/datasette-seaborn/releases/tag/0.2a0">0.2a0</a> - 2020-12-07<br /> Statistical visualizations for Datasette using Seaborn</li> </ul> <h4>TIL this week</h4> <ul> <li><a href="https://til.simonwillison.net/readthedocs/custom-sphinx-templates">Using custom Sphinx templates on Read the Docs</a></li> <li><a href="https://til.simonwillison.net/python/style-yaml-dump">Controlling the style of dumped YAML using PyYAML</a></li> <li><a href="https://til.simonwillison.net/bash/escaping-sql-for-curl-to-datasette">Escaping a SQL query to use with curl and Datasette</a></li> <li><a href="https://til.simonwillison.net/bash/skip-csv-rows-with-odd-numbers">Skipping CSV rows with odd numbers of quotes using ripgrep</a></li> </ul> 2020-12-13 08:34:44+00:00
{}
'-07':1714C,1729C '-09':1675C,1690C '-11':1644C,1655C '-12':1628C,1629C,1643C,1654C,1674C,1689C,1713C,1728C '/.':1530C '/a':461C,654C '/examples':1175C '/h1':659C '/h3':462C '/news':322C,450C,652C '/news.':1548C '/news/2020-12-10':573C,688C '0.2':1671C,1725C '0.2.1':1687C '0.3.1':1711C '0.3.3':1641C '0.4':460C '0.49':588C '0.52':349C '0.53':1450C,1652C '0.8':457C '000':1221C,1222C,1265C,1266C '1':1001C '1.0.1':1626C '10':1344C,1348C '100':973C,984C '1132':1475C '1133':1517C '1135':1501C '1137':1549C '1138':1531C '15':431C '20':1563C '2020':1627C,1642C,1653C,1673C,1688C,1712C,1727C '2021':176C '404':644C,741C '5':1220C,1264C '50':818C 'a0':1726C 'access':1044C 'accompani':1461C 'accumul':346C 'add':1362C,1679C 'ago':31C 'alreadi':1442C,1493C 'also':759C,912C,1190C,1368C 'amount':197C 'analyz':1197C,1292C,1376C 'analyze-t':1196C,1291C 'anyon':1568C 'api':936C,1026C 'appear':1017C 'applic':167C,224C 'architectur':52C,147C,180C 'argument':278C 'array':1706C 'arraynotcontain':1472C 'asset':133C 'assign':720C 'atom':762C,774C 'auth':1639C 'authent':1648C 'author':1163C 'automat':243C 'bake':50C,145C,162C,178C 'bakeddata':1779B 'base':849C 'basic':837C 'belong':941C 'beyond':1282C 'big':1201C 'binari':132C 'blank':1336C,1486C 'block':610C,619C 'bodi':423C,473C,626C,667C 'brows':301C,1284C 'build':260C,367C,1061C,1207C 'build_plugin_directory.py':926C 'built':58C,115C,298C,1129C,1186C 'bundl':134C,227C 'calcul':1320C 'call':142C,925C,1375C 'can':780C 'case':1180C 'chang':207C 'chat':1566C 'check':728C,1067C 'client':1214C 'close':997C,1032C 'closedissuecount':994C 'cloud':128C,232C 'code':62C,393C 'coin':157C 'column':1271C,1281C,1311C,1318C,1342C,1403C,1471C,1669C,1681C,1698C 'come':870C 'command':1094C 'common':1346C,1350C 'compar':184C 'content':81C,206C,380C,433C,604C,620C,639C,1137C,1143C 'control':1747C 'convers':1582C 'convert':1717C 'copi':221C,228C,1047C 'coupl':874C 'creat':1481C,1485C 'credit':150C 'crucial':671C 'csv':1225C,1507C,1512C,1766C 'curl':1762C 'current':415C,505C,1050C 'custom':90C,478C,582C,746C,1132C,1740C 'data':51C,146C,164C,179C,869C,1226C,1251C,1634C,1666C 'databas':86C,113C,231C,293C,306C,383C,432C,638C,1052C,1113C,1274C,1314C,1487C 'datasett':7A,19C,20C,60C,139C,309C,407C,410C,540C,587C,612C,744C,773C,812C,815C,893C,916C,962C,966C,1182C,1210C,1287C,1449C,1459C,1476C,1520C,1558C,1599C,1623C,1630C,1638C,1645C,1651C,1668C,1684C,1691C,1723C,1733C,1764C,1776B 'datasette-atom':772C 'datasette-auth-password':1637C 'datasette-column-inspect':1667C 'datasette-io':915C,961C 'datasette-plugin':892C,965C 'datasette-pretty-json':1683C 'datasette-publish-fli':1622C 'datasette-render-markdown':539C 'datasette-seaborn':1722C 'datasette-template-sql':406C 'datasette.io':1A,12C,572C,919C,1529C,1547C 'datasette.io/.':1528C 'datasette.io/news.':1546C 'datasette.io/news/2020-12-10':571C 'date':416C,422C,428C,437C,439C,443C,447C,452C,465C,468C,506C,517C,625C,630C,633C 'day':528C,567C 'dd':600C,617C,637C,658C,683C,698C 'deal':859C 'decid':560C 'definit':827C 'demo':1388C 'deploy':122C,125C,211C,268C,920C,1058C 'desc':429C,634C 'detail':751C,1035C,1103C 'differ':98C,527C 'directori':796C,814C,828C,1126C 'distinct':1328C,1341C 'doc':1746C 'document':48C,748C,1294C,1515C 'doesn':1015C 'download':1055C 'dozen':1269C 'dump':1751C 'duti':38C 'easi':215C 'effect':102C 'em':458C 'end':1109C 'endblock':618C,669C 'endfor':474C,668C 'endif':469C,648C 'error':742C,1500C 'escap':1755C 'everi':1307C,1310C 'everyth':190C 'exampl':570C 'excit':804C 'execut':711C 'exist':1494C 'exit':1497C 'expand':855C,1431C 'expect':1427C 'experiment':1676C 'explor':73C,1663C 'export':1508C 'extend':608C 'extract':1414C,1425C 'extrem':214C 'featur':800C,902C,1433C,1456C 'feed':763C 'feel':1257C 'fetch':1006C,1102C 'figur':1400C 'file':328C,595C,1148C,1488C,1719C 'filenam':678C 'filter':1474C 'final':908C 'find':938C,1443C 'first':22C,71C,972C,983C,1555C 'five':1580C 'fli':1625C,1636C 'follow':391C 'font':455C 'font-siz':454C 'footer':1524C 'format':1616C 'found':647C,1544C 'fresh':210C 'friday':1562C 'full':603C 'fun':864C 'function':403C,479C,788C,1154C 'futur':862C,1438C 'general':1260C 'generat':109C,188C,247C 'get':1255C 'github':44C,333C,882C,934C,1024C,1090C,1098C,1385C 'github-to-sqlit':1089C,1097C,1384C 'give':1614C 'go':202C 'googl':127C 'graphql':930C,952C 'great':194C,858C,1233C,1581C 'h1':649C 'h3':444C 'handl':238C 'hard':1585C 'haven':1077C 'head':507C,518C 'header':1503C,1513C 'help':155C,1448C 'homepag':320C 'hour':1551C,1560C 'href':449C,651C 'html':263C,601C,684C,1168C 'id':978C 'identifi':556C 'immut':192C 'implement':94C,577C,590C 'import':340C,1263C 'includ':1020C,1323C 'incorpor':277C,716C 'index.html':386C 'inlin':1155C 'inspect':1670C 'inspector':1682C 'instanc':1211C,1389C 'instead':568C 'introduc':585C 'involv':1206C 'io':917C,963C 'issu':990C,995C,1033C 'item':523C 'jinja':91C,392C,496C 'json':1686C,1703C 'juli':175C 'keep':501C 'kevin':152C 'key':1408C 'kind':240C 'last':1000C 'latest':316C,397C 'launch':11C,909C 'learn':1278C 'least':731C,1349C 'let':499C 'like':848C,955C,1253C 'likewis':1185C 'limit':430C,1238C 'link':1521C,1526C 'list':843C 'live':82C,324C,1536C 'll':1429C 'load':377C 'longer':1535C 'look':954C 'lookup':1419C 'loop':510C,1305C 'lot':363C,1435C 'm':65C,802C,1216C,1247C,1441C 'main':1145C 'maintain':1609C 'mani':285C 'mark':153C 'markdown':471C,534C,542C,665C,786C,1153C,1165C 'might':1404C 'minut':1564C 'mm':599C,616C,636C,657C,682C,696C 'moment':840C 'move':355C 'multi':1660C 'multi-tool':1659C 'museum':76C 'name':988C,1008C 'namespac':414C,492C 'namewithown':979C 'need':258C 'new':14C,516C,811C,1074C,1106C,1250C,1298C,1463C,1470C,1480C,1502C 'news':312C,317C,323C,342C,353C,379C,398C,425C,522C,548C,613C,628C,645C,653C,680C,766C,1533C 'news.yaml':327C 'nich':75C 'node':975C,986C,1003C 'non':1340C 'non-distinct':1339C 'note':1469C 'ns':413C 'ns.current':438C,442C,464C 'null':1334C 'number':1028C,1326C,1332C,1770C 'object':1704C 'occur':524C 'odd':1769C 'offer':760C,841C 'offic':1550C,1559C 'offici':3A,15C,36C 'omit':1510C 'one':485C,532C,732C,797C,897C,1411C 'one-off':484C 'opac':459C 'open':23C,992C,1030C,1607C,1657C 'opengraphimageurl':980C,1013C 'openissuecount':989C 'opportun':1234C 'option':1365C,1482C,1505C 'order':266C,426C,631C 'output':395C,514C,777C,1354C,1395C 'overst':1587C 'page':99C,254C,264C,286C,564C,575C,583C,747C,1176C,1183C 'page_base.html':609C 'paramet':580C 'part':119C,865C,1095C 'password':1640C,1650C 'path':579C 'pattern':53C,68C,110C,148C,181C 'peopl':1595C 'permalink':546C 'plan':853C,900C 'plugin':411C,487C,543C,793C,795C,813C,819C,845C,887C,894C,967C,1123C,1125C,1631C,1646C,1677C,1692C 'plus':846C 'power':314C,769C,1518C 'pretti':836C,1685C,1695C 'pretty-print':1694C 'prettyd':435C,441C,445C,466C,475C,614C,655C 'previous':531C,1079C 'primari':1407C 'print':1696C 'problem':1602C 'process':123C,921C 'project':4A,16C,1202C,1464C,1532C,1577C,1775B 'provid':237C,536C,562C,789C 'publish':1624C,1633C,1665C 'push':1236C,1452C 'pyyaml':1754C 'queri':275C,714C,782C,931C,953C,957C,959C,1758C 'quot':1466C,1772C 'rais':643C,739C 'rather':1166C,1495C 're':1605C 'read':1744C 'readm':350C,360C,1539C 'realli':1447C 'recent':765C,1039C 'recommend':1613C 'record':290C 'reduc':195C 'regular':1023C 'releas':25C,999C,1040C,1075C,1093C,1107C,1117C,1457C,1468C,1619C 'render':470C,533C,541C,664C,690C,785C,1152C 'repositori':45C,334C,940C,971C,977C,1011C,1072C,1115C 'repositorycount':974C 'repositorytop':982C 'request':686C 'requir':208C 'rest':1025C,1139C 'result':722C,1110C 'return':735C 'right':159C 'ripgrep':1774C 'round':1556C 'row':418C,436C,446C,451C,467C,472C,661C,666C,1223C,1267C,1514C,1767C 'run':129C,219C,233C,375C,922C,1087C 'save':1364C,1369C 'scale':217C,242C 'script':117C,338C,374C,924C,1042C,1062C,1084C 'seaborn':1724C,1735C 'search':850C,935C,958C 'see':743C 'seen':1081C 'select':421C,624C 'separ':1418C 'serv':283C,1477C 'serverless':236C 'set':412C,463C,621C,701C 'shape':1261C 'simonw':969C 'simpl':847C 'sinc':551C 'singl':270C,593C 'site':37C,55C,80C,96C,108C,187C,246C,250C,296C,303C,331C,358C,490C,758C,792C,808C,905C,1051C,1136C,1142C 'size':456C 'skip':1765C 'slim':365C 'small':1455C 'solv':1601C 'sourc':24C,61C,1608C,1658C 'sphinx':1741C 'split':41C 'sql':274C,402C,409C,420C,623C,713C,781C,787C,1133C,1757C 'sqlite':85C,112C,373C,1092C,1100C,1194C,1289C,1373C,1387C,1423C,1710C,1721C 'sqlite-util':1193C,1288C,1422C 'sqliteutil':1778B 'start':72C 'state':991C,996C 'static':107C,186C,245C,1146C,1188C 'statist':1321C,1730C 'stori':399C,549C,622C,642C,663C,725C,733C 'stuff':493C 'style':453C,1749C 'tabl':307C,313C,384C,1198C,1293C,1308C,1374C,1377C,1381C,1420C,1473C 'tag':885C,889C,913C,947C,950C,1122C 'tagnam':1004C 'talk':1572C,1593C 'templat':92C,137C,271C,387C,408C,584C,594C,692C,699C,1147C,1172C,1189C,1742C 'templates/pages/news':597C 'term':160C 'termin':1358C 'thing':199C 'thorough':1612C 'thousand':253C,262C 'three':29C 'thrill':1589C 'til':1736C 'time':368C,1245C 'titl':558C,611C 'tool':1243C,1299C,1398C,1661C 'topic':883C,960C,964C,987C 'total':1325C,1331C 'totalcount':985C,993C,998C,1002C 'track':502C 'tri':1618C 'trick':497C,672C 'type':970C 'under':305C 'unlik':244C 'updat':168C 'url':281C,707C 'use':66C,89C,389C,400C,578C,775C,881C,928C,1064C,1150C,1179C,1393C,1421C,1598C,1635C,1649C,1734C,1739C,1753C,1760C,1773C 'user':968C 'usescustomopengraphimag':981C 'util':1195C,1290C,1424C,1715C 'valid':1702C 'valu':704C,718C,1329C,1337C,1351C,1699C 'variabl':700C,726C 'variant':104C 'various':1178C 've':823C,879C 'video':1565C 'view':1134C 'visual':1731C 'want':545C,825C,1570C 'warrant':1412C 'websit':5A,17C,1465C 'week':9C,1192C,1204C,1621C,1738C 'weeknot':1777B 'work':756C,1217C,1248C 'wrong':203C 'wrote':170C,336C,481C 'yaml':371C,1708C,1718C,1752C 'yaml-to-sqlit':370C,1707C 'year':30C,876C 'yyyi':598C,615C,635C,656C,681C,695C <blockquote class="twitter-tweet"><p lang="en" dir="ltr">Weeknotes: <a href="https://t.co/BNfSWtJruW">https://t.co/BNfSWtJruW</a>, an official project website for Datasette <a href="https://t.co/R5Clj8FUxf">https://t.co/R5Clj8FUxf</a></p>&mdash; Simon Willison (@simonw) <a href="https://twitter.com/simonw/status/1338040814828617728?ref_src=twsrc%5Etfw">December 13, 2020</a></blockquote> - null - https://static.simonwillison.net/static/2020/datasette-io.png - null - - null -
Copy and export data

Duration: 6.07ms