Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for or (0.17 sec)

  1. fastapi/applications.py

                    browser to interact with each of them (instead of having multiple
                    browser tabs open). Or if you want to leave fixed the possible URLs.
    
                    If the servers `list` is not provided, or is an empty `list`, the
                    default value would be a `dict` with a `url` value of `/`.
    
                    Each item in the `list` is a `dict` containing:
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  2. fastapi/routing.py

            self.prefix = prefix
            self.tags: List[Union[str, Enum]] = tags or []
            self.dependencies = list(dependencies or [])
            self.deprecated = deprecated
            self.include_in_schema = include_in_schema
            self.responses = responses or {}
            self.callbacks = callbacks or []
            self.dependency_overrides_provider = dependency_overrides_provider
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
Back to top