5e3b7e08a3
- New tool get_recipe_box: filtered version of get_recipes returning only real recipes (isRecipe=true), excluding stubs created for free-text meal entries - Parser fix: ingredients_parsed now generated from free-text ingredients field instead of API's ingredientsList which has parser bug on comma+space (e.g. '1, 5g' breaks) - Updated SPEC.md with parser bug documentation - Updated version to 0.11.7 in __init__.py and pyproject.toml - Updated .gitignore to exclude debug/test scripts Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
51 lines
454 B
Plaintext
51 lines
454 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Environment files (may contain secrets)
|
|
.env
|
|
.env.*
|
|
|
|
# Test / coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
|
|
# Type checker
|
|
.mypy_cache/
|
|
|
|
# Ruff
|
|
.ruff_cache/
|
|
|
|
# Editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# uv
|
|
uv.lock
|
|
|
|
# Debug and test scripts
|
|
debug_*.py
|
|
probe_*.py
|
|
probe_*.txt
|
|
p*_err.txt
|
|
test_*.py
|