django-cache-utils2 0.1

django-cache-utils2 is a Django app that provides cached decorator and invalidate function.Installationpip install django-cache-utils2Usagefrom cache_utils2 import cached, invalidate@cached(60)def foo(x, y=0): print 'foo is called' return...