1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-21 20:30:11 +02:00
fdroidserver/tests/parse-fdroiddata-mirror-config.py

14 lines
309 B
Python
Raw Normal View History

#!/usr/bin/env python3
import ruamel.yaml
from pathlib import Path
mirrors_yml = Path('/home/hans/code/fdroid/fdroiddata/config/mirrors.yml')
with mirrors_yml.open() as fp:
mirrors_config = ruamel.yaml.YAML(typ='safe').load(fp)
for d in mirrors_config:
d['url'] += '/repo'
print(d, end=',\n')