我是使用 google colaboratory (colab) 和 pydrive 的新手。我正在尝试使用 colab 将数据加载到“CAS_num_strings”中,该数据写入我的 Google 驱动器上特定目录中的 pickle 文件中:
pickle.dump(CAS_num_strings,open('CAS_num_strings.p', 'wb'))
dump_meta = {'title': 'CAS.pkl', 'parents': [{'id':'1UEqIADV_tHic1Le0zlT25iYB7T6dBpBj'}]}
pkl_dump = drive.CreateFile(dump_meta)
pkl_dump.SetContentFile('CAS_num_strings.p')
pkl_dump.Upload()
print(pkl_dump.get('id'))
其中 'id':'1UEqIADV_tHic1Le0zlT25iYB7T6dBpBj' 确保它具有由该 id 给出的特定父文件夹。最后一个打印命令给了我输出:
'1ZgZfEaKgqGnuBD40CY8zg0MCiqKmi1vH'
因此,我能够创建并转储 id 为“1ZgZfEaKgqGnuBD40CY8zg0MCiqKmi1vH”的泡菜文件。现在,为了不同的目的,我想在另一个 colab 脚本中加载这个 pickle 文件。为了加载,我使用命令集:
cas_strings = drive.CreateFile({'id':'1ZgZfEaKgqGnuBD40CY8zg0MCiqKmi1vH'})
print('title: %s, mimeType: %s' % (cas_strings['title'], cas_strings['mimeType']))
print('Downloaded content "{}"'.format(cas_strings.GetContentString()))
这给了我输出:
title: CAS.pkl, mimeType: text/x-pascal
---------------------------------------------------------------------------
UnicodeDecodeError Traceback (most recent call last)
<ipython-input-9-a80d9de0fecf> in <module>()
30 cas_strings = drive.CreateFile({'id':'1ZgZfEaKgqGnuBD40CY8zg0MCiqKmi1vH'})
31 print('title: %s, mimeType: %s' % (cas_strings['title'], cas_strings['mimeType']))
---> 32 print('Downloaded content "{}"'.format(cas_strings.GetContentString()))
33
34
/usr/local/lib/python3.6/dist-packages/pydrive/files.py in GetContentString(self, mimetype, encoding, remove_bom)
192 self.has_bom == remove_bom:
193 self.FetchContent(mimetype, remove_bom)
--> 194 return self.content.getvalue().decode(encoding)
195
196 def GetContentFile(self, filename, mimetype=None, remove_bom=False):
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x80 in position 0: invalid start byte
如您所见,它找到文件 CAS.pkl 但无法解码数据。我希望能够解决这个错误。我了解正常的 utf-8 编码/解码在正常的泡菜转储和使用“wb”和“rb”选项加载期间工作顺利。但是在目前的情况下,转储后我似乎无法从上一步创建的谷歌驱动器中的泡菜文件中加载它。错误存在于我无法指定如何在“return self.content.getvalue().decode(encoding)”处解码数据的地方。我似乎无法从这里(https://developers.google.com/drive/v2/reference/files#resource-representations)找到要修改的关键字/元数据标签。任何帮助表示赞赏。谢谢