The python sample source code goes thru the details of authentication/etc. I am looking for a simple upload to the Google Drive folder that has public writable permissions. (Plan to implement authorization at a later point).
I want to replace the below code to upload file to Google Drive folder instead.
f = open('output.txt')
for line in allLines:
f.write (line)
f.close()
(If it makes any difference, I plan to run this thru Google App Engine).
Thanks.