I Want to change the name and icon which are displayed on the webpage tab which is developed using Dash-Plotly with python.
any help will be appreciated.
I Want to change the name and icon which are displayed on the webpage tab which is developed using Dash-Plotly with python.
any help will be appreciated.
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)