update to python fastpi

This commit is contained in:
Iliyan Angelov
2025-11-16 15:59:05 +02:00
parent 93d4c1df80
commit 98ccd5b6ff
4464 changed files with 773233 additions and 13740 deletions

View File

@@ -0,0 +1,60 @@
"""
aiosmtplib
==========
An asyncio SMTP client.
Originally based on smtplib from the Python 3 standard library by:
The Dragon De Monsyne <dragondm@integral.org>
Author: Cole Maclean <hi@colemaclean.dev>
"""
from .api import send
from .errors import (
SMTPAuthenticationError,
SMTPConnectError,
SMTPConnectTimeoutError,
SMTPDataError,
SMTPException,
SMTPHeloError,
SMTPNotSupported,
SMTPReadTimeoutError,
SMTPRecipientRefused,
SMTPRecipientsRefused,
SMTPResponseException,
SMTPSenderRefused,
SMTPServerDisconnected,
SMTPTimeoutError,
SMTPConnectResponseError,
)
from .response import SMTPResponse
from .smtp import SMTP
from .typing import SMTPStatus
__title__ = "aiosmtplib"
__version__ = "3.0.1"
__author__ = "Cole Maclean"
__license__ = "MIT"
__copyright__ = "Copyright 2022 Cole Maclean"
__all__ = (
"send",
"SMTP",
"SMTPResponse",
"SMTPStatus",
"SMTPAuthenticationError",
"SMTPConnectError",
"SMTPDataError",
"SMTPException",
"SMTPHeloError",
"SMTPNotSupported",
"SMTPRecipientRefused",
"SMTPRecipientsRefused",
"SMTPResponseException",
"SMTPSenderRefused",
"SMTPServerDisconnected",
"SMTPTimeoutError",
"SMTPConnectTimeoutError",
"SMTPReadTimeoutError",
"SMTPConnectResponseError",
)