Metadata-Version: 2.4
Name: teleduck
Version: 0.1.0
Summary: Serve DuckDB over PostgreSQL protocol using riffq
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: duckdb
Requires-Dist: pyarrow
Requires-Dist: click
Requires-Dist: riffq

Teleduck
========

Teleduck exposes a DuckDB database over the PostgreSQL protocol using `riffq`.
Simply run:

```
teleduck mydata.db
```

and connect with any PostgreSQL client.

## TLS options

Teleduck serves the PostgreSQL protocol over TLS by default. You can
control TLS behaviour using the following options:

* `--use-tls/--no-use-tls` – enable or disable TLS (default: enabled)
* `--tls-cert-file` – path to a TLS certificate file. If not provided the
  built in certificate is used.
* `--tls-key-file` – path to the TLS private key file. If not provided the
  built in key is used.
