Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
holoviz
GitHub Repository: holoviz/panel
Path: blob/main/doc/how_to/notebook/examples/hello_world.md
2012 views

My App

import panel as pn pn.extension(template='fast')

This application provides a minimal example demonstrating how to write an app in a Markdown file.

widget = pn.widgets.TextInput(value='world') def hello_world(text): return f'Hello {text}!' pn.Row(widget, pn.bind(hello_world, widget)).servable()