class yamf:
def __init__(self, host, port, user, pw, imap = imaplib.IMAP4_SSL):
self.imap = imap(host, port)
self.imap.login(user, pw)
print(self.imap.welcome.decode())# this is how far I am
Undiscussed Horrific Abuse, One Victim of Many Sat, 14 May 2022 04:12:59 -0700
class yamf:
def __init__(self, host, port, user, pw, imap = imaplib.IMAP4_SSL):
self.imap = imap(host, port)
self.imap.login(user, pw)
print(self.imap.welcome.decode())# this is how far I am