restic 是快速,高效和安全的备份程序。
因为最近在用 restic 备份数据,又觉得用 python 对它进行一些更复杂的控制会更方便一点,然后就写了 PyRestic
PyRestic 是 restic 的 python wrapper。可以安装它然后用 Python 控制 restic 数据备份。
import PyRestic 后打开 repository 进行备份如下所示:
import restic
repo = restic.Repo('/srv/restic-repo', '12345678')
repo.backup('setup.py')