forked from j4321/BraceletGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bracelet-generator.py
executable file
·47 lines (40 loc) · 1.55 KB
/
bracelet-generator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#! /usr/bin/python3
# -*- coding:Utf-8 -*-
"""
Bracelet Generator - An easy way to design friendship bracelet patterns
Copyright 2014-2017 Juliette Monsel <[email protected]>
Bracelet Generator is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Bracelet Generator is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
main
"""
import sys
import os
from BraceletGenerator.constantes import CONFIG, BRACELET_LOG, BICOLOR_LOG, save_config
from BraceletGenerator.bracelet import Bracelet
try:
if len(sys.argv) == 1:
app = Bracelet(string_nb=CONFIG.getint("Bracelet", "string_nb"),
row_nb=CONFIG.getint("Bracelet", "row_nb"),
color=CONFIG.get("Bracelet", "default_color"))
else:
fichier = os.path.realpath(sys.argv[1])
app = Bracelet(fichier=fichier)
app.mainloop()
finally: # remove logs even if the app crashed to avoid accumulation
try:
os.remove(BRACELET_LOG)
except FileNotFoundError:
pass
try:
os.remove(BICOLOR_LOG)
except FileNotFoundError:
pass
save_config()