├── .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 /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/.github/workflows/ci-cd.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/.jscs.json -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/.jshintrc -------------------------------------------------------------------------------- /.pep8rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/.pep8rc -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/.pyup.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/README.rst -------------------------------------------------------------------------------- /aiohttp_cors/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/aiohttp_cors/__about__.py -------------------------------------------------------------------------------- /aiohttp_cors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/aiohttp_cors/__init__.py -------------------------------------------------------------------------------- /aiohttp_cors/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/aiohttp_cors/abc.py -------------------------------------------------------------------------------- /aiohttp_cors/cors_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/aiohttp_cors/cors_config.py -------------------------------------------------------------------------------- /aiohttp_cors/mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/aiohttp_cors/mixin.py -------------------------------------------------------------------------------- /aiohttp_cors/preflight_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/aiohttp_cors/preflight_handler.py -------------------------------------------------------------------------------- /aiohttp_cors/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aiohttp_cors/resource_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/aiohttp_cors/resource_options.py -------------------------------------------------------------------------------- /aiohttp_cors/urldispatcher_router_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/aiohttp_cors/urldispatcher_router_adapter.py -------------------------------------------------------------------------------- /install_python_and_pip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/install_python_and_pip.ps1 -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | filterwarnings= 3 | error 4 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/test_basic_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/tests/doc/test_basic_usage.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/tests/integration/test_main.py -------------------------------------------------------------------------------- /tests/integration/test_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/tests/integration/test_page.html -------------------------------------------------------------------------------- /tests/integration/test_real_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/tests/integration/test_real_browser.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test___about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/tests/unit/test___about__.py -------------------------------------------------------------------------------- /tests/unit/test_cors_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/tests/unit/test_cors_config.py -------------------------------------------------------------------------------- /tests/unit/test_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/tests/unit/test_mixin.py -------------------------------------------------------------------------------- /tests/unit/test_preflight_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/tests/unit/test_preflight_handler.py -------------------------------------------------------------------------------- /tests/unit/test_resource_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/tests/unit/test_resource_options.py -------------------------------------------------------------------------------- /tests/unit/test_urldispatcher_router_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/aiohttp-cors/HEAD/tests/unit/test_urldispatcher_router_adapter.py --------------------------------------------------------------------------------