khezen / maildesk

email python library
MIT License
6 stars 0 forks source link

AttributeError: module 'maildesk' has no attribute 'Client' #1

Open Drag817 opened 4 years ago

Drag817 commented 4 years ago

Hi! I have a some problem at the start of using your package:

import maildesk

imap_server = "imap.yandex.com" imap_port = 993 smtp_server = "smtp.yandex.com" smtp_port = 465

mail = maildesk.Client(imap_server,imap_port,smtp_server,smtp_port)


AttributeError Traceback (most recent call last)

in 6 smtp_port = 465 7 ----> 8 mail = maildesk.Client(imap_server,imap_port,smtp_server,smtp_port) AttributeError: module 'maildesk' has no attribute 'Client'
khezen commented 4 years ago

Thank you for reporting. I'll have a look.