Error Loading Dependencies for Range Slider

Hi All,

I am having trouble using a range slider component continuously for time.

Below is the code I am trying to use for a simplified version. I have been getting the “Error loading dependencies” in the browser. I have tried the classic datetime library instead of pandas and that does not work either.

Thanks in advance.

import dash
import dash_core_components as dcc
import dash_html_components as html
import pandas as pd

app = dash
app.layout = html.Div(children=[

html.Div([
    dcc.RangeSlider(
        id = 'datetime_RangeSlider',
        min = pd.to_datetime('2017, 10, 17'),
        max = pd.to_datetime('2017, 10, 18'),
       )
    ])
])

if name == ‘main’:
app.run_server(debug=False)

@Efidler12 - did you end of figuring this one out?

According to the docs, slider’s min and max values should be numbers. So I used epochs.