- Added DataFilter class for managing filtering and searching of medical data. - Introduced SearchFilterWidget for UI controls related to search and filters. - Integrated search and filter features into MedTrackerApp, allowing users to filter data by date range, medicine status, and pathology scores. - Implemented quick filters for common use cases (last week, last month, high symptoms). - Enhanced data loading and display logic to accommodate filtered data. - Added error handling for data loading issues. - Updated UIManager to reflect filter status in the application. - Improved entry validation in add_new_entry method to ensure data integrity.
86 lines
866 B
Plaintext
86 lines
866 B
Plaintext
# Data files (except example data)
|
|
thechart_data.csv
|
|
### !thechart_data.csv
|
|
backups/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Build and distribution
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# Python bytecode
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
__pycache__/
|
|
|
|
# PyInstaller
|
|
*.spec
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
.poetry/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
coverage.xml
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
|
|
# Code quality tools
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
.pylint.d/
|
|
|
|
# IDEs and editors
|
|
.vscode/
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Databases
|
|
*.db
|
|
*.sqlite3
|
|
*.sqlite
|
|
|
|
# uv lock files (keep for reproducibility)
|
|
# uv.lock
|
|
|
|
# Docker
|
|
.dockerignore.bak
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
integration_test_exports/
|