“Wenn dict json” Code-Antworten

Python json prüft, ob der Schlüssel vorhanden ist

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

Wenn 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

Ähnliche Antworten wie “Wenn dict json”

Fragen ähnlich wie “Wenn dict json”

Weitere verwandte Antworten zu “Wenn dict json” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen