我使用Google Drive API创建.csv,我在“Drive”显示中看到它,但我在“表格”中看不到它。我怎样才能让它显示在表格中?这里是我的代码:在Python中创建Google表格
credentials = get_credentials()
http = credentials.authorize(httplib2.Http())
service = discovery.build('drive', 'v3', http=http)
results = service.files().create(body={"name":"Test7.csv"}, media_body='/tmp/inputfile.csv', keepRevisionForever=None, useContentAsIndexableText=None, supportsTeamDrives=None, ocrLanguage=None, ignoreDefaultVisibility=None).execute()
您可能要到'convert'参数添加到TRUE;当[上传](https://开头开发商.google.com/drive/v2/reference/files/insert)该文件将触发是否将此文件转换为相应的Google文档格式。你可以查看这个[GitHub](https://gist.github.com/9b/5608784)来查看python中的实现。希望这可以帮助。 –