I want to create an empty Google Sheet (created only with metadata) in Google Drive. When I referred to the Google SpreadSheet API documentation, it says to use the Document
you could also try the pygsheets library i wrote , It ofcourse provies more features than just creating spreadsheets,
import pygsheets gc = pygsheets.authorize(outh_file='client_secret.json') # Open spreadsheet and then worksheet gc.create('my new sheet')