views:

278

answers:

2

Hi, Can anybody please tell me is there any possible way to connect to spreadsheet from python? I want to store some data from a form and submit it to google spreadsheet. Please help on this issue. What steps do I have to follow?

Thanks in advance...

+1  A: 

There is a python api for google docs http://code.google.com/intl/fr/apis/gdata/articles/python_client_lib.html. I am not sure if it works with app engine

luc
+1  A: 

Sure, you can validate with OAuth then use the gdata Python API -- see this thread for more details and caveats, this code for a good simple example of OAuth use in Python on App Engine.

Alex Martelli