The docs have .Net and Java examples only, and deciphering the source code
<http://gdata-python-client.googlecode.com/hg/src/gdata/spreadsheet/text_db.py>is
helpful but not good enough for someone new to this. For example, this does
create a spreadsheet but does not create rows and columns with the data
provided:
client = gdata.spreadsheet.text_db.DatabaseClient(username='my gmail',
password='my gmail password')
database = client.CreateDatabase('Test1')
table = database.CreateTable('addresses', ['name','email',
'phonenumber', 'mailingaddress'])
record = table.AddRecord({'name':'Bob', 'email':'[email protected]',
'phonenumber':'555-555-1234', 'mailingaddress':'900 Imaginary St.'})
And that's just the beginning. I need to post "name" and radio button
user-submitted form values to a spreadsheet. Please
show me where and how to do this.
Also, please tell me the distinction between the API Access console and the
Manage Domain AuthSub registration pages, and
why they are not integrated into one? Is this process unnecessarily convoluted
or am I out of league trying to
implement this stuff? For example, I noticed that submitting URL to Manage
Domain AuthSub does not apply that URL to
the API Access console, yet both procedures use Auth.
I got appengine and Datastore working, and would really like to get a similar
process going with
GAE and spreasheets, using Python. Please offer help or direction to sources
beyond the source code,
Python client library, or Django, because I don't use that. Thanks in advance.