Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asg017/sqlite-ecosystem
An overview of all my SQLite extensions, and a roadmap for future extensions and tooling!
https://github.com/asg017/sqlite-ecosystem
Last synced: 10 days ago
JSON representation
An overview of all my SQLite extensions, and a roadmap for future extensions and tooling!
- Host: GitHub
- URL: https://github.com/asg017/sqlite-ecosystem
- Owner: asg017
- Created: 2023-04-07T18:37:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-06T02:27:05.000Z (over 1 year ago)
- Last Synced: 2024-10-25T09:31:09.373Z (16 days ago)
- Language: TypeScript
- Homepage:
- Size: 34.2 KB
- Stars: 205
- Watchers: 8
- Forks: 2
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-sqlite - github.com/asg017/sqlite-ecosystem - Overview of all of asg017’s SQLite extensions (Extensions)
- awesome-sqlite - asg017/sqlite-ecosystem: An overview of all my SQLite extensions, and a roadmap for future extensions and tooling!
README
# sqlite-ecosystem
All the SQLite extensions, tools, and guides that I (Alex Garcia 👋🏼) have written and open sourced.
Feel free to start a discussion in this repo about meta-level SQLite extension and tooling talk! Though if you're having a specific issue with a particular extension or tool, then file an issue in that project's repository.
## Overview
These are all the loadable SQLite extensions I have built, along with which programming language they are written in and where they are distributed.
| Extension | Description | Language | Python | Node.js | Deno | Ruby | Datasette | sqlite-utils |
| ----------------------------------------- | -------------------------------------- | -------- | :--: | :--: | :---: | :--: | :-------: | :-----: |
| [`sqlite-http`](#sqlite-http) | Make HTTP requests | Go | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`sqlite-html`](#sqlite-html) | parse HTML documents | Go | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`sqlite-lines`](#sqlite-lines) | Read files/blob line-by-line | C | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`sqlite-path`](#sqlite-path) | Parse and generate filepaths | C | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`sqlite-url`](#sqlite-url) | Parse and generate URLs | C | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`sqlite-xsv`](#sqlite-xsv) | Query CSVs | Rust | ✅ | ✅ | ✅ | ✅ | 🚧 | 🚧 |
| [`sqlite-regex`](#sqlite-regex) | Regular expression functions | Rust | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`sqlite-ulid`](#sqlite-ulid) | Work with ULIDs | Rust | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`sqlite-jsonschema`](#sqlite-jsonschema) | Validate JSON objects with JSON Schema | Rust | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`sqlite-fastrand`](#sqlite-fastrand) | Generate fast numbers/blobs quickly | Rust | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [`sqlite-vss`](#sqlite-vss) | Vector search in SQLite | C++ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |## Extensions
### [`sqlite-http`](https://github.com/asg017/sqlite-http)
A SQLite extension for making HTTP requests purely in SQL.
- Create GET, POST, and other HTTP requests, like curl, wget, and fetch
- Download response bodies, header, status codes, timing info
- Set rate limits, timeouts```sql
select http_get_body('https://text.npr.org/');
select
http_get_body('https://api.github.com/repos/sqlite/sqlite') ->> '$.description';
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-http` | [![PyPI](https://img.shields.io/pypi/v/sqlite-http.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-http/) |
| Node.js | `npm install sqlite-http` | [![npm](https://img.shields.io/npm/v/sqlite-http.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-http) |
| Deno | [`deno.land/x/sqlite_http`](https://deno.land/x/sqlite_http) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-http?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_http) |
| [Datasette](https://datasette.io/) | `datasette install datasette-sqlite-http` | [![PyPI](https://img.shields.io/pypi/v/datasette-sqlite-http.svg?color=B6B6D9&label=Datasette+plugin&logoColor=white&logo=python)](https://pypi.org/project/datasette-sqlite-http) |
| [sqlite-utils](https://sqlite-utils.datasette.io/) | `sqlite-utils install sqlite-utils-sqlite-http` | [![PyPI](https://img.shields.io/pypi/v/sqlite-utils-sqlite-http.svg?color=B6B6D9&label=sqlite-utils+plugin&logoColor=white&logo=python)](https://pypi.org/project/sqlite-utils-sqlite-http) |
| Ruby | `gem install sqlite-http` | ![Gem](https://img.shields.io/gem/v/sqlite-http?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-http?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)
- `macos-aarch64` (MacOS M1 and M2 chips)
- `windows-x86_64` (Windows x86_64)### [`sqlite-html`](https://github.com/asg017/sqlite-html)
A SQLite extension for querying, manipulating, and creating HTML elements.
- Extract HTML or text from HTML with CSS selectors, like `.querySelector()`, `.innerHTML`, and `.innerText`
- Generate a table of matching elements from a CSS selector, like `.querySelectorAll()`
- Safely create HTML elements in a query, like .createElement() and `.appendChild()````sql
select html_extract('Anakin Skywalker
', 'b'); -- "Skywalker"
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-html` | [![PyPI](https://img.shields.io/pypi/v/sqlite-html.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-html/) |
| Node.js | `npm install sqlite-html` | [![npm](https://img.shields.io/npm/v/sqlite-html.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-html) |
| Deno | [`deno.land/x/sqlite_html`](https://deno.land/x/sqlite_html) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-html?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_html) |
| [Datasette](https://datasette.io/) | `datasette install datasette-sqlite-html` | [![PyPI](https://img.shields.io/pypi/v/datasette-sqlite-html.svg?color=B6B6D9&label=Datasette+plugin&logoColor=white&logo=python)](https://pypi.org/project/datasette-sqlite-html) |
| [sqlite-utils](https://sqlite-utils.datasette.io/) | `sqlite-utils install sqlite-utils-sqlite-html` | [![PyPI](https://img.shields.io/pypi/v/sqlite-utils-sqlite-html.svg?color=B6B6D9&label=sqlite-utils+plugin&logoColor=white&logo=python)](https://pypi.org/project/sqlite-utils-sqlite-html) |
| Ruby | `gem install sqlite-html` | ![Gem](https://img.shields.io/gem/v/sqlite-html?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-html?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)
- `macos-aarch64` (MacOS M1 and M2 chips)
- `windows-x86_64` (Windows x86_64)### [`sqlite-lines`](https://github.com/asg017/sqlite-lines)
A SQLite extension for efficiently reading large files or blobs line-by-line.
```sql
select line from lines_read('logs.txt');
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-lines` | [![PyPI](https://img.shields.io/pypi/v/sqlite-lines.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-lines/) |
| Node.js | `npm install sqlite-lines` | [![npm](https://img.shields.io/npm/v/sqlite-lines.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-lines) |
| Deno | [`deno.land/x/sqlite_lines`](https://deno.land/x/sqlite_lines) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-lines?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_lines) |
| [Datasette](https://datasette.io/) | `datasette install datasette-sqlite-lines` | [![PyPI](https://img.shields.io/pypi/v/datasette-sqlite-lines.svg?color=B6B6D9&label=Datasette+plugin&logoColor=white&logo=python)](https://pypi.org/project/datasette-sqlite-lines) |
| [sqlite-utils](https://sqlite-utils.datasette.io/) | `sqlite-utils install sqlite-utils-sqlite-lines` | [![PyPI](https://img.shields.io/pypi/v/sqlite-utils-sqlite-lines.svg?color=B6B6D9&label=sqlite-utils+plugin&logoColor=white&logo=python)](https://pypi.org/project/sqlite-utils-sqlite-lines) |
| Ruby | `gem install sqlite-lines` | ![Gem](https://img.shields.io/gem/v/sqlite-lines?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-lines?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)
- `macos-aarch64` (MacOS M1 and M2 chips)### [`sqlite-path`](https://github.com/asg017/sqlite-path)
A SQLite extension for parsing, generating, and querying paths.
```sql
select path_dirname('foo/bar.txt'); -- 'foo/'
select path_basename('foo/bar.txt'); -- 'bar.txt'
select path_extension('foo/bar.txt'); -- '.txt'
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-path` | [![PyPI](https://img.shields.io/pypi/v/sqlite-path.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-path/) |
| Node.js | `npm install sqlite-path` | [![npm](https://img.shields.io/npm/v/sqlite-path.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-path) |
| Deno | [`deno.land/x/sqlite_path`](https://deno.land/x/sqlite_path) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-path?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_path) |
| [Datasette](https://datasette.io/) | `datasette install datasette-sqlite-path` | [![PyPI](https://img.shields.io/pypi/v/datasette-sqlite-path.svg?color=B6B6D9&label=Datasette+plugin&logoColor=white&logo=python)](https://pypi.org/project/datasette-sqlite-path) |
| [sqlite-utils](https://sqlite-utils.datasette.io/) | `sqlite-utils install sqlite-utils-sqlite-path` | [![PyPI](https://img.shields.io/pypi/v/sqlite-utils-sqlite-path.svg?color=B6B6D9&label=sqlite-utils+plugin&logoColor=white&logo=python)](https://pypi.org/project/sqlite-utils-sqlite-path) |
| Ruby | `gem install sqlite-path` | ![Gem](https://img.shields.io/gem/v/sqlite-path?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-path?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)
- `macos-aarch64` (MacOS M1 and M2 chips)
- `windows-x86_64` (Windows x86_64)### [`sqlite-url`](https://github.com/asg017/sqlite-url)
A SQLite extension for parsing, generating, and querying URLs and query strings
- Extract specific parts of a URL, like schemes, hostnames, and paths
- Generate URLs with parts safely
- Iterate through all key and values in a query string```sql
select url_valid('https://sqlite.org'); -- 1
select url_scheme('https://www.sqlite.org/vtab.html#usage'); -- 'https'
select url_host('https://www.sqlite.org/vtab.html#usage'); -- 'www.sqlite.org'
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-url` | [![PyPI](https://img.shields.io/pypi/v/sqlite-url.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-url/) |
| Node.js | `npm install sqlite-url` | [![npm](https://img.shields.io/npm/v/sqlite-url.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-url) |
| Deno | [`deno.land/x/sqlite_url`](https://deno.land/x/sqlite_url) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-url?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_url) |
| [Datasette](https://datasette.io/) | `datasette install datasette-sqlite-url` | [![PyPI](https://img.shields.io/pypi/v/datasette-sqlite-url.svg?color=B6B6D9&label=Datasette+plugin&logoColor=white&logo=python)](https://pypi.org/project/datasette-sqlite-url) |
| [sqlite-utils](https://sqlite-utils.datasette.io/) | `sqlite-utils install sqlite-utils-sqlite-url` | [![PyPI](https://img.shields.io/pypi/v/sqlite-utils-sqlite-url.svg?color=B6B6D9&label=sqlite-utils+plugin&logoColor=white&logo=python)](https://pypi.org/project/sqlite-utils-sqlite-url) |
| Ruby | `gem install sqlite-url` | ![Gem](https://img.shields.io/gem/v/sqlite-url?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-url?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)### [`sqlite-xsv`](https://github.com/asg017/sqlite-xsv)
A fast and performant SQLite extension for CSV files, written in Rust!
- Query CSVs, TSVs, and other-SVs as SQLite virtual tables
- The "reader" interface lets you query CSVs from other data sources, such as [`sqlite-http`](#sqlite-http)
- Builtin support for querying CSVs with gzip or zstd compression```sql
create virtual table temp.students using csv(
filename="students.csv"
);select * from temp.students;
create virtual table temp.students_gz using csv(
filename="students.csv.gz"
);create virtual table temp.students_reader using csv_reader(
id integer,
name text,
age integer,
progess real
);
select * from temp.students_reader('./target/students.csv');
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-xsv` | [![PyPI](https://img.shields.io/pypi/v/sqlite-xsv.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-xsv/) |
| Node.js | `npm install sqlite-xsv` | [![npm](https://img.shields.io/npm/v/sqlite-xsv.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-xsv) |
| Deno | [`deno.land/x/sqlite_xsv`](https://deno.land/x/sqlite_xsv) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-xsv?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_xsv) |
| Ruby | `gem install sqlite-xsv` | ![Gem](https://img.shields.io/gem/v/sqlite-xsv?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-xsv?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)
- `macos-aarch64` (MacOS M1 and M2 chips)
- `windows-x86_64` (Windows x86_64)### [`sqlite-regex`](https://github.com/asg017/sqlite-regex)
A fast SQLite extension for regular expressions.
```sql
select regex_find(
'[0-9]{3}-[0-9]{3}-[0-9]{4}',
'phone: 111-222-3333'
);select rowid, *
from regex_find_all(
'\b\w{13}\b',
'Retroactively relinquishing remunerations is reprehensible.'
);
/*
┌───────┬───────┬─────┬───────────────┐
│ rowid │ start │ end │ match │
├───────┼───────┼─────┼───────────────┤
│ 0 │ 0 │ 13 │ Retroactively │
│ 1 │ 14 │ 27 │ relinquishing │
│ 2 │ 28 │ 41 │ remunerations │
│ 3 │ 45 │ 58 │ reprehensible │
└───────┴───────┴─────┴───────────────┘
*/
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-regex` | [![PyPI](https://img.shields.io/pypi/v/sqlite-regex.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-regex/) |
| Node.js | `npm install sqlite-regex` | [![npm](https://img.shields.io/npm/v/sqlite-regex.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-regex) |
| Deno | [`deno.land/x/sqlite_regex`](https://deno.land/x/sqlite_regex) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-regex?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_regex) |
| [Datasette](https://datasette.io/) | `datasette install datasette-sqlite-regex` | [![PyPI](https://img.shields.io/pypi/v/datasette-sqlite-regex.svg?color=B6B6D9&label=Datasette+plugin&logoColor=white&logo=python)](https://pypi.org/project/datasette-sqlite-regex) |
| [sqlite-utils](https://sqlite-utils.datasette.io/) | `sqlite-utils install sqlite-utils-sqlite-regex` | [![PyPI](https://img.shields.io/pypi/v/sqlite-utils-sqlite-regex.svg?color=B6B6D9&label=sqlite-utils+plugin&logoColor=white&logo=python)](https://pypi.org/project/sqlite-utils-sqlite-regex) |
| Ruby | `gem install sqlite-regex` | ![Gem](https://img.shields.io/gem/v/sqlite-regex?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-regex?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)
- `macos-aarch64` (MacOS M1 and M2 chips)
- `windows-x86_64` (Windows x86_64)### [`sqlite-ulid`](https://github.com/asg017/sqlite-ulid)
A SQLite extension for generating and working with [ULIDs](https://github.com/ulid/spec).
```sql
select ulid(); -- '01gqr4j69cc7w1xdbarkcbpq17'
select ulid_bytes(); -- X'0185310899dd7662b8f1e5adf9a5e7c0'
select ulid_with_prefix('invoice'); -- 'invoice_01gqr4jmhxhc92x1kqkpxb8j16'
select ulid_datetime('01gqr4j69cc7w1xdbarkcbpq17') -- '2023-01-26 22:53:20.556'
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-ulid` | [![PyPI](https://img.shields.io/pypi/v/sqlite-ulid.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-ulid/) |
| Node.js | `npm install sqlite-ulid` | [![npm](https://img.shields.io/npm/v/sqlite-ulid.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-ulid) |
| Deno | [`deno.land/x/sqlite_ulid`](https://deno.land/x/sqlite_ulid) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-ulid?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_ulid) |
| [Datasette](https://datasette.io/) | `datasette install datasette-sqlite-ulid` | [![PyPI](https://img.shields.io/pypi/v/datasette-sqlite-ulid.svg?color=B6B6D9&label=Datasette+plugin&logoColor=white&logo=python)](https://pypi.org/project/datasette-sqlite-ulid) |
| [sqlite-utils](https://sqlite-utils.datasette.io/) | `sqlite-utils install sqlite-utils-sqlite-ulid` | [![PyPI](https://img.shields.io/pypi/v/sqlite-utils-sqlite-ulid.svg?color=B6B6D9&label=sqlite-utils+plugin&logoColor=white&logo=python)](https://pypi.org/project/sqlite-utils-sqlite-ulid) |
| Ruby | `gem install sqlite-ulid` | ![Gem](https://img.shields.io/gem/v/sqlite-ulid?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-ulid?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)
- `macos-aarch64` (MacOS M1 and M2 chips)
- `windows-x86_64` (Windows x86_64)### [`sqlite-jsonschema`](https://github.com/asg017/sqlite-jsonschema)
A SQLite extension for validating JSON objects with [JSON Schema](https://json-schema.org/).
```sql
select jsonschema_matches('{"maxLength": 5}', json_quote('alex')); -- 1
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-jsonschema` | [![PyPI](https://img.shields.io/pypi/v/sqlite-jsonschema.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-jsonschema/) |
| Node.js | `npm install sqlite-jsonschema` | [![npm](https://img.shields.io/npm/v/sqlite-jsonschema.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-jsonschema) |
| Deno | [`deno.land/x/sqlite_jsonschema`](https://deno.land/x/sqlite_jsonschema) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-jsonschema?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_jsonschema) |
| [Datasette](https://datasette.io/) | `datasette install datasette-sqlite-jsonschema` | [![PyPI](https://img.shields.io/pypi/v/datasette-sqlite-jsonschema.svg?color=B6B6D9&label=Datasette+plugin&logoColor=white&logo=python)](https://pypi.org/project/datasette-sqlite-jsonschema) |
| [sqlite-utils](https://sqlite-utils.datasette.io/) | `sqlite-utils install sqlite-utils-sqlite-jsonschema` | [![PyPI](https://img.shields.io/pypi/v/sqlite-utils-sqlite-jsonschema.svg?color=B6B6D9&label=sqlite-utils+plugin&logoColor=white&logo=python)](https://pypi.org/project/sqlite-utils-sqlite-jsonschema) |
| Ruby | `gem install sqlite-jsonschema` | ![Gem](https://img.shields.io/gem/v/sqlite-jsonschema?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-jsonschema?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)
- `macos-aarch64` (MacOS M1 and M2 chips)
- `windows-x86_64` (Windows x86_64)### [`sqlite-fastrand`](https://github.com/asg017/sqlite-fastrand)
A SQLite extension for quickly generating random numbers, booleans, characters, and blobs
```sql
select fastrand_int(); -- 556823563
select fastrand_alphabetic(); -- 's'
select fastrand_uppercase();-- 'M'
select fastrand_double(); -- 0.740834390248454
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-fastrand` | [![PyPI](https://img.shields.io/pypi/v/sqlite-fastrand.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-fastrand/) |
| Node.js | `npm install sqlite-fastrand` | [![npm](https://img.shields.io/npm/v/sqlite-fastrand.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-fastrand) |
| Deno | [`deno.land/x/sqlite_fastrand`](https://deno.land/x/sqlite_fastrand) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-fastrand?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_fastrand) |
| [Datasette](https://datasette.io/) | `datasette install datasette-sqlite-fastrand` | [![PyPI](https://img.shields.io/pypi/v/datasette-sqlite-fastrand.svg?color=B6B6D9&label=Datasette+plugin&logoColor=white&logo=python)](https://pypi.org/project/datasette-sqlite-fastrand) |
| [sqlite-utils](https://sqlite-utils.datasette.io/) | `sqlite-utils install sqlite-utils-sqlite-fastrand` | [![PyPI](https://img.shields.io/pypi/v/sqlite-utils-sqlite-fastrand.svg?color=B6B6D9&label=sqlite-utils+plugin&logoColor=white&logo=python)](https://pypi.org/project/sqlite-utils-sqlite-fastrand) |
| Ruby | `gem install sqlite-fastrand` | ![Gem](https://img.shields.io/gem/v/sqlite-fastrand?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-fastrand?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)
- `macos-aarch64` (MacOS M1 and M2 chips)
- `windows-x86_64` (Windows x86_64)### [`sqlite-vss`](https://github.com/asg017/sqlite-vss)
A SQLite extension for efficient vector search, based on Faiss!
```sql
create virtual table vss_articles using vss0(
headline_embedding(384),
description_embedding(384),
);insert into vss_articles(rowid, headline_embedding)
select rowid, headline_embedding from articles;select rowid, distance
from vss_articles
where vss_search(
headline_embedding,
(select headline_embedding from articles where rowid = 123)
)
limit 100;
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-vss` | [![PyPI](https://img.shields.io/pypi/v/sqlite-vss.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-vss/) |
| Node.js | `npm install sqlite-vss` | [![npm](https://img.shields.io/npm/v/sqlite-vss.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-vss) |
| Deno | [`deno.land/x/sqlite_vss`](https://deno.land/x/sqlite_vss) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-vss?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_vss) |
| [Datasette](https://datasette.io/) | `datasette install datasette-sqlite-vss` | [![PyPI](https://img.shields.io/pypi/v/datasette-sqlite-vss.svg?color=B6B6D9&label=Datasette+plugin&logoColor=white&logo=python)](https://pypi.org/project/datasette-sqlite-vss) |
| [sqlite-utils](https://sqlite-utils.datasette.io/) | `sqlite-utils install sqlite-utils-sqlite-vss` | [![PyPI](https://img.shields.io/pypi/v/sqlite-utils-sqlite-vss.svg?color=B6B6D9&label=sqlite-utils+plugin&logoColor=white&logo=python)](https://pypi.org/project/sqlite-utils-sqlite-vss) |
| Ruby | `gem install sqlite-vss` | ![Gem](https://img.shields.io/gem/v/sqlite-vss?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-vss?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)
- `macos-aarch64` (MacOS M1 and M2 chips)### [`sqlite-hello`](https://github.com/asg017/sqlite-hello)
The smallest "Hello world" SQLite extension possible.
```sql
sqlite> .load ./hello0
sqlite> select hello('Alex');
'Hello, Alex!'
```| Language/Platform | Install | |
| ----------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Python | `pip install sqlite-hello` | [![PyPI](https://img.shields.io/pypi/v/sqlite-hello.svg?color=blue&logo=python&logoColor=white)](https://pypi.org/project/sqlite-hello/) |
| Node.js | `npm install sqlite-hello` | [![npm](https://img.shields.io/npm/v/sqlite-hello.svg?color=green&logo=nodedotjs&logoColor=white)](https://www.npmjs.com/package/sqlite-hello) |
| Deno | [`deno.land/x/sqlite_hello`](https://deno.land/x/sqlite_hello) | [![deno.land/x release](https://img.shields.io/github/v/release/asg017/sqlite-hello?color=fef8d2&include_prereleases&label=deno.land%2Fx&logo=deno)](https://deno.land/x/sqlite_hello) |
| [Datasette](https://datasette.io/) | `datasette install datasette-sqlite-hello` | [![PyPI](https://img.shields.io/pypi/v/datasette-sqlite-hello.svg?color=B6B6D9&label=Datasette+plugin&logoColor=white&logo=python)](https://pypi.org/project/datasette-sqlite-hello) |
| [sqlite-utils](https://sqlite-utils.datasette.io/) | `sqlite-utils install sqlite-utils-sqlite-hello` | [![PyPI](https://img.shields.io/pypi/v/sqlite-utils-sqlite-hello.svg?color=B6B6D9&label=sqlite-utils+plugin&logoColor=white&logo=python)](https://pypi.org/project/sqlite-utils-sqlite-hello) |
| Ruby | `gem install sqlite-hello` | ![Gem](https://img.shields.io/gem/v/sqlite-hello?color=red&logo=rubygems&logoColor=white) |
| Github Release | | ![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/asg017/sqlite-hello?color=lightgrey&include_prereleases&label=Github+release&logo=github)- `linux-x86_64` (Linux x86_64)
- `macos-x86_64` (MacOS x86_64)
- `macos-aarch64` (MacOS M1 and M2 chips)
- `windows-x86_64` (Windows x86_64)
### Distribution
SQLite extensions have historically been hard to shared with other people. Installing and using them can be tricky and confusing, but these are some strategies I've used to make that easier!
### `pip` for Python Developers
Most of my SQLite extensions are additional placed in a small Python library and distributed on [PyPi](https://pypi.org/). Python developers can then install these extensions with a `pip install` command like so:
```bash
pip install sqlite-regex
```The actual Python library is small and meant to be used with the builtin `sqlite3` Python module, like so:
```python
import sqlite3
import sqlite_regexdb = sqlite3.connect(':memory:')
db.enable_load_extension(True)
sqlite_regex.load(db)db.execute("select regex_version(), '[abc]' regexp 'a';").fetchone()
# ('v0.1.0', 1)
```See [_Making SQLite extensions pip install-able
_](https://observablehq.com/@asg017/making-sqlite-extensions-pip-install-able) (February 2023) for more details.### `npm` for Node.js Developers
These extensions are also distributed on [`npm`](https://npmjs.com/) for use in Node.js. they can be install with a `npm install` command like so:
```bash
npm install sqlite-regex
```And then used in Node.js programs with [`better-sqlite3`](https://github.com/WiseLibs/better-sqlite3) or [`node-sqlite3`](https://github.com/TryGhost/node-sqlite3) like so:
```js
import Database from "better-sqlite3";
import * as sqlite_regex from "sqlite-regex";const db = new Database(":memory:");
db.loadExtension(sqlite_regex.getLoadablePath());
const version = db.prepare("select regex_version()").pluck().get();
console.log(version); // "v0.2.0"
```See [_Making SQLite extensions npm install'able for Node.js, and on deno.land/x for Deno_](https://observablehq.com/@asg017/making-sqlite-extensions-npm-installable-and-deno) (March 2023) for more details.
### `deno.land/x` for Deno Developers
These extensions are also distributed on [`deno.land/x`](https://deno.land/x) for use in [Deno](https://deno.land/) programs. It's meant to work with the [`x/sqlite3`](https://deno.land/x/sqlite3) client like so:
```ts
import { Database } from "https://deno.land/x/[email protected]/mod.ts";
import * as sqlite_regex from "https://deno.land/x/[email protected]/mod.ts";const db = new Database(":memory:");
db.enableLoadExtension = true;
sqlite_regex.load(db);const [version] = db.prepare("select regex_version()").value<[string]>()!;
console.log(version);
```See [the "Deno" section of _Making SQLite extensions npm install'able for Node.js, and on deno.land/x for Deno_](https://observablehq.com/@asg017/making-sqlite-extensions-npm-installable-and-deno#cell-13) (March 2023) for more details.
### `gem` for ruby Developers
These extensions are also distributed on [rubygems.org](https://rubygems.org/) for use in Ruby applications. It's meant to work with the [`sqlite3`](https://rubygems.org/gems/sqlite3) client like so:
```ruby
require 'sqlite3'
require 'sqlite_regex'db = SQLite3::Database.new(':memory:')
db.enable_load_extension(true)
SqliteRegex.load(db)
db.enable_load_extension(false)result = db.execute("select regex_version(), '[abc]' regexp 'a';")
puts result.first.first # "v0.2.3-alpha.7"
puts result.first.last # 1
```See [_Making SQLite extension gem install'able for Ruby Developers_](https://observablehq.com/@asg017/making-sqlite-extension-gem-installable) (June 2023) for more details.
### As Datasette Plugins
Most of these SQLite extensions are also distributed as [Datasette Plugins](https://datasette.io/plugins). They are small wrappers around their corresponding [pip packages](#pip-for-python-developers).
They can be installed like so:
```bash
datasette install datasette-sqlite-regex
```Now all future Datasette instances will include `sqlite-regex` functions. Here we test it using [`datasette --get`](https://docs.datasette.io/en/stable/cli-reference.html#datasette-get).
```
$ datasette --get '/_memory.csv?sql=select+regex_version()'
regex_version()
v0.1.0
```
### As sqlite-utils PluginsMost of these SQLite extensions are also distributed as [sqlite-utils plugins](https://sqlite-utils.datasette.io/en/stable/plugins.html). They are small wrappers around their corresponding [pip packages](#pip-for-python-developers).
They can be installed like so:
```bash
sqlite-utils install sqlite-utils-sqlite-regex
```Now when using the sqlite-utils CLI, the `sqlite-regex` functions will be available.
```
$ sqlite-utils memory 'select regex_version()'
[{"regex_version()": "v0.2.3"}]
```## Roadmap
Various extensions and tools that I plan to build and open source in the future! Most of the development of these happen in private repos, to make my life easier.
If you're interested in any of these, just send me a message!
### Future SQLite Extensions
- `sqlite-img`: Query and manipulate images (cropping, thumbnails, rotation, etc.)
- `sqlite-xml`: Query XML documents with XPath strings
- `sqlite-assert`: Make assertions of your data at query-time
- `sqlite-parquet`: Query Parquet files from SQLite
- `sqlite-md`: Query Markdown documents as their AST
- `sqlite-geo`: A GIS extension, a slimmed-down alternative to spatialite
- `sqlite-python`: Write loadable SQLite extensions in pure Python
- `sqlite-qjs`: Create custom scalar, aggregate, and table functions in JavaScript with [QuickJS](https://bellard.org/quickjs/)
- `sqlite-duckdb`: Query and insert data in DuckDB tables, query CSVs/Parquet/JSON with DuckDB
- `sqlite-pg`: Query and insert data into Postgres tables
- `sqlite-notion`: Query and insert data into Notion databases
- `sqlite-google-sheets`: query and insert data into Google Sheet### Future Extension Bindings
- Elixir
- Rust
- Go### Future Tooling
- `sqlite-package-manager`: A command-line tool for manage SQLite extensions for your project, similar to npm/pip/brew
- `sqlite-docs`: Document SQLite tables and columns with in-line comments on `CREATE TABLE` statements, like JSDoc/rustdoc/docstrings
- `sqlitex`: A modern `sqlite3` alternative, a new CLI with Parquet/S3 support, a bigger stdlib, syntax highlighting, and more