Interactive Dash (Datetime input)

Hi, im starting using Dash for a project and i have some doubts There is some way to create an input datetime and using this value to get some data from mongodb ?

Thanks !

Hi @Mohamed_AB

That’s absolutely possible. You should look at the DatePickerSingle and DatePickerRange components in dash-core-components which create date inputs in your layout. You can then assign a callback to the date input that makes a query to your database.

thanks i will try it !!