.dockerignore
.gitattributes
.gitignore
API.md
ARCHITECTURE.md
CONTRIBUTING.md
Dockerfile
LICENSE
MANIFEST.in
Makefile
PRODUCT.md
README.md
babel.cfg
changelog.md
gunicorn_conf.py
pyproject.toml
requirements-dev.txt
requirements-web.txt
requirements.txt
tox.ini
.github/copilot-instructions.md
.github/general.instructions.md
.github/python.instructions.md
.github/workflows/docker-publish.yml
.github/workflows/publish-to-test-pypi.yml
docs/Makefile
docs/calculator_pattern_example.py
docs/conf.py
docs/config.yml.default
docs/index.rst
docs/make.bat
docs/whatsthedamage.api.rst
docs/whatsthedamage.api.v1.rst
docs/whatsthedamage.api.v2.rst
docs/whatsthedamage.config.rst
docs/whatsthedamage.controllers.rst
docs/whatsthedamage.models.rst
docs/whatsthedamage.rst
docs/whatsthedamage.services.rst
docs/whatsthedamage.utils.rst
docs/whatsthedamage.view.rst
src/whatsthedamage/__init__.py
src/whatsthedamage/__main__.py
src/whatsthedamage/app.py
src/whatsthedamage/cli_app.py
src/whatsthedamage.egg-info/PKG-INFO
src/whatsthedamage.egg-info/SOURCES.txt
src/whatsthedamage.egg-info/dependency_links.txt
src/whatsthedamage.egg-info/entry_points.txt
src/whatsthedamage.egg-info/requires.txt
src/whatsthedamage.egg-info/top_level.txt
src/whatsthedamage/api/__init__.py
src/whatsthedamage/api/docs.py
src/whatsthedamage/api/error_handlers.py
src/whatsthedamage/api/helpers.py
src/whatsthedamage/api/v1/__init__.py
src/whatsthedamage/api/v1/endpoints.py
src/whatsthedamage/api/v1/schema.py
src/whatsthedamage/api/v2/__init__.py
src/whatsthedamage/api/v2/endpoints.py
src/whatsthedamage/api/v2/schema.py
src/whatsthedamage/config/__init__.py
src/whatsthedamage/config/config.py
src/whatsthedamage/config/dt_models.py
src/whatsthedamage/config/flask_config.py
src/whatsthedamage/controllers/__init__.py
src/whatsthedamage/controllers/cli_controller.py
src/whatsthedamage/controllers/routes.py
src/whatsthedamage/controllers/routes_helpers.py
src/whatsthedamage/controllers/whatsthedamage.py
src/whatsthedamage/locale/en/LC_MESSAGES/messages.po
src/whatsthedamage/locale/hu/LC_MESSAGES/messages.po
src/whatsthedamage/models/__init__.py
src/whatsthedamage/models/api_models.py
src/whatsthedamage/models/csv_file_handler.py
src/whatsthedamage/models/csv_processor.py
src/whatsthedamage/models/csv_row.py
src/whatsthedamage/models/dt_calculators.py
src/whatsthedamage/models/dt_response_builder.py
src/whatsthedamage/models/machine_learning.py
src/whatsthedamage/models/row_enrichment.py
src/whatsthedamage/models/row_enrichment_ml.py
src/whatsthedamage/models/row_filter.py
src/whatsthedamage/models/row_summarizer.py
src/whatsthedamage/models/rows_processor.py
src/whatsthedamage/scripts/README.md
src/whatsthedamage/scripts/ml_util.py
src/whatsthedamage/services/__init__.py
src/whatsthedamage/services/configuration_service.py
src/whatsthedamage/services/data_formatting_service.py
src/whatsthedamage/services/file_upload_service.py
src/whatsthedamage/services/processing_service.py
src/whatsthedamage/services/response_builder_service.py
src/whatsthedamage/services/session_service.py
src/whatsthedamage/services/validation_service.py
src/whatsthedamage/static/model-rf-v5alpha_en.joblib
src/whatsthedamage/static/model-rf-v5alpha_en.manifest.json
src/whatsthedamage/utils/__init__.py
src/whatsthedamage/utils/date_converter.py
src/whatsthedamage/utils/flask_locale.py
src/whatsthedamage/utils/validation.py
src/whatsthedamage/utils/version.py
src/whatsthedamage/view/__init__.py
src/whatsthedamage/view/forms.py
src/whatsthedamage/view/row_printer.py
src/whatsthedamage/view/static/favicon.ico
src/whatsthedamage/view/templates/api_docs.html
src/whatsthedamage/view/templates/footer.html
src/whatsthedamage/view/templates/header.html
src/whatsthedamage/view/templates/index.html
src/whatsthedamage/view/templates/result.html
src/whatsthedamage/view/templates/v2_results.html
src/whatsthedamage/view/templates/en/about.html
src/whatsthedamage/view/templates/en/legal.html
src/whatsthedamage/view/templates/en/privacy.html
src/whatsthedamage/view/templates/hu/about.html
src/whatsthedamage/view/templates/hu/legal.html
src/whatsthedamage/view/templates/hu/privacy.html
tests/__init__.py
tests/api_fixtures.py
tests/api_test_utils.py
tests/conftest.py
tests/helpers.py
tests/test_api_v1_endpoints.py
tests/test_api_v2_endpoints.py
tests/test_config.py
tests/test_csv_file_handler.py
tests/test_csv_row.py
tests/test_date_converter.py
tests/test_dt_response_builder.py
tests/test_error_handlers.py
tests/test_file_upload_service.py
tests/test_integration_datatables.py
tests/test_machine_learning.py
tests/test_routes.py
tests/test_row_enrichment.py
tests/test_row_enrichment_ml.py
tests/test_row_filter.py
tests/test_row_summarizer.py
tests/test_rows_processor.py
tests/services/test_configuration_service.py
tests/services/test_data_formatting_service.py
tests/services/test_data_formatting_service_caching.py
tests/services/test_processing_service.py
tests/services/test_response_builder_service.py
tests/services/test_session_service.py
tests/services/test_validation_service.py