mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-06-30 16:05:51 +00:00
This means mostly sorting by key:
for f in sorted(glob.glob('*.yml')) + sorted(glob.glob('[a-z]*/*.yml')):
print(f)
with open(f) as fp:
data = yaml.safe_load(fp)
with open(f, 'w') as fp:
yaml.dump(data, fp, default_flow_style=False, sort_keys=True, allow_unicode=True)
10 lines
395 B
YAML
10 lines
395 B
YAML
archive:
|
|
description: The archive of the official F-Droid Free Software repository. Apps
|
|
here are old and can contain known vulnerabilities and security issues!
|
|
icon: fdroid-icon.png
|
|
name: F-Droid Archive
|
|
repo:
|
|
description: The official F-Droid Free Software repository. Everything in this repository
|
|
is always built from the source code.
|
|
icon: fdroid-icon.png
|
|
name: F-Droid
|