Skip to content

Commit 5391439

Browse files
Lukas Geigerclaude
andcommitted
Initial release v1.0.0
Python-Code-Analyser mit Tkinter-GUI. Findet ungenutzte Imports, tote Definitionen und aehnliche Code-Bloecke via AST-Analyse und difflib-Vergleich. Features: Framework-Erkennung (Tkinter/requests/asyncio), Callback-Erkennung, Multi-File-Projektanalyse, keine externen Abhaengigkeiten. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 parents  commit 5391439

6 files changed

Lines changed: 1520 additions & 0 deletions

File tree

.gitignore

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# =============================================================================
2+
# .gitignore Template fuer Software Entwicklung Projekte
3+
# Kopieren und als .gitignore im Projektroot ablegen
4+
# Projektspezifische Eintraege am Ende anfuegen
5+
# =============================================================================
6+
7+
# ---- Python ----
8+
__pycache__/
9+
*.py[cod]
10+
*$py.class
11+
*.egg-info/
12+
*.egg
13+
.eggs/
14+
dist/
15+
build/
16+
17+
# ---- Virtuelle Umgebungen ----
18+
venv/
19+
.venv/
20+
env/
21+
.env/
22+
23+
# ---- BACH Interne Steuerungsdateien (NIEMALS in Git!) ----
24+
AUFGABEN.txt
25+
TEST.txt
26+
TESTS.txt
27+
TESTERGEBNISSE.txt
28+
BUGREPORT.md
29+
DIAGNOSE_REPORT.md
30+
31+
# ---- Persoenliche / Sensible Daten ----
32+
_USER/
33+
.env
34+
.env.*
35+
credentials.json
36+
client_secret*.json
37+
token.json
38+
*.pem
39+
*.key
40+
keyring/
41+
42+
# ---- Build-Artefakte & Releases ----
43+
releases/
44+
*.exe
45+
*.msi
46+
*.msix
47+
*.appx
48+
*.spec
49+
50+
# ---- IDE & Editoren ----
51+
.claude/
52+
.vscode/
53+
.idea/
54+
*.swp
55+
*.swo
56+
*~
57+
58+
# ---- Betriebssystem ----
59+
desktop.ini
60+
Thumbs.db
61+
.DS_Store
62+
ehthumbs.db
63+
64+
# ---- Projektspezifisch (hier eigene Eintraege anfuegen) ----

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Lukas Geiger
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)