movingaverage is a Python module to compute the moving average of a list. For example: from movingaverage import movingaverage print list(movingaverage([1,2,3,4,5,6], 3)) >>> [2,3,4,5]movingaverage(data, sample_size): Return the moving...