Update readme with project information
- Added information on where I intend to go with the project - Removed old code from main.py
This commit is contained in:
parent
d6a008052a
commit
3f6e163f26
10
README.md
10
README.md
|
@ -1,2 +1,8 @@
|
||||||
# borg-manager
|
# borg manager
|
||||||
summarises borg backups using output from 'borg create'
|
Summarises borg backups using output from 'borg create'.
|
||||||
|
|
||||||
|
My vision is to have a graphical user interface that displays a graph with data taken from a database generated from the output of borg create operations to keep track of backups. It could go anywhere though.
|
||||||
|
|
||||||
|
I intend to use it to keep track of backup duration and filesize to ensure that backups aren't taking an excessive amount of time to complete or too much storage.
|
||||||
|
|
||||||
|
I'm learning Python (and git) with this project so it's going to get a bit messy!
|
||||||
|
|
2
main.py
2
main.py
|
@ -8,8 +8,6 @@ attributes = { "Archive name: " : "",
|
||||||
"Duration: " : "",
|
"Duration: " : "",
|
||||||
"Number of files: " : "", }
|
"Number of files: " : "", }
|
||||||
|
|
||||||
#archive_name, archive_fingerprint, time_start, duration, file_count
|
|
||||||
|
|
||||||
for i in range(0, len(borg_output)):
|
for i in range(0, len(borg_output)):
|
||||||
|
|
||||||
for key in attributes:
|
for key in attributes:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user