initial commit, create bundlewrap repo
This commit is contained in:
commit
700ab964bf
5 changed files with 30 additions and 0 deletions
7
nodes.py
Normal file
7
nodes.py
Normal 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())
|
Loading…
Add table
Add a link
Reference in a new issue