How to change the website Tab name in Dash-Plotly using python

Viewed 1302

I Want to change the name and icon which are displayed on the webpage tab which is developed using Dash-Plotly with python.

Tab

any help will be appreciated.

1 Answers

This should do the trick:

app = dash.Dash(__name__)
app.title = 'This is my App'
app._favicon = ("path_to_folder/your_icon.ico")
.....
.....
if __name__ == '__main__':
    app.run_server(debug=True)
Related