My second Python3 PyQT5 project
Find a file
2022-10-02 17:06:45 +02:00
icons add fallback to QIcon.fromTheme 2021-12-29 10:38:10 +01:00
src Added more match case statements 2022-10-02 17:06:45 +02:00
.gitignore remove class Spinner(), not necessary 2022-09-15 08:09:45 +02:00
.gitlab-ci.yml update gitlab-ci.yml 2022-01-21 05:14:34 +01:00
__init__.py need __init__.py for job pylint 2022-01-18 21:33:55 +01:00
LICENSE Add LICENSE 2021-08-14 09:15:27 +00:00
Pipfile remove class Spinner(), not necessary 2022-09-15 08:09:45 +02:00
Pipfile.lock remove class Spinner(), not necessary 2022-09-15 08:09:45 +02:00
qt_de.qm Bugfixes 2022-05-10 18:05:39 +02:00
README.md edit README.md 2022-09-13 15:17:48 +02:00
requirements.txt Rename some classes to meaningful names (pep8) 2022-09-14 15:56:17 +02:00
setup.py add crypt.py and project restructured 2022-01-12 18:13:54 +01:00

README

About

This project is not related to restic.net

My second Python3 PyQT5 project. Since version 1.3.0 I use PyQt6 for it.

The project is a UI for the CLI tool restic

This project is quite far from perfect, but it helped me a lot to understand the world of Python3, VSCodium and git a little.

If it helps someone along the way as well, I'm glad. For questions and suggestions you can write me in my forum

And now have fun with one of the best backup tools!

Dependencies

  • restic
  • python >= 3.10
  • pipenv
  • git

Functions Restic-UI

The data of the backup database can be stored encrypted. For this purpose, there is a key file that can be stored in a safe place.

Restic functions that are included in the UI

  • init
  • backup
  • mount
  • restore
  • snapshots
  • ls
  • check
  • unlock
  • stats
  • prune
  • version
  • migrate check
  • migrate update

Restic REST-Backend Functions included

  • init
  • backup
  • mount
  • restore
  • snapshots
  • ls
  • check
  • unlock
  • stats
  • prune

Source: https://github.com/restic/rest-server

Installation

Install restic if not installed

apt install git
apt install restic
restic self-update

Clone Repository

git clone https://gitlab.com/Bullet64/restic-ui-public.git

Create env

cd /home/USER/restic-ui-public

We need last pip to install PyQt6
python -m pip install -U pip
pip install pipenv

pipenv --python 3.10
pipenv shell

Install dependencies

pipenv install PyQt6
pipenv install cryptography

Usage

python3 src/restic_ui.py

Known problems

None at present

main screen

Tested on

  • Linux Mint Cinnamon 20.2 / 20.3 / 21
  • Manjaro 21.3.7 Ruah
  • Manjaro 22.2.0 Sikaris
  • Windows Server 2019

with

  • python >= 3.10