-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path__init__.py
More file actions
44 lines (37 loc) · 1.33 KB
/
__init__.py
File metadata and controls
44 lines (37 loc) · 1.33 KB
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
# from .nodes.EZ_Testing import EZ_Test # TESTING
from .nodes.EZ_Prompt_Loader import EZ_Prompt_Loader
from .nodes.EZ_CSV_Loader import EZ_CSV_Loader
from .nodes.EZ_Tag_Loader import EZ_Tag_Loader
from .nodes.EZ_Text_Concat import EZ_Text_Concat
from .nodes.EZ_Switch import EZ_Switch
from .nodes.EZ_Input import EZ_Input
from .nodes.EZ_Text_Utils import \
EZ_Extract_Prompt, \
EZ_Text_to_Size, \
EZ_Find_Replace
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS', 'WEB_DIRECTORY']
NODE_CLASS_MAPPINGS = {
# "EZ_Test": EZ_Test, # TESTING
"EZ_Prompt_Loader": EZ_Prompt_Loader,
"EZ_CSV_Loader": EZ_CSV_Loader,
"EZ_Tag_Loader": EZ_Tag_Loader,
"EZ_Extract_Prompt": EZ_Extract_Prompt,
"EZ_Find_Replace": EZ_Find_Replace,
"EZ_Text_to_Size": EZ_Text_to_Size,
"EZ_Text_Concat": EZ_Text_Concat,
"EZ_Input": EZ_Input,
"EZ_Switch": EZ_Switch,
}
NODE_DISPLAY_NAME_MAPPINGS = {
# "EZ_Test": "EZ Test Node", # TESTING
"EZ_Prompt_Loader": "EZ Prompt Loader",
"EZ_CSV_Loader": "EZ CSV Loader",
"EZ_Tag_Loader": "EZ Tag Loader",
"EZ_Extract_Prompt": "EZ Extract Prompt",
"EZ_Find_Replace": "EZ Find & Replace",
"EZ_Text_to_Size": "EZ Text to Size",
"EZ_Text_Concat": "EZ Text Concatenate",
"EZ_Input": "EZ Input",
"EZ_Switch": "EZ Switch",
}
WEB_DIRECTORY = "./web"