Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fork (0.14 sec)

  1. fastapi/applications.py

                        * `url`: The URL for the target documentation. Value MUST be in
                            the form of a URL.
    
                    Read more in the
                    [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#metadata-for-tags).
    
                    **Example**
    
                    ```python
                    from fastapi import FastAPI
    
                    tags_metadata = [
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  2. fastapi/routing.py

            self.description = description or inspect.cleandoc(self.endpoint.__doc__ or "")
            # if a "form feed" character (page break) is found in the description text,
            # truncate description text to the content preceding the first "form feed"
            self.description = self.description.split("\f")[0].strip()
            response_fields = {}
            for additional_status_code, response in self.responses.items():
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
Back to top