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/README.md b/README.md new file mode 100644 index 0000000..9cf1e2c --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# 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. + +## 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/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 diff --git a/__pycache__/Dicts.cpython-312.pyc b/__pycache__/Dicts.cpython-312.pyc deleted file mode 100644 index 885d6be..0000000 Binary files a/__pycache__/Dicts.cpython-312.pyc and /dev/null differ 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