gitextract_fdvz5otw/ ├── .codecov.yml ├── .coveragerc ├── .flake8 ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── release-drafter.yml │ └── workflows/ │ └── main.yaml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── conftest.py ├── fixtures/ │ ├── file │ └── test/ │ └── file ├── noxfile.py ├── pyproject.toml ├── pywhat/ │ ├── Data/ │ │ ├── file_signatures.json │ │ ├── mac_vendors.json │ │ ├── mastercard_companies.json │ │ ├── phone_codes.json │ │ └── regex.json │ ├── __init__.py │ ├── __main__.py │ ├── filter.py │ ├── helper.py │ ├── identifier.py │ ├── magic_numbers.py │ ├── printer.py │ ├── regex_identifier.py │ └── what.py ├── scripts/ │ ├── format_regex.py │ ├── get_file_sigs.py │ └── get_tlds.py └── tests/ ├── __init__.py ├── test_click.py ├── test_filtration.py ├── test_identifier.py ├── test_regex_database.py └── test_regex_identifier.py