From 47f4fcb485273699ff47f1449d9f4427ddf69de3 Mon Sep 17 00:00:00 2001 From: kris-0605 Date: Tue, 21 May 2024 23:41:57 +0100 Subject: [PATCH 1/3] Remove and ignore future __pycache__ --- .gitignore | 1 + __pycache__/Dicts.cpython-312.pyc | Bin 1384 -> 0 bytes 2 files changed, 1 insertion(+) create mode 100644 .gitignore delete mode 100644 __pycache__/Dicts.cpython-312.pyc diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..763624e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__/* \ No newline at end of file diff --git a/__pycache__/Dicts.cpython-312.pyc b/__pycache__/Dicts.cpython-312.pyc deleted file mode 100644 index 885d6be76d7ed1f4d2385e7ec1106b6be4cfbe4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1384 zcmZ9L%Wo4`6vpoz$B#I6Ue2RUh-09H*f4_wi35}ZNgQw>PZFSwjH<}TRa{CynS_c_ zBDFgzRU%au^`eVxkSy_EblVkTfi){6{(+%gbyoe(y^~ER(szF6obQ}_Gb8_%OvVMC z{oJGKa!81eoE$&N0RAaSA$}J%L4xF=B!fcG779Zn6otm96&j~DXo8Z^cItq3QWvzF zQqUgih4xWD^fUS#IzWTa6Ep-((=aqcCl4jgIYp;`ou-*X`C3wuX6Y8)rV`E39lA^N zv_Olr^heukxh|^Wd%ThVKW~CUQM?kbWF=G+72{D%h_ZpVDE8%^+!Ke!ukjX93GK^$ zv2MIrt{5`NeiYdiS57&GWx8_OX)!I!a^(zz2`D-tR9rdhOXw}9#Zu+lD092S1@6yb z0m2>Rrio2=c@A-&3*1?746ZLCAY0;jq|3^W!U_&l1NWSeI$;%&=hl1)-+j&yAE@&H z57~zJwYo9j8+BvAy4r-vF(=G-LFpn$U+WT+8XQ-|J0~<@qTq!2-v>>C^qaWM1XRHc zg6TxKW+LLU_(MddTmTDg-edAUlsQE(eYxjE^?;RabLACR=6!j7JBlyp%NxGDu-&h4 z)R$RbW_%f6%!b_f!qUCf*>8(;Giz?Rwo`p#yRB36%OzFG8m@fo%I7w|w#euG+|1ST zeY?7CmrEO4Th(&0YCqn2`mDUVxodBh7dC2J+wsBg~2h|Ou`$2UTp*!L+ zc@fc>!osNLfg$V+7@l6uG4>R^R`$fiiQ)RrF~ifNInJI5uZ=x%fs?*F=CirR$R|}# zXit(o3HDUIfUzf~xm|lY*we1}1dKgrJjI>*K3(kTBxUeZ*fEb From 61a1949abe981d2c2b8125da57c6c9010e301863 Mon Sep 17 00:00:00 2001 From: kris-0605 Date: Tue, 21 May 2024 23:44:01 +0100 Subject: [PATCH 2/3] Upgrade README to markdown --- README.md | 6 ++++++ README.txt | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 README.md delete mode 100644 README.txt diff --git a/README.md b/README.md new file mode 100644 index 0000000..6f4dcda --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# This is the Shush Image - Text Encryption Tool + +Given an image (jpg or png) and a text file (.txt) it can create a new image (png) which will contain the text of the .txt file inside of it. +This process can then be reversed using the Decrypt function and a png image which has text encrypted into it. + +Github: [https://github.com/Hannah-Dagemark/Shush](https://github.com/Hannah-Dagemark/Shush) \ No newline at end of file diff --git a/README.txt b/README.txt deleted file mode 100644 index 9cfa02e..0000000 --- a/README.txt +++ /dev/null @@ -1,6 +0,0 @@ -## This is the Shush Image - Text Encryption Tool - -## Given an image (jpg or png) and a text file (.txt) it can create a new image (png) which will contain the text of the .txt file inside of it. -## This process can then be reversed using the Decrypt function and a png image which has text encrypted into it. - -## Github: https://github.com/Hannah-Dagemark/Shush \ No newline at end of file From bd20ace000213fd228fe9c356c94fe7224101002 Mon Sep 17 00:00:00 2001 From: kris-0605 Date: Tue, 21 May 2024 23:52:44 +0100 Subject: [PATCH 3/3] Add requirements.txt --- README.md | 13 ++++++++++++- requirements.txt | 2 ++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 6f4dcda..9cf1e2c 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,15 @@ Given an image (jpg or png) and a text file (.txt) it can create a new image (png) which will contain the text of the .txt file inside of it. This process can then be reversed using the Decrypt function and a png image which has text encrypted into it. -Github: [https://github.com/Hannah-Dagemark/Shush](https://github.com/Hannah-Dagemark/Shush) \ No newline at end of file +## Installation + +To install dependencies, run: +``` +pip install -r requirements.txt +``` + +Then, run `main.py`. + +## Github + +[https://github.com/Hannah-Dagemark/Shush](https://github.com/Hannah-Dagemark/Shush) \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e8ef192 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +pillow +sv-ttk \ No newline at end of file