Dash¶
Dash is a productive Python framework for building web applications.
For more information, check here.
Select input parameters¶
The app receives two mandatory parameters:
Input file: the directory with the data and the source code
App: the main source file for the app, usually denoted
app.py
Note
The app must be deployed on the Dash standard port, as shown in the following code snippet:
if __name__ == "__main__":
app.run_server(host='0.0.0.0',port='8050')
Additional Dependencies¶
For information on how to use the Additional dependencies parameter, please refer to the Initialization - Bash script, Initialization - Conda packages, and Initialization - pip packages section of the documentation.
Contents