initial commit, create bundlewrap repo

This commit is contained in:
Franzi 2020-02-23 10:13:45 +00:00
commit 700ab964bf
Signed by: kunsi
GPG key ID: 12E3D2136B818350
5 changed files with 30 additions and 0 deletions

7
nodes.py Normal file
View file

@ -0,0 +1,7 @@
from os.path import join
from pathlib import Path
nodes = {}
for node in Path(join(repo_path, "nodes")).rglob("*.py"):
with open(node, 'r') as f:
exec(f.read())