From 6bff5a55fbc3ad3d185a566475e6509ecf1e5e8c Mon Sep 17 00:00:00 2001 From: Cutieguwu Date: Wed, 10 Apr 2024 11:49:41 -0400 Subject: [PATCH 1/3] Initial Repo Setup --- CutieDecrypt.py | 17 +++++++++++++++++ CutieParser.py | 22 ++++++++++++++++++++++ README.md | 21 +++++++++++++++++++++ main.py | 19 +++++++++++++++++++ 4 files changed, 79 insertions(+) create mode 100644 CutieDecrypt.py create mode 100644 CutieParser.py create mode 100644 main.py diff --git a/CutieDecrypt.py b/CutieDecrypt.py new file mode 100644 index 0000000..756ec14 --- /dev/null +++ b/CutieDecrypt.py @@ -0,0 +1,17 @@ +#!~/.pyenv/versions/3.11.6/bin/python +# +# Copyright (c) 2024 Cutieguwu | Olivia Brooks +# +# -*- coding:utf-8 -*- +# @Title: CutieDecryptor +# @Author: Cutieguwu | Olivia Brooks +# @Collaborator: JellieJayde | Jayde Paquette +# @Email: owen.brooks77@gmail.com | obroo2@ocdsb.ca +# @Description: Decrypts a file. +# +# @Script: decrypt.py +# @Date Created: 10 Apr, 2024 +# @Last Modified: 10 Apr, 2024 +# @Last Modified by: Cutieguwu | Olivia Brooks +# ---------------------------------------------------------- + diff --git a/CutieParser.py b/CutieParser.py new file mode 100644 index 0000000..04d6f97 --- /dev/null +++ b/CutieParser.py @@ -0,0 +1,22 @@ +#!~/.pyenv/versions/3.11.6/bin/python +# +# Copyright (c) 2024 Cutieguwu | Olivia Brooks +# +# -*- coding:utf-8 -*- +# @Title: CutieDecryptor +# @Author: Cutieguwu | Olivia Brooks +# @Collaborator: JellieJayde | Jayde Paquette +# @Email: owen.brooks77@gmail.com | obroo2@ocdsb.ca +# @Description: Parses an encrypted file for patterns and characteristics. +# +# @Script: parser.py +# @Date Created: 10 Apr, 2024 +# @Last Modified: 10 Apr, 2024 +# @Last Modified by: Cutieguwu | Olivia Brooks + +# ---------------------------------------------------------- +# +# Note: Script cannot be called "parser" as that clashes with stdlib module parser. +# +# ---------------------------------------------------------- + diff --git a/README.md b/README.md index 19ec9b9..2a7e295 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,23 @@ # CutieDecryptor Basic Substitution Cypher decryption script. + +--- + +## Notes: + +#### + +Due to a limitation with Replit, everything must be contained in root dir. +"parser" clashes with stdlib parser, therefore all libraries are prefixed with "Cutie". + +--- + +#### Python Versions: + +Designed using Python 3.11.6 + +Scripts should maintain backwards compatibility with Python 3.3.1 + +--- + +Copyright: Cutieguwu and JellieJayde \ No newline at end of file diff --git a/main.py b/main.py new file mode 100644 index 0000000..652e88c --- /dev/null +++ b/main.py @@ -0,0 +1,19 @@ +#!~/.pyenv/versions/3.11.6/bin/python +# +# Copyright (c) 2024 Cutieguwu | Olivia Brooks +# +# -*- coding:utf-8 -*- +# @Title: CutieDecryptor +# @Author: Cutieguwu | Olivia Brooks +# @Collaborator: JellieJayde | Jayde Paquette +# @Email: owen.brooks77@gmail.com | obroo2@ocdsb.ca +# @Description: All-in-one script to decrypt substitution cyphers. +# +# @Script: main.py +# @Date Created: 10 Apr, 2024 +# @Last Modified: 10 Apr, 2024 +# @Last Modified by: Cutieguwu | Olivia Brooks +# ---------------------------------------------------------- + +import CutieDecrypt, CutieParser + From ef8825555399b3b1ff40242d3f43c9a3c5b944c4 Mon Sep 17 00:00:00 2001 From: Cutieguwu Date: Wed, 10 Apr 2024 11:50:16 -0400 Subject: [PATCH 2/3] Fixing minor error from last push. --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 2a7e295..cda8db1 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,6 @@ Basic Substitution Cypher decryption script. ## Notes: -#### - Due to a limitation with Replit, everything must be contained in root dir. "parser" clashes with stdlib parser, therefore all libraries are prefixed with "Cutie". From 101b22100ed074befbe9c81e24fc0f0422c750b5 Mon Sep 17 00:00:00 2001 From: Cutieguwu Date: Wed, 10 Apr 2024 16:31:44 -0400 Subject: [PATCH 3/3] Changing Owner --- CutieParser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CutieParser.py b/CutieParser.py index 04d6f97..d7e203d 100644 --- a/CutieParser.py +++ b/CutieParser.py @@ -4,8 +4,8 @@ # # -*- coding:utf-8 -*- # @Title: CutieDecryptor -# @Author: Cutieguwu | Olivia Brooks -# @Collaborator: JellieJayde | Jayde Paquette +# @Author: JellieJayde | Jayde Paquette +# @Collaborator: Cutieguwu | Olivia Brooks # @Email: owen.brooks77@gmail.com | obroo2@ocdsb.ca # @Description: Parses an encrypted file for patterns and characteristics. #