“Python Yaml Parser” Code-Antworten

Python las Yaml

# read_categories.py file

import yaml

with open(r'E:\data\categories.yaml') as file:
    documents = yaml.full_load(file)

    for item, doc in documents.items():
        print(item, ":", doc)
Stupid Stork

Python Yaml Parser

pip install pyyaml

import yaml
with open("example.yaml", 'r') as stream:
    try:
        print(yaml.safe_load(stream))
    except yaml.YAMLError as exc:
        print(exc)
chasa

Ähnliche Antworten wie “Python Yaml Parser”

Fragen ähnlich wie “Python Yaml Parser”

Weitere verwandte Antworten zu “Python Yaml Parser” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen