Update DataClass.py, GetArc_Hitomi.py, and 2 more files...

작업한거 일단 커밋. 딱히 기능을 추가한건 없지만, 정리는 조금 했다. 정리 더 해야 하는데, 윈도우에서 작업하려고....커밋!!
This commit is contained in:
2025-01-28 17:45:03 +09:00
parent 6fe1cf8da0
commit 07ad09bb50
4 changed files with 105 additions and 41 deletions

View File

@@ -1,4 +1,5 @@
import os
import re
import time
import uuid
import rarfile
@@ -16,7 +17,8 @@ listDbgStr = []
#
def IsEmptyStr(string):
return 0 == len(string.strip())
temp = f"{string}"
return 0 == len(temp.strip())
#
@@ -303,4 +305,6 @@ def UUIDGenRandom():
def UUIDGenName(SeedName):
namespace_uuid = uuid.uuid5(uuid.NAMESPACE_DNS, SeedName)
return namespace_uuid
def GetTextInBrakets(text):
return re.findall(r'\[(.*?)\]', text)