I have a Django website running and i am looking for a way to run a script that constantly fetch some data from the Internet and insert them into my Django app database.
how can i keep script running as long as server is up ? (no need to start it manually - and don't want to stop it at all!!) i guess celery is not what i want !?!
,and how can i use Django ORM in this script for inserting data into db? i tried threading but think its should be started by calling the script or ..