| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/flask_cors-stubs/ |
Upload File : |
from _typeshed import Incomplete
from collections.abc import Callable, Iterable
from datetime import timedelta
from logging import Logger
from typing import Any
import flask
LOG: Logger
class CORS:
def __init__(
self,
app: Incomplete | None = None,
*,
resources: dict[str, dict[str, Any]] | list[str] | str | None = ...,
origins: str | list[str] | None = ...,
methods: str | list[str] | None = ...,
expose_headers: str | list[str] | None = ...,
allow_headers: str | list[str] | None = ...,
supports_credentials: bool | None = ...,
max_age: timedelta | int | str | None = ...,
send_wildcard: bool | None = ...,
vary_header: bool | None = ...,
**kwargs: Any,
) -> None: ...
def init_app(
self,
app: flask.Flask,
*,
resources: dict[str, dict[str, Any]] | list[str] | str = ...,
origins: str | list[str] = ...,
methods: str | list[str] = ...,
expose_headers: str | list[str] = ...,
allow_headers: str | list[str] = ...,
supports_credentials: bool = ...,
max_age: timedelta | int | str | None = ...,
send_wildcard: bool = ...,
vary_header: bool = ...,
**kwargs: Any,
) -> None: ...
def make_after_request_function(resources: Iterable[tuple[str, dict[str, Any]]]) -> Callable[..., Any]: ...