Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 599
rohith santosh Avatar asked May 21 '26 23:05

rohith santosh


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)
like image 152
BlackMath Avatar answered May 24 '26 13:05

BlackMath