parad
Encrypted local-first SQLite with Telegram cloud sync.
Install
pip install parad
Quick Start
# Create an encrypted database
parad init mydb
# Push to cloud
parad push
# Pull latest
parad pull
# Check status
parad status
# Interactive SQL
parad shell
Commands
| Command | Description |
|---|---|
parad init <name> |
Create encrypted DB + register with gateway |
parad push |
Push database to Telegram cloud |
parad pull [version] |
Pull latest or specific version |
parad sync |
Push then pull |
parad status |
Local vs remote version |
parad versions |
List all remote versions |
parad rollback <ver> |
Rollback to previous version |
parad exec <sql> |
Run raw SQL |
parad insert <table> <json> |
Insert a row |
parad select <table> [where] |
Query rows |
parad update <table> <set> <where> |
Update rows |
parad delete <table> <where> |
Delete rows |
parad shell |
Interactive SQL REPL |
parad config show/set |
Manage config |
Configuration
Config lives at ~/.paradox/config.json:
{
"database_path": "~/.paradox/data.db",
"sync": {
"gateway_url": "https://paradox-db.onrender.com/v1",
"api_key": "pk_..."
}
}
Security
- AES-256-CBC encryption at rest
- PBKDF2-HMAC-SHA512 key derivation (256k iterations)
- Your passphrase never leaves your machine
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
parad-0.2.0.tar.gz
(15.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
parad-0.2.0-py3-none-any.whl
(20.6 kB
view details)
File details
Details for the file parad-0.2.0.tar.gz.
File metadata
- Download URL: parad-0.2.0.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b77d8de5fbf5d8614ea3fa271264d9cb61a61817fe7ebbb14f4aa3656972d0f
|
|
| MD5 |
01aaca683ef1f91e5ed297986333305e
|
|
| BLAKE2b-256 |
025ada6479810f16ed454d20bf10c2dac3cddfe85afa7e399489c2ac157d6a00
|
File details
Details for the file parad-0.2.0-py3-none-any.whl.
File metadata
- Download URL: parad-0.2.0-py3-none-any.whl
- Upload date:
- Size: 20.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d5b4a47055269a4b0ca1ba7b3c08a1139b98f5157dbf4b77cd9673a4f09f528
|
|
| MD5 |
b369b82a95567920038179d396c4e356
|
|
| BLAKE2b-256 |
d4809792d4473ed7d592f8ab149298930b38baed5d5694ec41efe5ef382a8daa
|