initial commit
This commit is contained in:
commit
35a1d52840
20 changed files with 238 additions and 0 deletions
7
groups.py
Normal file
7
groups.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from os.path import join
|
||||
from pathlib import Path
|
||||
|
||||
groups = {}
|
||||
for group in Path(join(repo_path, "groups")).rglob("*.py"):
|
||||
with open(group, 'r') as f:
|
||||
exec(f.read())
|
Loading…
Add table
Add a link
Reference in a new issue