Metadata-Version: 2.1
Name: firefox-to-sqlite
Version: 0.5.0
Summary: Create an SQLite database from your Firefox data
Author: Cade Ekblad-Frank
Author-email: cade@e-f.me
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: sqlite-utils (>=3.36,<4.0)
Requires-Dist: typer[all] (>=0.9.0,<0.10.0)
Project-URL: Documentation, https://firefox-to-sqlite.cade.pro
Project-URL: Repository, https://github.com/cadeef/firefox-to-sqlite
Description-Content-Type: text/markdown

Firefox *to* SQLite is a bit of a misnomer, Firefox stores history, bookmarks, etc. in
SQLite. `firefox-to-sqlite` aims to make it easy to find your Firefox data, provide
straight forward [views](https://firefox-to-sqlite.cade.pro/usage.html#Views) and [full-text
search](https://firefox-to-sqlite.cade.pro/usage.html#full-text-search) suitable for easy
queries without digging into the database schema.

## Quick Start

### Install

```sh
pipx install firefox-to-sqlite
```

Additional [install](https://firefox-to-sqlite.cade.pro/install.html) options available.

### Select profile

```sh
$ firefox-to-sqlite

Last used (default) profile: 3Wg824N2.archer-patel

Profiles:
  6Fz604Y8.faulkner-howard: active, in use
  3YI440T9.martin: created, never used
  3Wg824N2.archer-patel: active, in use, most recent, largest
  5xs633W9.collins: broken, something doesn't seem quite right
```

### Export

```sh
$ firefox-to-sqlite --profile <PROFILE>

✅ Database saved to firefox_places.sqlite
```

