Merge to undo later

This commit is contained in:
Cutieguwu
2024-04-23 12:48:03 -04:00
parent 091ad5995b
commit 1e16e3ef1b
5 changed files with 387 additions and 19 deletions

View File

@@ -11,7 +11,7 @@
#
# @Script: CutieParser.py
# @Date Created: 10 Apr, 2024
# @Last Modified: 11 Apr, 2024
# @Last Modified: 15 Apr, 2024
# @Last Modified by: Cutieguwu | Olivia Brooks
# ----------------------------------------------------------
@@ -20,6 +20,7 @@
#
# ----------------------------------------------------------
<<<<<<< Updated upstream
from os import path
execDir = path.dirname(__file__)
@@ -29,6 +30,9 @@ dataEncoded = []
print ("Start")
=======
<<<<<<< HEAD
>>>>>>> Stashed changes
def parse(dataReference, dataEncoded):
return order(dataReference), order(dataEncoded)
@@ -48,6 +52,7 @@ with open(execDir + "\\dataReference.txt", "r") as f:
if dataLanguageChar.lower() not in dataLanguage:
dataLanguage.append(dataLanguageChar.lower())
<<<<<<< Updated upstream
if dataLanguageChar == "~":
print (dataLanguage)
break
@@ -64,4 +69,11 @@ with open(execDir + "\\dataEncoded19.ENC", "r") as f:
print (dataEncoded)
break
parse(dataLanguageChar, dataEncodedChar)
parse(dataLanguageChar, dataEncodedChar)
=======
parse(dataLanguage, dataEncoded)
=======
with open("dataReference.txt", "r") as f:
data = f.read()
>>>>>>> origin/Decryption-script
>>>>>>> Stashed changes