I just tried the django template tags for the google charting api by Jacob. Unfortunately they were python 2.5 only and I happen to still be stuck to 2.4. The changes to move it to 2.4 were minimal though. Still to save some of you googlers out there the hassle:
charts
I was just browsing the code a bit. There is something peculiar there:
args, varargs, varkw, defaults = inspect.getargspec(func)
I don’t get the point of using the inspect functionality. Anyone care to explain?