I have a script that streams twitter, and catches real-time data from it. This data is then analyzed for the company where I work's products.
The issue is, I want this script to continuously run on a server without having to supervise it. I have no idea how to do this, and whatever I read on stackoverflow so far has been really complicated. Can anyone tell me the basics of the process of making a daemon process in python, and how one would go about it? I am currently going through http://www.gavinj.net/2012/06/building-python-daemon-process.html, and it is a good tutorial,but I would like another opinion too.