Lastpass Backup

Installation

You first need to install the lastpass commandline tool for your platform. It is used internally for accessing the lastpass api.

Then clone the repo and run python3 setup.py install

Usage

from lp_backup import Runner

# create backup runner
example_backup_runner = Runner("/home/YOUR_USER/.config/lp_backup.yml")
# run backup
backup_file_name = example_backup_runner.backup()
print(backup_file_name)

# restore backup to /tmp/example-full-restore.csv (which is PLAIN TEXT, be sure to delete after use)
backup_file_name.restore(backup_file_name, "/tmp/test-full-restore.csv")

Indices and tables