Skip to content

Instantly share code, notes, and snippets.

@rreece
Created January 6, 2024 22:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rreece/8951e87ec4d06a7ce1874570c5baee6d to your computer and use it in GitHub Desktop.
Save rreece/8951e87ec4d06a7ce1874570c5baee6d to your computer and use it in GitHub Desktop.
read_yaml.py
import yaml
def read_yaml(path):
with open(path, 'r') as f:
config = yaml.safe_load(f)
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment