Hey all,
I am working on an app where I need to be able to trigger a ‘callback’ which then launches a separate script to run some analysis and write that analysis to a database.
Is there any way to implement this in dash without using an API or a task queue service? I’m developing this app for local use and I’m trying to avoid using any TCP ports aside from the port hosting dash.
More or less the callback would be to take input, validate input, call task, and then return a message to the user that the task has been started.
Thanks!