diff --git a/.gitattributes b/.gitattributes index 99fe8be89a6f686fec2a10c567c9b5dcceb6daa7..3bc84307eb45d6d52874ab92a99997ad420531e0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -184,3 +184,5 @@ tuning-competition-baseline/.venv/lib/python3.11/site-packages/torch/_inductor/_ .venv/lib/python3.11/site-packages/ray/core/src/ray/gcs/gcs_server filter=lfs diff=lfs merge=lfs -text .venv/lib/python3.11/site-packages/ray/thirdparty_files/psutil/__pycache__/_pslinux.cpython-311.pyc filter=lfs diff=lfs merge=lfs -text .venv/lib/python3.11/site-packages/ray/scripts/__pycache__/scripts.cpython-311.pyc filter=lfs diff=lfs merge=lfs -text +.venv/lib/python3.11/site-packages/cpuinfo/__pycache__/cpuinfo.cpython-311.pyc filter=lfs diff=lfs merge=lfs -text +.venv/lib/python3.11/site-packages/yaml/_yaml.cpython-311-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text diff --git a/.venv/lib/python3.11/site-packages/aiohttp_cors-0.7.0.dist-info/DESCRIPTION.rst b/.venv/lib/python3.11/site-packages/aiohttp_cors-0.7.0.dist-info/DESCRIPTION.rst new file mode 100644 index 0000000000000000000000000000000000000000..cb1859319a41ca7937b258a72a72af63a1fc4c9b --- /dev/null +++ b/.venv/lib/python3.11/site-packages/aiohttp_cors-0.7.0.dist-info/DESCRIPTION.rst @@ -0,0 +1,614 @@ +======================== +CORS support for aiohttp +======================== + +``aiohttp_cors`` library implements +`Cross Origin Resource Sharing (CORS) `__ +support for `aiohttp `__ +asyncio-powered asynchronous HTTP server. + +Jump directly to `Usage`_ part to see how to use ``aiohttp_cors``. + +Same-origin policy +================== + +Web security model is tightly connected to +`Same-origin policy (SOP) `__. +In short: web pages cannot *Read* resources which origin +doesn't match origin of requested page, but can *Embed* (or *Execute*) +resources and have limited ability to *Write* resources. + +Origin of a page is defined in the `Standard `__ as tuple +``(schema, host, port)`` +(there is a notable exception with Internet Explorer: it doesn't use port to +define origin, but uses it's own +`Security Zones `__). + +Can *Embed* means that resource from other origin can be embedded into +the page, +e.g. by using ``