To parse a YAML file in Python, you will need to make use of the PyYAML library.
You can get this using the pip3
pip3 install pyyaml
YAML file: countries.yaml
- country:
name: "USA"
capital: "Washington, D.C."
cities:
- name: "New York City"
population: 8537673
tourist_spots:
- "Statue of Liberty"
- "Times Square"
- "Central Park"
- name: "Los Angeles"
population: 3979576
tourist_spots:
- "Hollywood Walk of Fame"
- "Universal Studios"
- "Santa Monica Pier"
- country:
name: "France"
capital: "Paris"
cities:
- name: "Paris"
population: 2140526
tourist_spots:
- "Eiffel Tower"
- "Louvre Museum"
- "Notre-Dame Cathedral"
- name: "Nice"
population: 342637
tourist_spots:
- "Promenade des Anglais"
- "Old Town (Vieux Nice)"
- "Castle Hill (Colline du Château)"
Python Code to PArse YAML file
'''
Parsing YAML file in Python
Author : Code2care.org
Version : v 1.0
Date : 3 July 2023
'''
import yaml
def parse_yaml_file(yaml_file):
with open(yaml_file, 'r') as file:
data = yaml.safe_load(file)
return data
yaml_file = 'countries.yaml'
parsed_data = parse_yaml_file(yaml_file)
for country in parsed_data:
print("Country:", country['country']['name'])
print("Capital:", country['country']['capital'])
print("Cities:")
for city in country['country']['cities']:
print(" > Name:", city['name'])
print(" Population:", city['population'])
print(" Tourist Spots:", city['tourist_spots'])
print("")
Output:
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- How to convert int to ASCII in Python
- How to make use of SQLite Module in Python?
- Split a String into Sub-string and Parse in Python
- Python: Pandas Rename Columns with List Example
- How to run Python file from Mac Terminal
- How to Exit a Loop in Python Code
- Python: How to Plot a Histogram using Matplotlib and data as list
- MD5 Hashing in Python
- Jupyter: Safari Cant Connect to the Server localhost:8888/tree
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python]
- How to Read a binary File with Python
- How to add two float numbers in Python
- Python: How to install YAML Package
- Python: How to Save Image from URL
- What is Markdown in Jupyter Notebook with Examples
- How to change the Python Default version
- 33: Python Program to send an email vid GMail
- How to comment code in Python
- How to Fix AttributeError in Python
- Fix: error: Jupyter command `jupyter-nbconvert` not found [VSCode]
- How to comment out a block of code in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- Import Other Python Files Examples
- Python: How to add Progress Bar in Console with Examples
- 3 Ways to convert bytes to String in Python
More Posts:
- Adding Sub Headings to Bootstrap Header tags - Html
- How to Install Microsoft Teams App on M1 or M2 Mac - Teams
- ls Command to See Hidden Files - Linux
- Step-by-Step: Setting up Docker + Ubuntu Linux + Git + GitHub Tutorial - Git
- 9 Mac Keyboard Shortcuts for Taking Screenshots (covers macOS Ventura 13) - MacOS
- How to Know Which Python Version Installed on Jupyter Notebook - Python
- Generate Project Dependency tree using Gradle Command - Gradle
- 10 Beginners Commands for macOS Terminal Usage - MacOS