-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkills.py
350 lines (297 loc) · 11.7 KB
/
Skills.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
import os
import csv
from reportlab.lib.colors import HexColor
from reportlab.pdfgen import canvas
from reportlab.lib.pagesizes import A4
from reportlab.platypus import Paragraph, Frame
from reportlab.lib.styles import getSampleStyleSheet
from reportlab.lib import enums
def get_user_name():
"""
Fragt den Namen des Benutzers ab und gibt ihn zurück.
"""
return input("Bitte geben Sie Ihren Namen ein: ")
def read_data_from_csv(file_path):
"""
Liest die Daten aus einer CSV-Datei, sortiert sie
nach Wert und gibt sie als Dictionary zurück.
"""
data = {}
with open(file_path, newline='', encoding='utf-8') as csvfile:
reader = csv.DictReader(csvfile)
for row in reader:
category = row['Kategorie']
icon = row['Icon'].strip() if row['Icon'] else None
value = row['Wert'].strip(
) if 'Wert' in row and row['Wert'] else None
if category not in data:
data[category] = []
data[category].append({
"Name": row['Name'],
"Icon": icon,
"Value": int(value) if value and value.isdigit() else 0
})
# Sortiere die Einträge jeder Kategorie nach Wert (absteigend)
for category in data:
data[category].sort(key=lambda x: x['Value'], reverse=True)
return data
def set_icon_parameters(height=13, width=13, y_offset=3):
"""
Definiert Standardparameter für Icons.
"""
return {"height": height, "width": width, "y_offset": y_offset}
def get_color_for_value(value):
"""
Gibt die entsprechende Farbe jeden Wert.
"""
if value == 1:
return HexColor("#c68fcf") # Pastell Rosa
elif value == 2:
return HexColor("#b56bff") # Pastell Flieder
elif value == 3:
return HexColor("#90CAF9") # Pastell Hellblau
elif value == 4:
return HexColor("#4DD0E1") # Pastell Türkis
elif value == 5:
return HexColor("#66BB6A") # Frisches Hellgrün
else:
return HexColor("#FFFFFF") # Standard Weiß (Fallback)
def add_header(c, width, height, margin, user_name):
"""
Fügt die Überschrift und die Trennline ein.
"""
c.setFont("Helvetica-Bold", 16)
c.drawString(margin, height - margin - -15,
f"{user_name} Skill-Übersicht")
c.setLineWidth(2)
c.line(margin, height - margin - -10,
width - margin, height - margin - -10)
def draw_categories(
c, data, icons_folder, height,
width, margin, column_width
):
"""
Zeichnet die Kategorien, deren Namen und Icons in das PDF.
"""
y_position_left = height - margin - 1
y_position_right = height - margin - 1
min_y_left = height - margin - 1
min_y_right = height - margin - 1
left_categories = ["Hardware-Kenntnisse",
"Arbeitsabläufe", "Hardware-Reparatur"]
right_categories = ["Softwaresysteme", "Software-Kenntnisse"]
icon_params = set_icon_parameters(height=13, width=13, y_offset=3)
for category, items in data.items():
if category in left_categories:
y_position = y_position_left
x_position = margin
elif category in right_categories:
y_position = y_position_right
x_position = margin + column_width
else:
continue
# Gelben Hintergrund für Kategorie zeichnen
if category in left_categories:
# Breite bis zur Mittellinie
rect_width = (width / 2) - x_position + 2
else:
# Breite des gelben Hintergrunds auf der rechten Seite
symbol_x_end = width - margin - icon_params["width"] - -28
rect_width = (symbol_x_end - x_position)
c.setFillColor(HexColor("#FFFACD")) # Helles Gelb
c.rect(
x_position - 1, # Leicht nach links verschieben
y_position - 10 - 2, # Etwas höher als der Text
rect_width - 10, # Berechnete Breite
15, # Höhe des Rechtecks
stroke=0,
fill=1
)
# Kategorieüberschrift zeichnen
c.setFont("Helvetica-Bold", 14)
c.setFillColor(HexColor("#000000"))
c.drawString(x_position, y_position - 10, category)
y_position -= 15
# Einträge in der Kategorie
for item in items:
name = item["Name"]
icon_path = os.path.join(
icons_folder, item["Icon"]) if item["Icon"] else None
color = get_color_for_value(item["Value"])
num_icons = item["Value"]
# Namen zeichnen
c.setFillColor(HexColor("#000000"))
c.setFont("Helvetica", 12)
c.drawString(x_position + 5, y_position - 10, name)
# Berechne die Position für die Symbole
if x_position < width / 2: # Linke Spalte
symbol_x_start = width / 2 - 36
else: # Rechte Spalte
symbol_x_start = width - margin - icon_params["width"] - 5
# Symbole zeichnen
if icon_path and os.path.isfile(icon_path):
try:
for i in range(num_icons):
icon_x_position = symbol_x_start - \
i * (icon_params["width"] + 9)
c.setFillColor(color) # Farbe anwenden
c.rect(
icon_x_position - 2, # Linker Rand des Rechtecks
y_position - 17, # Y-Position des Rechtecks
icon_params["width"] + 10, # Breite des Rechtecks
icon_params["height"] + 4, # Höhe des Rechtecks
stroke=0,
fill=1
)
c.drawImage(
icon_path,
icon_x_position - -2,
y_position - 15,
width=icon_params["width"],
height=icon_params["height"],
mask="auto"
)
except Exception as e:
print(f"Fehler bei Icon '{icon_path}': {e}")
# Reduzierung der y_position nach dem Zeichnen eines Eintrags
y_position -= 20
# Aktualisiere die Y-Positionen für die Spalten
if category in left_categories:
y_position_left = y_position
min_y_left = min(min_y_left, y_position)
elif category in right_categories:
y_position_right = y_position
min_y_right = min(min_y_right, y_position)
# Füge die vertikale Linie in der Mitte hinzu
center_x = width / 2
c.setLineWidth(2)
c.setStrokeColor(HexColor("#000000"))
c.line(center_x, height - margin, center_x, min(min_y_left, min_y_right))
def add_explanation(c, data, margin, column_width, bottom_margin, width):
"""
Fügt die Erklärung mit farbigen Blöcken zum PDF hinzu.
"""
explanation_x = margin + column_width
explanation_y = bottom_margin + 200
# Gelber Bereich bis zum Symbolrand
symbol_x_end = width - margin - set_icon_parameters()["width"] - 5
rect_width = symbol_x_end - explanation_x + \
set_icon_parameters()["width"] + 15
# Gelber Hintergrund für gesamte Erklärung
num_items = len(data.get("Erklärung", []))
explanation_box_height = 15 + num_items * 20 # Basis-Höhe + Einträge
c.setFillColor(HexColor("#FFFACD")) # Helles Gelb
c.rect(
explanation_x - 5, # Links ausdehnen
explanation_y - (num_items * 20) - -10, # Bis zum letzten Eintrag
rect_width, # Dynamische Breite
explanation_box_height - -15, # Höhe dynamisch anpassen
stroke=0,
fill=1
)
c.setFont("Helvetica-Bold", 15)
c.setFillColor(HexColor("#000000"))
c.drawString(explanation_x, explanation_y + 20, "Erklärung")
c.line(
explanation_x,
explanation_y + 18,
explanation_x + c.stringWidth("Erklärung", "Helvetica-Bold", 15),
explanation_y + 18,
)
c.setFont("Helvetica", 10)
for item in data.get("Erklärung", []):
name = item["Name"]
color = get_color_for_value(item["Value"])
c.setFillColor(color)
c.rect(explanation_x, explanation_y,
rect_width - 10, 15, stroke=0, fill=1)
c.setFillColor(HexColor("#000000"))
c.drawString(explanation_x + 5, explanation_y + 3, name)
explanation_y -= 20
def add_logo_and_description(
c, icons_folder, width,
margin, bottom_margin, column_width
):
"""
Fügt das Python-Logo, den QR-Code und die Beschreibung zum PDF hinzu.
"""
# Pfad zum Python-Logo und QR-Code
logo_path = os.path.join(icons_folder, "pl.png")
qr_code_path = os.path.join(icons_folder, "qr_code.png")
# Dimensionen des Logos
logo_width = 125
logo_height = 125
qr_width = 125
qr_height = 125
# Positionen
logo_y = bottom_margin - 20
qr_y = logo_y
logo_x = width / 2 + 4 # Rechts der Mittellinie
qr_x = width - margin - qr_width + 18 # Rechtsbündig
# Logo hinzufügen
if os.path.isfile(logo_path):
c.drawImage(
logo_path, logo_x, logo_y,
width=logo_width, height=logo_height, mask="auto"
)
# QR-Code hinzufügen
if os.path.isfile(qr_code_path):
c.drawImage(
qr_code_path, qr_x, qr_y,
width=qr_width, height=qr_height, mask="auto"
)
# Beschreibungstext
text = (
"Dieses Dokument wurde von einem von<br/>"
"mir geschriebenen Python-Skript erstellt.<br/>"
"Scannen Sie den QR-Code oder <br/>"
"besuchen Sie: "
'<a href="https://www.github.com/Morn2/Skills" '
'color="blue">www.github.com/Morn2/Skills</a><br/>'
"Skills.py ist die Datei des Sourcecodes."
)
styles = getSampleStyleSheet()
style = styles["Normal"]
style.fontName = "Helvetica"
style.fontSize = 12
style.leading = 12 # Zeilenhöhe
style.textColor = HexColor("#000000")
style.alignment = enums.TA_JUSTIFY # Blocksatz
center_x = (width / 2 + width - margin) / 2 # Horizontale Mitte berechnen
frame = Frame(center_x - 115, logo_y - 80,
column_width, 90, showBoundary=0)
paragraph = Paragraph(text, style)
frame.addFromList([paragraph], c)
def create_pdf(filename, data, icons_folder, user_name):
"""
Erstellt ein PDF mit den Daten aus der CSV-Datei, Icons und Benutzername.
"""
c = canvas.Canvas(filename, pagesize=A4)
width, height = A4
margin = 50
bottom_margin = 100
column_width = (width - 2 * margin) / 1.9
# Überschrift und Linie
add_header(c, width, height, margin, user_name)
# Kategorien zeichnen
draw_categories(c, data, icons_folder, height, width, margin, column_width)
# Erklärung hinzufügen
add_explanation(c, data, margin, column_width, bottom_margin, width)
# Python-Logo und Beschreibung hinzufügen
add_logo_and_description(c, icons_folder, width,
margin, bottom_margin, column_width)
# PDF speichern
c.save()
print(f"PDF wurde erfolgreich erstellt: {filename}")
# Pfade und Dateinamen
script_dir = os.path.dirname(os.path.abspath(__file__))
csv_file_path = os.path.join(script_dir, "daten.csv")
icons_folder = os.path.join(script_dir, "Icons")
output_pdf_path = os.path.join(script_dir,
"Skills Übersicht.pdf")
# CSV Lesen
data = read_data_from_csv(csv_file_path)
# Benutzername abfragen
user_name = get_user_name()
# PDF erstellen
create_pdf(output_pdf_path, data, icons_folder, user_name)