Metadata-Version: 2.4
Name: fastapi-dbbackup
Version: 0.1.4
Summary: Database-native backup tool for FastAPI, SQLAlchemy, and SQLModel projects.
Author-email: Rajesh <contact@geekyshows.com>
License-Expression: MIT
Project-URL: Homepage, https://rajsolodev.github.io/fastapi-dbbackup/
Project-URL: Repository, https://github.com/rajsolodev/fastapi-dbbackup
Project-URL: Bug Tracker, https://github.com/rajsolodev/fastapi-dbbackup/issues
Keywords: fastapi,sqlalchemy,sqlmodel,backup,database,postgres,mysql,sqlite,s3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Database
Classifier: Topic :: System :: Archiving :: Backup
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: sqlalchemy>=2.0.0
Requires-Dist: boto3>=1.26.0
Requires-Dist: python-dotenv>=1.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Dynamic: license-file

# fastapi-dbbackup

[![PyPI version](https://badge.fury.io/py/fastapi-dbbackup.svg)](https://badge.fury.io/py/fastapi-dbbackup)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Database-native backup tool for **FastAPI**, **SQLAlchemy**, and **SQLModel** projects. Similar to `django-dbbackup`.

[View on PyPI](https://pypi.org/project/fastapi-dbbackup/)

## Features

- **Database Support**: SQLite, PostgreSQL, MySQL (SQL-only).
- **Storage Support**: Local File System, AWS S3, DigitalOcean Spaces.
- **Direct Streaming**: Direct pipe from database to cloud for Postgres/MySQL (No local disk usage).
- **Compression**: Gzip compression supported (including streaming compression).
- **Security**: Secure credential handling via environment variables (no passwords in process lists).
- **Restoration**: Easy database restoration from backups.
- **Retention**: Automatic purging of old backups.
- **CLI**: Intuitive CLI with `backup`, `restore`, and `list` commands.

### Database Version Support

| Database             | Supported Versions | Requirement                                            |
| -------------------- | ------------------ | ------------------------------------------------------ |
| **PostgreSQL** | All (9.x - 17+)    | `pg_dump` client version must be ≥ Server version   |
| **MySQL**      | All (5.7, 8.0+)    | `mysqldump` client version must be ≥ Server version |
| **SQLite**     | All                | No special requirements                                |

## Installation

```bash
pip install fastapi-dbbackup
```

```bash
# If using UV:
uv add fastapi-dbbackup
```

## Configuration

The tool is configured via environment variables. It automatically loads variables from a `.env` file in your current directory or any parent directory.

| Variable                     | Description                                                                                                                                                  | Default     |
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------- |
| `DATABASE_URL`             | SQLAlchemy-style URL. Required for connection details. Credentials and host are optional if your environment supports it (e.g. Trust auth or local sockets). | -           |
| `DBBACKUP_ENGINE`          | Database engine (`postgres`, `mysql`, `sqlite`, or `auto`)                                                                                           | `auto`    |
| `DBBACKUP_DIR`             | Local or Cloud directory for backups                                                                                                                         | `backups` |
| `DBBACKUP_STORAGE`         | Storage backend (`local` or `s3`)                                                                                                                        | `local`   |
| `DBBACKUP_COMPRESS`        | Whether to compress backups                                                                                                                                  | `true`    |
| `DBBACKUP_RETENTION_DAYS`  | Number of days to keep backups (0 = forever)                                                                                                                 | `0`       |
| `DBBACKUP_MAX_BACKUPS`     | Maximum number of backups to keep (0 = unlimited)                                                                                                            | `0`       |
| `AWS_S3_ACCESS_KEY_ID`     | AWS/DigitalOcean access key ID                                                                                                                               | -           |
| `AWS_S3_SECRET_ACCESS_KEY` | AWS/DigitalOcean secret access key                                                                                                                           | -           |
| `AWS_S3_ENDPOINT_URL`      | Custom endpoint URL (e.g. for DigitalOcean Spaces)                                                                                                           | -           |
| `AWS_S3_REGION`            | S3 region name                                                                                                                                               | -           |
| `AWS_STORAGE_BUCKET_NAME`  | S3 bucket name                                                                                                                                               | -           |
| `AWS_S3_DEFAULT_ACL`       | Uploaded file ACL (`private` or `public-read`)                                                                                                           | `private` |

## Usage

### Backup

```bash
fastapi-dbbackup backup
```

```bash
# if using UV:
uv run fastapi-dbbackup backup
```

### Restore

Restore the latest backup:

```bash
fastapi-dbbackup restore
```

```bash
# if using UV:
uv run fastapi-dbbackup restore
```

Restore a specific backup:

```bash
fastapi-dbbackup restore default-20260131-120000.dump.gz
```

### List Backups

```bash
fastapi-dbbackup list
```

```bash
# if using UV:
uv run fastapi-dbbackup list
```

## Docker Usage

Yes! `fastapi-dbbackup` works great with Docker. However, because it uses native database tools for maximum reliability, you must ensure the appropriate CLI clients are installed in your container.
Check [Docker Usage](https://rajsolodev.github.io/fastapi-dbbackup/docker/ "Docker Usage")

### Tips for Docker:

- **Storage**: Use `DBBACKUP_STORAGE=s3` to ensure your backups survive container restarts.
- **Volumes**: If using `local` storage, mount a volume to `DBBACKUP_DIR` (default: `backups`).
- **Database URL**: Ensure your `DATABASE_URL` uses the service name defined in your `docker-compose.yml` (e.g., `postgres://user:pass@db:5432/dbname`).

---

## License

MIT License. See [LICENSE](LICENSE) for details.
