Answers for "google docs python api python"

2

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()
Posted by: Guest on May-28-2020
0

google-api-python-client python 3

  pip install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib
Posted by: Guest on September-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language