-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_structure.py
52 lines (49 loc) · 1.34 KB
/
create_structure.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import os
# Define the directory structure
structure = {
"Eventious": {
"backend": {
"manage.py": "",
"eventious": {
"__init__.py": "",
"settings.py": "",
"urls.py": "",
"wsgi.py": "",
"asgi.py": ""
},
"events": {
"migrations": {},
"__init__.py": "",
"admin.py": "",
"apps.py": "",
"models.py": "",
"tests.py": "",
"views.py": ""
}
},
"frontend": {
"node_modules": {},
"public": {},
"src": {
"components": {},
"App.js": "",
"index.js": ""
},
"package.json": "",
"package-lock.json": ""
},
".gitignore": "",
"README.md": ""
}
}
def create_structure(base_path, structure):
for name, content in structure.items():
path = os.path.join(base_path, name)
if isinstance(content, dict):
os.makedirs(path, exist_ok=True)
create_structure(path, content)
else:
with open(path, 'w') as f:
f.write(content)
# Create the directory structure
create_structure(".", structure)