gitextract_zyjy08no/ ├── .editorconfig ├── .github/ │ ├── actionlint-matcher.json │ └── workflows/ │ ├── ci.yaml │ ├── close-inactive-issues.yaml │ ├── codeql-analysis.yaml │ ├── release.yaml │ ├── secret-scanning.yaml │ ├── test.yaml │ └── workflow-lint.yaml ├── .gitignore ├── .yamllint.yaml ├── LICENSE ├── Makefile ├── README.md ├── docs/ │ ├── contributing.md │ ├── custom_models.md │ ├── index.md │ ├── installation.md │ ├── quick_start.md │ └── reference.md ├── fast_alpr/ │ ├── __init__.py │ ├── alpr.py │ ├── base.py │ ├── default_detector.py │ └── default_ocr.py ├── mkdocs.yml ├── pyproject.toml └── test/ ├── __init__.py └── test_alpr.py