google docs api python create headder code example
Example: create document google docs api python
"""
Notes:
Anything else in the requests other than the title will be ignored.
If you want to add text to the new document, you must access the "documentId" key and then do a batchupdate
Replace:
creds = user credentials
title = document title
"""
from googleapiclient.discovery import build
service = build('docs', 'v1', credentials=creds)
requests = {
'title': title
}
doc = service.documents().create(body=requests).execute()