Hello.
This is a little GUI program I coded last month to help me organize one-line notes and URL's that I find on the web. Sometimes it's a little boring to email them to myself manually so I thought why not automate the process using Python.
* Little Preview:
* Usage:
To use noteOrganizer, go to the directory where the script is in, and simply run: python noteOrganizer.py in the terminal, and a window will just pop up.
You have couple of options to save notes, either saving them to the directory the script is in, or email the note. [Please edit and enter your email credentials in the code]
Here is the code or -download it-:
Thank you for reading and Happy Coding! @_YSaif
This is a little GUI program I coded last month to help me organize one-line notes and URL's that I find on the web. Sometimes it's a little boring to email them to myself manually so I thought why not automate the process using Python.
* Little Preview:
* Usage:
To use noteOrganizer, go to the directory where the script is in, and simply run: python noteOrganizer.py in the terminal, and a window will just pop up.
You have couple of options to save notes, either saving them to the directory the script is in, or email the note. [Please edit and enter your email credentials in the code]
Here is the code or -download it-:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
from tkinter import * from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart import tkinter import osimport timeimport smtplib
|
Thank you for reading and Happy Coding! @_YSaif