- scan: new --from-photo <img> option extracts EAN via Vision-LLM, then falls through to existing MusicBrainz barcode lookup - ripper: MB disc loop now retries the same disc on rip failure instead of printing "Bitte Album neu starten"; user decline raises RuntimeError - .gitignore: suppress temp/ directory - tests: 4 new tests for scan --from-photo (225 total) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
45 lines
408 B
Text
45 lines
408 B
Text
# Bytecode / Cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Distribution / Packaging
|
|
build/
|
|
dist/
|
|
.eggs/
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
idea/
|
|
.idea/
|
|
testdata/
|
|
CLAUDE.md
|
|
|
|
# Virtuelle Umgebungen
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.env
|
|
|
|
# Tests / Coverage
|
|
.coverage
|
|
.tox/
|
|
pytest_cache/
|
|
htmlcov/
|
|
|
|
# Logs / temporäre Files
|
|
*.log
|
|
*.tmp
|
|
temp/
|
|
|
|
# Editor / IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# MyPy / static analysis
|
|
.mypy_cache/
|
|
.pytype/
|
|
.pyre/
|