GAE,来自好吃的进口api导致“ NotImplementedError:仅tempfile.TemporaryFile可用”

时间:2019-04-16 00:33:46

标签: django google-app-engine tastypie

需要针对Google App引擎上的Tastypie错误提供一些帮助。该代码在GAE上长期运行良好。突然,在导入tastypie api时出现一些奇怪的错误。

不确定django,spastepie和python版本是否不匹配。

---- my_api.py ----

class TripletImageLoader(torch.utils.data.Dataset):
    def __init__(self):
        self.data = [0]*10000000

    def __getitem__(self, index):
        pid = os.getpid() % WORKER_SIZE
        # My code here only uses pid, doesnt use index

        return torch.tensor(batch.data), torch.tensor(batch.label)

    def __len__(self):
        return len(self.data)

----错误日志文件----

....

from django.conf import settings
from django.conf import urls
from tastypie import api    >>>> cause problem <<<<

0 个答案:

没有答案