Frank
Frank

Reputation: 31090

How to draw a chart in Google App Engine?

I wonder Google App Engine can return a chart ?

What I want is a statistical chart, is there a way for my app in Google App Engine to create a .png chart then return it to the browser ?

For instance when I click a url such as :

http://My_App.appspot.com/Show_App_Stats

It will show me a graphic chart.

Upvotes: 5

Views: 5251

Answers (2)

mgiuca
mgiuca

Reputation: 21377

A couple of years too late, but we now have Matplotlib available for Python 2.7 apps. (It's currently marked "experimental" so you shouldn't rely on it, but it is an option.)

Upvotes: 0

SingleNegationElimination
SingleNegationElimination

Reputation: 156278

Your best bet is to use the Google Visualization API.

Upvotes: 5

Related Questions