Metadata-Version: 2.4
Name: dragonfruit-tui
Version: 1.0.25
Summary: A Natural Language to SQL TUI IDE for your terminal.
Author-email: Laxita Jain <laxitajain912@gmail.com>
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: textual>=0.89.1
Requires-Dist: textual-fastdatatable>=0.12.0
Requires-Dist: textual-textarea>=0.15.0
Requires-Dist: click>=8.1.3
Requires-Dist: rich-click>=1.7.1
Requires-Dist: duckdb>=0.8.0
Requires-Dist: shandy-sqlfmt>=0.19.0
Requires-Dist: platformdirs<5.0,>=3.10
Requires-Dist: questionary>=2.0.1
Requires-Dist: lark>=1.1.9
Requires-Dist: tomlkit<0.14.0,>=0.12.5
Dynamic: license-file

# Dragonfruit-TUI

[![PyPI](https://img.shields.io/pypi/v/dragonfruit-tui)](https://pypi.org/project/dragonfruit-tui/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/dragonfruit-tui)

![Runs on Linux | MacOS | Windows](https://img.shields.io/badge/runs%20on-Linux%20%7C%20MacOS%20%7C%20Windows-blue)

The Natural Language to SQL IDE for Your Terminal.

![Dragonfruit](./dragonfruit.svg)

> [!TIP]
> This README contains a small subset of the documentation for Dragonfruit-TUI.  
> Full documentation and examples will be available soon.

---

## Installing Dragonfruit-TUI

Dragonfruit-TUI is a Python-based terminal IDE designed to let you query databases using **SQL or plain English**.  
After installing Python 3.9 or above, install Harlequin using `pip`, `pipx`, `poetry`, or any other program that can install Python packages from PyPI:

```bash
pip install dargonfruit-tui

```

<!-- ## Installing Database Adapters

dragonfruit can connect to dozens of databases using adapter plug-ins. Adapters are distributed as their own Python packages that need to be installed into the same environment as Harlequin.

For a list of known adapters provided either by the Harlequin maintainers or the broader community, see the [adapters](https://harlequin.sh/docs/adapters) page.

The adapter docs also include installation instructions. Some adapters can be installed as Harlequin extras, like `postgres`. If you used `uv` to install Harlequin:

```bash
uv tool install 'harlequin[postgres]'
```

You can install multiple extras:

```bash
uv tool install 'harlequin[postgres,mysql,s3]'
``` -->

<!-- ## Running dragonfruit-tui

Once dragonfruit-tui is installed, you run it from the command line. The arguments and options you pass in at the command line affect Harlequin's behavior, like what database adapter it uses, which database it connects to, whether or not the file picker is visible, and more. Assuming you have installed Harlequin so that it is on your [PATH](<https://en.wikipedia.org/wiki/PATH_(variable)>) (`uv tool install harlequin` does this automatically), you run Harlequin by typing a command of this form into your shell:

```bash
harlequin [OPTIONS] [CONN_STR]
```

where `[OPTIONS]` is 0 or more pairs of the form `--[option-name] [option-value]`, and `[CONN_STR]` is 0 or more connection strings. `[OPTIONS]` are composed of both Harlequin options and adapter options. For a full list of options, run Harlequin with the `--help` option:

```bash
harlequin --help
``` -->

<!-- ## Using Harlequin with DuckDB

Harlequin defaults to using its DuckDB database adapter, which ships with Harlequin and includes the full DuckDB in-process database.

To open an in-memory DuckDB session, run Harlequin with no arguments:

```bash
harlequin
```

To open one or more DuckDB database files, pass in relative or absolute paths as connection strings (Harlequin will create DuckDB databases if they do not exist):

```bash
harlequin "path/to/duck.db" "another_duck.db"
```

If you want to control the version of DuckDB that Harlequin uses, see the [Troubleshooting](https://harlequin.sh/docs/troubleshooting/duckdb-version-mismatch) page.

## Using Harlequin with SQLite and Other Adapters

Harlequin also ships with a SQLite3 adapter. To use that adapter, you specify the `--adapter sqlite` option. Like DuckDB, you can open an in-memory SQLite database by omitting the connection string:

```bash
dragonfruit-tui --adapter sqlite
```

You can open one or more SQLite database files by passing in their paths as connection strings; note that the `--adapter` option has a short alias, `-a`:

```bash
dragonfruit-tui -a sqlite "path/to/sqlite.db" "another_sqlite.db"
```

Other adapters can be installed as plug-ins; for more information, see the [installation guide](https://harlequin.sh/docs/getting-started/index#installing-database-adapters), and the guides for individual [adapters](https://harlequin.sh/docs/adapters). Each adapter can define its own options, which you can view using `harlequin --help`. -->

<!-- ## Configuring Harlequin

Harlequin contains a large number of options that allow you to [set the theme](https://harlequin.sh/docs/themes), [customize key bindings](https://harlequin.sh/docs/keymaps/index), [show remote and local files](https://harlequin.sh/docs/files/index), set the locale for number formatting, and much more. These can always be entered at the command line, but it can be convenient to define a configuration as a profile instead. For more information on configuring Harlequin, see [Using Config Files](https://harlequin.sh/docs/config-file/index).

## Using Harlequin with Django

[django-harlequin](https://pypi.org/project/django-harlequin/) provides a command to launch Harlequin using Django’s database configuration, like:

```bash
./manage.py harlequin
``` -->

<!-- ## Keep Reading at [harlequin.sh](https://harlequin.sh/docs/getting-started/usage)

Visit [harlequin.sh](https://harlequin.sh/docs/getting-started/usage) for an overview of features and full documentation, starting with a guided walkthrough of how to edit and execute queries, use the data catalog, export data, and more. -->

## Getting Help

To view all command-line options for Harlequin and all installed adapters, after installation, simply type:

```bash
dragonfruit-tui --help
```

## Contributing

Thanks for your interest in dragonfruit! dragonfruit is primarily maintained by [Laxita Jain](https://github.com/laxitajain), but she welcomes all contributions!

Please see [`CONTRIBUTING.md`](./CONTRIBUTING.md) for more information.
