Python Google Chart
About
pygooglechart is a complete Python wrapper for the Google Chart API.
Example
import pygooglechart as gc
chart = gc.SimpleLineChart(200, 80)
data = [int(a) for a in '314159265358979323846264338327950288419716939937510']
chart.add_data(data)
chart.download('pi.png')
This will download the following graph:
Documentation
Documentation and examples are slowly progressing.
Mailing List
Announcements, suggestions, bug reports can be discussed here:
You can subscribe directly by entering your email address:
Installation
pygooglechart works with Linux, Windows and Mac OS X. There are a few ways of installing it:
If you have setuptools installed, simply run the following:
easy_install pygooglechart
Or download the package shown below, extract it, hop into the directory and run:
python setup.py install
Or if you are a Windows user, download and run:
Source Code
View the latest source code online or download using the methods below.
Download
Subversion
svn co svn://slowchop.com/pygooglechart/trunk/