Chartography.net

    
from GChartWrapper import *
# Instantiate the GChart instance, this is all you will need for making charts
# GChart(type=None, dataset=None), see the doc for more
G = GChart()
# Set the chart type, either Google API type or regular name
G.type('pie')
# Update the chart's dataset, can be two dimensional or contain string data
G.dataset( 'helloworld' )
# Set the size of the chart, default is 300x150
G.size(250,100)