I have added the newest version of the wrapper to the google code
page. Here is whats new:
Reverse functionality
>>> G = GChart.fromurl('
http://chart.apis.google.com/chart?ch...')
<GChartWrapper.GChart instance at...>
Restuctured Axes functions. You must declare indexes, axes is callable
# Old Way
>>> G.axes.type('xy')
>>> G.axes.label('Mar','Apr','May')
>>> G.axes.label(None,'50+Kb')
# New Way
>>> G.axes('xy')
>>> G.axes.label(0, 'Mar','Apr','May')
>>> G.axes.label(1, None,'50+Kb')
Centralized and added unittests.
Enhanced unicode support.
Demos pages w/ source code available at
chartograpy.net.
Chaining fixes
There is also a new site where you can see demos from the unittests:
http://chartography.net/media/google-chartwrapper-demo