Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Le (0.18 sec)

  1. tests/main.py

        return item_id
    
    
    @app.get("/path/param-le/{item_id}")
    def get_path_param_le(item_id: float = Path(le=3)):
        return item_id
    
    
    @app.get("/path/param-lt-gt/{item_id}")
    def get_path_param_lt_gt(item_id: float = Path(lt=3, gt=1)):
        return item_id
    
    
    @app.get("/path/param-le-ge/{item_id}")
    def get_path_param_le_ge(item_id: float = Path(le=3, ge=1)):
        return item_id
    
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 21:56:59 GMT 2024
    - 4.3K bytes
    - Viewed (0)
Back to top