Backup projects, stations, calibrations and measurements from Salt Portal to a SQLite database.
Project description
Salt Portal Backup
Backup projects, stations, calibrations, and measurements from the Fathom Scientific Salt Portal to a SQLite database.
Backups serve as data security, offline access, and can be useful for creating custom reports and meta analysis of salt dilution measurements.
Disclaimer: This project is not affiliated, associated, authorized, endorsed by, or in any way connected with Fathom Scientific Ltd, the provider of the Salt Portal.
:exclamation: This package is at an early stage of development, the API and database schema are likely to change. Feedback and PRs welcome
Table of Contents
- Installation as package
- Download Windows executable
- Building the pyinstaller exe
- Database schema
- License
Installation
The recommended way to install the package is using uv.
As a standalone CLI tool (isolated environment, globally available):
uv tool install salt-portal-backup
After installing with uv tool install, the CLI command is available globally without activating any virtual environment.
To update using uv tool, run:
uv tool upgrade salt-portal-backup
The package can be installed in your current python environment using uv with:
uv add salt-portal-backup
or, if you want to install it in your current python environment using pip:
pip install salt-portal-backup
Usage in Python code
from salt_portal_backup import run_backup
# without providing path to the database file
# backup will be stored in the user home directory
# with name salt_portal_yyyymmdd_hhmmss.db where yyyymmdd_hhmmss
# is the current date and time
run_backup(username='myusername', password='mypassword')
# provide location for the backup adding database_path keyword
# example below will create the my_backup.db database in the current
# working directory of the python session
run_backup(username='myusername', password='mypassword',
database_path='my_backup.db')
Usage as CLI
Run:
salt_portal_backup --help
Remember to activate the virtual environment where you installed the package if not installing globally with uv tool install.
Download Windows executable
A windows stand-alone executable made with pyinstaller is available under Releases on Github.
Usage CLI
Interaction with the CLI is the same as when calling the python script.
salt_portal_backup.exe --help
Usage: salt_portal_backup.exe [OPTIONS]
Backup projects, stations, calibrations and measurements from Salt Portal to
a SQLite database.
Options:
-u, --username TEXT The Salt Portal login username. Will be prompted
if not provided.
-p, --password TEXT The Salt Portal login password. Will be prompted
if not provided.
-o, --output_database TEXT Path to the SQLite database to store the backup
in. The database is created if not excisting,
and it is recommended to use a new database for
each backup. If not provided, the database will
be created in the users home folder and named
with the current date and time time.
--version Show the version and exit.
--help Show this message and exit.
Example output, when calling without any options:
salt_portal_backup.exe
Salt Portal username: myusername
Salt Portal password: (input is hidden)
Backup to C:\Users\myusername\salt_portal_20240826_135932.db
project (project name): 33%|████████████████████████▎ | 3/9 [01:25<02:31, 25.22s/it]
station (station name): 12%|███████▉ | 1/8 [00:01<00:11, 1.66s/it]
measurement at station: 34%|███████████████████▍ | 17/50 [00:10<00:16, 1.96it/s]
Limitations
- Rating curves are currently not stored in the backup database, but this is planned for a future release.
Building the pyinstaller exe
pyinstaller src/salt_portal_backup/backup.py --onefile --name salt_portal_backup --icon static/icon-256.ico
License
salt-portal-backup is distributed under the terms of the BSD-3-Clause license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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
File details
Details for the file salt_portal_backup-0.2.1.tar.gz.
File metadata
- Download URL: salt_portal_backup-0.2.1.tar.gz
- Upload date:
- Size: 634.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acd966ec9daebb89cfaf433a9fe9caf39085e8244b16b0b04664503565c4bfab
|
|
| MD5 |
747605a1a4aa6801b4e88b9f24ba54d2
|
|
| BLAKE2b-256 |
2a08d1601d8a853fb99c64436e3454c5e79a3920f7e62cf5b502aba65faea11e
|
File details
Details for the file salt_portal_backup-0.2.1-py3-none-any.whl.
File metadata
- Download URL: salt_portal_backup-0.2.1-py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51ac974d4c6d86d709c58cefd064babd018d0e2e1fadf7aed520c59de7d367db
|
|
| MD5 |
93a4e34d1582a0f61c43452b151a3a35
|
|
| BLAKE2b-256 |
ed5a304fa03b693b713262c95ffdfca2310367dd284949b0927750d73c22e1a9
|