-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain3.py
More file actions
47 lines (44 loc) · 2.06 KB
/
main3.py
File metadata and controls
47 lines (44 loc) · 2.06 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
45
46
47
from jzsense.common.constants import *
from jzsense.js import *
from jzsense.scrappers.ds4 import *
from jzsense.converters.javascript import convert
import os # Path joining.
import multiprocessing # Process multiple pages at a time.
# import DAZtoJSv3 # Used to get documentation from old documentation website (zipped).
# from DAZtoJSv4 import *
from datetime import datetime # Timestamp JzSense file because I'm lazy ._.
def main():
daz_objects = get_ds4_objects()
# Multiprocessing code: hasn't been tested.
# with multiprocessing.Pool(10) as p:
# results = p.map(ProcessObject, daz_objects)
# Better for debugging or just doing it on one CPU.
results = []
for object in daz_objects:
try:
results.append(ProcessObject(object).dzObj)
except AttributeError:
continue
# Now call DAZtoJSv3 and get the objects. We don't need to update same classes with OLD info pass in DzObjects already created.
# processedClasses = DAZtoJSv3.BeginWork()
# Write to file.
fileLocation = os.path.join(os.getcwd(),f"test_{JS_NAME}")
with open(fileLocation, "ab+") as file:
totalStr = bytes()
# results.extend(processedClasses) # Add v3 documentation.
for dazObj in results:
json_doc = convert(dazObj)
file.write(str.encode(json_doc, "utf-8"))
file.write(b"\n" + totalStr)
file.close()
# Print a victory message!
print("JzIntellisense.js complete!\n=================================================\n=================================================\n\n")
print("ERRORED ENUMS\n")
for error in ERRORED_ENUMS:
print(error,end="\n")
print("\nSKIPPED DZOBJS\n")
for obj in SKIPPED_DZOBJS:
print(obj,end="\n")
# The default cube, ctrl + a, ctrl + c, wombo combo.
if __name__ == "__main__":
main()