bundlewrap/bin/script-template
mwiegand 005c640b1f wip
2021-06-16 23:56:31 +02:00

16 lines
314 B
Python
Executable file

#!/usr/bin/env python3
from bundlewrap.repo import Repository
from os.path import realpath, dirname
repo = Repository(dirname(dirname(realpath(__file__))))
domains = set()
for node in repo.nodes:
domains.update(
set(node.metadata.get('opendkim/domains', []))
)
print(domains)
# Do in Metaproc