编程语言
首页 > 编程语言> > 将python对象腌制到Google云存储

将python对象腌制到Google云存储

作者:互联网

我一直在将对象腌制到文件系统中,并在需要使用这些对象时将其读回.目前,我已经为此目的使用了此代码.

def pickle(self, directory, filename):
    if not os.path.exists(directory):
        os.makedirs(directory)
    with open(directory + '/' + filename, 'wb') as handle:
        pickle.dump(self, handle)

@staticmethod
def load(filename):
    with open(filename, 'rb') as handle:
        element = pickle.load(handle)
    return element

现在,我将应用程序(django)移至Google应用程序引擎,并发现该应用程序引擎不允许我写入文件系统.谷歌云存储似乎是我唯一的选择,但我不明白如何腌制对象作为云存储对象,然后将其读回以创建原始的python对象.

解决方法:

您可以使用Cloud Storage client library.

代替open(),使用cloudstorage.open()(如果将cloudstorage作为gcs导入,则使用gcs.open(),如上述文档中所述),请注意,完整的文件路径以GCS存储桶名称(作为dir)开头.

更多详细信息,请参见cloudstorage.open() documentation.

标签:python,google-cloud-storage,google-app-engine,pickle
来源: https://codeday.me/bug/20191013/1910857.html