This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dash | |
from dash import dependencies as dd | |
import dash_core_components as dcc | |
import dash_html_components as html | |
import plotly.graph_objs as pg | |
# Config | |
app = dash.Dash() | |
app.scripts.config.serve_locally = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Description | |
----------- | |
This little Python 3 script watches RapydScript/PyScss files contained | |
within a subdirectory of the directory from which it's run and executes the | |
commands | |
``rapydscript <filename>.pyj -o <filename>.js`` and | |
``pyscss <filename>.sass -o <filename>.css`` | |
whenever a RapydScript file ``<filename>.pyj`` or a PyScss file |