Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Hyper (0.27 sec)

  1. docs_src/custom_response/tutorial006.py

    from fastapi import FastAPI
    from fastapi.responses import RedirectResponse
    
    app = FastAPI()
    
    
    @app.get("/typer")
    async def redirect_typer():
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Jul 03 19:51:28 GMT 2021
    - 199 bytes
    - Viewed (0)
  2. scripts/docs.py

        readme_content = readme_path.read_text("utf-8")
        if generated_content != readme_content:
            typer.secho(
                "README.md outdated from the latest index.md", color=typer.colors.RED
            )
            raise typer.Abort()
        typer.echo("Valid README ✅")
    
    
    @app.command()
    def build_all() -> None:
        """
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Jan 22 19:26:14 GMT 2024
    - 10.9K bytes
    - Viewed (1)
  3. tests/test_tutorial/test_custom_response/test_tutorial006.py

            "openapi": "3.1.0",
            "info": {"title": "FastAPI", "version": "0.1.0"},
            "paths": {
                "/typer": {
                    "get": {
                        "summary": "Redirect Typer",
                        "operationId": "redirect_typer_typer_get",
                        "responses": {
                            "200": {
                                "description": "Successful Response",
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jun 30 18:25:16 GMT 2023
    - 1K bytes
    - Viewed (0)
Back to top