This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
""" | |
send an email through gmail | |
Save this script to send-gmail.py, | |
place the body of the email in email_message.txt, | |
and then run: | |
python send-gmail.py \ | |
--wait 5 \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from __future__ import absolute_import, division, unicode_literals | |
import sys | |
from pprint import pprint | |
from qtpy import QtCore | |
from qtpy import QtGui | |
from qtpy import QtWidgets | |
from qtpy.QtCore import Qt |