Interactive demo | demos/6-dash

Intro

Dummy endpoint, just to show that serve and dash are not mutually exclusive
Run
Server offline
Idle

Parameters

Result

(none yet)

Sample api request

Source code

def endpoint(a:int=3, b:float=4) -> str:
    """Dummy endpoint, just to show that serve and dash are not mutually exclusive"""
    return f"{a+b} | {a*b}"