Q:

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
"""

# Import Google Client libraries
from googleapiclient.discovery import build

# Build service (docs api v1 in our case)
service = build('docs', 'v1', credentials=creds)

# Make a request body
requests = {
  'title': title
}

# Create the document
doc = service.documents().create(body=requests).execute()
1

New to Communities?

Join the community