I would like to have one python script running in a loop on my RPi. Basically, this script will take some picture with the camera and try to do some face recognization. I also would like to have a website, that would act as a control panel for the script. In this control panel I will be able to suspend the face recognization, to see the logs(who has been seen), and check the unknown people, and configure them.
I know how to do my python script, I've some knowledge in HTML/CSS/JS/WebService, but I've no idea how:
- To have an interaction between the script and the web application(like how to give a flag that would pause the script)
- Host a website on a RPI
- Have the script that could push some things to the website(through a websocket)
Is all that possible? How can I achieve this?
Thank you