gitextract_xbbv28z9/ ├── .flake8 ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── build.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── publish-testpypi.yml │ ├── publish.yml │ └── scorecard.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── pyproject.toml └── vfs_appointment_bot/ ├── main.py ├── notification/ │ ├── email_client.py │ ├── notification_client.py │ ├── notification_client_factory.py │ ├── telegram_client.py │ └── twilio_client.py ├── utils/ │ ├── config_reader.py │ ├── date_utils.py │ └── timer.py └── vfs_bot/ ├── vfs_bot.py ├── vfs_bot_de.py ├── vfs_bot_factory.py └── vfs_bot_it.py