This application was created for my grandmother to use to help her with sending attachments with emails. I decided to name it PaperClip due to the common image of a paper clip being used to attach things to emails. So I decided to utilize some of my programming skills to help her out a bit.
I created a simple GUI utilizing the python module for her to send emails through, Tkinter: https://wiki.python.org/moin/TkInter
You can run this application via running it directly through your Termainl or Commnad Prompt.
python3 <directory path of repo on local machine>/email_attachment_main.py
or
I created a Bash script to be used on Windows and Mac machines to execute right from a desktop icon
[Desktop Entry]
Name=PaperClip
Comment=Runs GUI for PaperClip
Exec=<path to email_attachment_main.py>
Terminal=false
Type=Application
!/bin/sh
python3 /Users/Rahombus97/Documents/dev/tk_email_attachment/email_attachment_main.py
Tkinter: https://wiki.python.org/moin/TkInter
Pull down the repo and change into the directory to run email_attachment_main.py
cd email_attachment_app/src
python3 email_attachment_main.py