gitextract_52ofrfho/ ├── .dockerignore ├── .githooks/ │ └── pre-commit ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── add-a-site.md │ │ ├── bug.md │ │ └── report-false-result.md │ ├── dependabot.yml │ └── workflows/ │ ├── build-docker-image.yml │ ├── codeql-analysis.yml │ ├── pyinstaller.yml │ ├── python-package.yml │ ├── python-publish.yml │ └── update-site-data.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Installer.bat ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs/ │ ├── Makefile │ ├── make.bat │ ├── requirements.txt │ └── source/ │ ├── command-line-options.rst │ ├── conf.py │ ├── development.rst │ ├── features.rst │ ├── index.rst │ ├── installation.rst │ ├── philosophy.rst │ ├── quick-start.rst │ ├── settings.rst │ ├── supported-identifier-types.rst │ ├── tags.rst │ └── usage-examples.rst ├── maigret/ │ ├── __init__.py │ ├── __main__.py │ ├── __version__.py │ ├── activation.py │ ├── checking.py │ ├── errors.py │ ├── executors.py │ ├── maigret.py │ ├── notify.py │ ├── permutator.py │ ├── report.py │ ├── resources/ │ │ ├── data.json │ │ ├── simple_report.tpl │ │ ├── simple_report_pdf.css │ │ └── simple_report_pdf.tpl │ ├── result.py │ ├── settings.py │ ├── sites.py │ ├── submit.py │ ├── types.py │ ├── utils.py │ └── web/ │ ├── app.py │ └── templates/ │ ├── base.html │ ├── index.html │ ├── results.html │ └── status.html ├── pyinstaller/ │ ├── maigret_standalone.py │ ├── maigret_standalone.spec │ └── requirements.txt ├── pyproject.toml ├── pytest.ini ├── sites.md ├── snapcraft.yaml ├── static/ │ ├── recursive_search.md │ └── report_alexaimephotographycars.html ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── db.json │ ├── local.json │ ├── test_activation.py │ ├── test_checking.py │ ├── test_cli.py │ ├── test_data.py │ ├── test_errors.py │ ├── test_executors.py │ ├── test_maigret.py │ ├── test_notify.py │ ├── test_permutator.py │ ├── test_report.py │ ├── test_sites.py │ ├── test_submit.py │ └── test_utils.py ├── utils/ │ ├── __init__.py │ ├── add_tags.py │ ├── check_engines.py │ ├── import_sites.py │ ├── sites_diff.py │ └── update_site_data.py └── wizard.py