Comment analyser un fichier YAML en Python ?
Réponse
Trop de publicités?
Arpan Saini
Points
383
La fonction read_yaml_file retourne toutes les données dans le dictionnaire.
def read_yaml_file(full_path=None, relative_path=None):
if relative_path is not None:
resource_file_location_local = ProjectPaths.get_project_root_path() + relative_path
else:
resource_file_location_local = full_path
with open(resource_file_location_local, 'r') as stream:
try:
file_artifacts = yaml.safe_load(stream)
except yaml.YAMLError as exc:
print(exc)
return dict(file_artifacts.items())
- Réponses précédentes
- Plus de réponses