gitextract_8o3pvrw5/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── auto-merge.yml │ ├── ci-cd.yml │ └── codeql.yml ├── .gitignore ├── .jscs.json ├── .jshintrc ├── .pep8rc ├── .pre-commit-config.yaml ├── .pylintrc ├── .pyup.yml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── aiohttp_cors/ │ ├── __about__.py │ ├── __init__.py │ ├── abc.py │ ├── cors_config.py │ ├── mixin.py │ ├── preflight_handler.py │ ├── py.typed │ ├── resource_options.py │ └── urldispatcher_router_adapter.py ├── install_python_and_pip.ps1 ├── pytest.ini ├── requirements-dev.txt ├── setup.cfg ├── setup.py └── tests/ ├── __init__.py ├── doc/ │ ├── __init__.py │ └── test_basic_usage.py ├── integration/ │ ├── __init__.py │ ├── test_main.py │ ├── test_page.html │ └── test_real_browser.py └── unit/ ├── __init__.py ├── test___about__.py ├── test_cors_config.py ├── test_mixin.py ├── test_preflight_handler.py ├── test_resource_options.py └── test_urldispatcher_router_adapter.py