8 lines
137 B
Python
8 lines
137 B
Python
import yaml
|
|
|
|
name = "name"
|
|
desc = "description"
|
|
|
|
with open("pages.yaml", "r", encoding='utf-8') as fp:
|
|
GenLists = yaml.safe_load(fp)
|