Getting to know... Dash
This blog is new and I'm not entirely sure on the content I want to build for it. However, this might be the first in the series of "Getting to know... X" where I familiarize myself with a new technology. In any case, this one's for Dash ! Over the past three days I decided to read about Dash . According to the user guide, "Dash is a productive Python framework for building web applications." I began with the Dash User Guide and jumped right to the Dash Tutorial: Part 1. Installation . There was not much here except `pip install dash` Next: Part 2. Layout . In this section of the tutorial, I found the following feature to be useful: Dash includes "hot-reloading", this features is activated by default when you run your app with `app.run_server(debug=True)`. This means that Dash will automatically refresh your browser when you make a change in your code. Of course, the user has the option to turn the feature off `app.run_server(dev_tools_h...