The goal here is to make it as simple and painless as possible to send emails.
In the end, your code will look something like this:
import BaileyBot
email = BaileyBot.signIn('JohnSmith@example.com', 'password')
email.sendEmail('Bob@example.com', 'Example Subject', 'Example Body')
Note: this bot does not have OAuth2, it is insecure, however a feature like that will be added in the future.
Python 3.x:
pip install BaileyBot[all]
or
pip3 install BaileyBot[all]
If you get problems installing BaileyBot, try installing pip install BaileyBot
After signing in, you can setEmail, setPassword, and view your credentials as such:
email.setEmail('JonnaSmith@example.com')
email.setPassword('PaSsWoRd')
email.viewCreds()
Of course, these are useful for IDLE/CommandLine Python scripting