Reputation: 1230
The server as well as the client side program are to be written in Python. Can someone tell me how to use Python on the client side to communicate with the Google App Server written in Python?
Google app engine already provides a Channel API but that is on the server side and it requires JavaScript on the client side.
Will embedding JavaScript in Python help? Any other alternatives?
Using Python 2.5 and Google App Engine v 1.5.
Upvotes: 0
Views: 553
Reputation: 10177
Have you considered a building a restful api on the backend? Maybe django-piston could help there (not sure if it runs on GAE out of the box).
There is also Python library of the Google Channel API Client side, apparently somebody reverse-engineered the protocol: https://bitbucket.org/lohre/gae_channel/overview/
Upvotes: 4