I'm in the process to write a new application,
I was thinking in using django for the http side but I was thinking on the best way for handling the data. My problem is that I need to acquire continue data from different processes, save them as files and insert every related info into the database.
The main scope is to have surveillance camera recording video, splitting them in per hour basis and save them in the data dir. From a script take every new files and add data to the database so the view in html can show new files.
My great doubt is that handling files like ./manage.py do_something_with_new_data
could be a pida. I googled a lot for other ways for doing it but I didn't found anything. Do someone here the same problem? How did you solved it?