“Se dict json” Respostas de código

python json verifique se a chave existe

if 'to' not in data:
    raise ValueError("No target in given data")
if 'data' not in data['to']:
    raise ValueError("No data for target")
Fafabulous

Se dict json

class LoadInfo(object):
    def load_from_file(self, file):
        with open(file) as f:
            data = f.read()
        self.config = json.loads(data)

    def load_from_str(self, info):
        if isinstance(info, dict):
           self.config = info
        elif isinstance(info, str):
            self.config = json.loads(info)
        else:
            raise ValueError('Load config error')
Eky Nugroho

Respostas semelhantes a “Se dict json”

Perguntas semelhantes a “Se dict json”

Mais respostas relacionadas para “Se dict json” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código