Skip to Content

avec GchartWrapper

  1. >>> from GChartWrapper import *
  2. >>> G = Line('27,76.5,92,34,65,81,82,80,63,24,70.54,45.89,29.75,27',encoding='text')
  3. >>> G.size(250,100)
  4. >>> G.axes.type('xy')
  5. >>> G.url
  6. 'http://chart.apis.google.com/chart?chxt=x,y&chd=t:27,76.5,92,34,65,81,82,80,63,24,70.54,45.89,29.75,27&chma=0,0,30,0&chs=250x100&cht=lc'
  7. >>> G.show() #montre le graphique dans le butineur par défaut
  8. >>> import urllib2
  9. >>> fichier = urllib2.urlopen(G.url)
  10. >>> open('chartGchart.png','wb').write(fichier.read())