當前位置: 首頁>>代碼示例>>Python>>正文


Python MIMENonMultipart.__init__方法代碼示例

本文整理匯總了Python中email.mime.nonmultipart.MIMENonMultipart.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python MIMENonMultipart.__init__方法的具體用法?Python MIMENonMultipart.__init__怎麽用?Python MIMENonMultipart.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在email.mime.nonmultipart.MIMENonMultipart的用法示例。


在下文中一共展示了MIMENonMultipart.__init__方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from email.mime.nonmultipart import MIMENonMultipart [as 別名]
# 或者: from email.mime.nonmultipart.MIMENonMultipart import __init__ [as 別名]
def __init__(self, _msg, _subtype='rfc822'):
        """Create a message/* type MIME document.

        _msg is a message object and must be an instance of Message, or a
        derived class of Message, otherwise a TypeError is raised.

        Optional _subtype defines the subtype of the contained message.  The
        default is "rfc822" (this is defined by the MIME standard, even though
        the term "rfc822" is technically outdated by RFC 2822).
        """
        MIMENonMultipart.__init__(self, 'message', _subtype)
        if not isinstance(_msg, message.Message):
            raise TypeError('Argument is not an instance of Message')
        # It's convenient to use this base class method.  We need to do it
        # this way or we'll get an exception
        message.Message.attach(self, _msg)
        # And be sure our default type is set correctly
        self.set_default_type('message/rfc822') 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:20,代碼來源:message.py

示例2: __init__

# 需要導入模塊: from email.mime.nonmultipart import MIMENonMultipart [as 別名]
# 或者: from email.mime.nonmultipart.MIMENonMultipart import __init__ [as 別名]
def __init__(self, _data, _subtype='octet-stream',
                 _encoder=encoders.encode_base64, **_params):
        """Create an application/* type MIME document.

        _data is a string containing the raw application data.

        _subtype is the MIME content type subtype, defaulting to
        'octet-stream'.

        _encoder is a function which will perform the actual encoding for
        transport of the application data, defaulting to base64 encoding.

        Any additional keyword arguments are passed to the base class
        constructor, which turns them into parameters on the Content-Type
        header.
        """
        if _subtype is None:
            raise TypeError('Invalid application MIME subtype')
        MIMENonMultipart.__init__(self, 'application', _subtype, **_params)
        self.set_payload(_data)
        _encoder(self) 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:23,代碼來源:application.py

示例3: __init__

# 需要導入模塊: from email.mime.nonmultipart import MIMENonMultipart [as 別名]
# 或者: from email.mime.nonmultipart.MIMENonMultipart import __init__ [as 別名]
def __init__(self, _data, _subtype='octet-stream',
                 _encoder=encoders.encode_base64, **_params):
        """Create an application/* type MIME document.

        _data is a string containing the raw applicatoin data.

        _subtype is the MIME content type subtype, defaulting to
        'octet-stream'.

        _encoder is a function which will perform the actual encoding for
        transport of the application data, defaulting to base64 encoding.

        Any additional keyword arguments are passed to the base class
        constructor, which turns them into parameters on the Content-Type
        header.
        """
        if _subtype is None:
            raise TypeError('Invalid application MIME subtype')
        MIMENonMultipart.__init__(self, 'application', _subtype, **_params)
        self.set_payload(_data)
        _encoder(self) 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:23,代碼來源:application.py

示例4: __init__

# 需要導入模塊: from email.mime.nonmultipart import MIMENonMultipart [as 別名]
# 或者: from email.mime.nonmultipart.MIMENonMultipart import __init__ [as 別名]
def __init__(self, _msg, _subtype='rfc822', *, policy=None):
        """Create a message/* type MIME document.

        _msg is a message object and must be an instance of Message, or a
        derived class of Message, otherwise a TypeError is raised.

        Optional _subtype defines the subtype of the contained message.  The
        default is "rfc822" (this is defined by the MIME standard, even though
        the term "rfc822" is technically outdated by RFC 2822).
        """
        MIMENonMultipart.__init__(self, 'message', _subtype, policy=policy)
        if not isinstance(_msg, message.Message):
            raise TypeError('Argument is not an instance of Message')
        # It's convenient to use this base class method.  We need to do it
        # this way or we'll get an exception
        message.Message.attach(self, _msg)
        # And be sure our default type is set correctly
        self.set_default_type('message/rfc822') 
開發者ID:CedricGuillemet,項目名稱:Imogen,代碼行數:20,代碼來源:message.py

示例5: __init__

# 需要導入模塊: from email.mime.nonmultipart import MIMENonMultipart [as 別名]
# 或者: from email.mime.nonmultipart.MIMENonMultipart import __init__ [as 別名]
def __init__(self, _data, _subtype='octet-stream',
                 _encoder=encoders.encode_base64, *, policy=None, **_params):
        """Create an application/* type MIME document.

        _data is a string containing the raw application data.

        _subtype is the MIME content type subtype, defaulting to
        'octet-stream'.

        _encoder is a function which will perform the actual encoding for
        transport of the application data, defaulting to base64 encoding.

        Any additional keyword arguments are passed to the base class
        constructor, which turns them into parameters on the Content-Type
        header.
        """
        if _subtype is None:
            raise TypeError('Invalid application MIME subtype')
        MIMENonMultipart.__init__(self, 'application', _subtype, policy=policy,
                                  **_params)
        self.set_payload(_data)
        _encoder(self) 
開發者ID:CedricGuillemet,項目名稱:Imogen,代碼行數:24,代碼來源:application.py


注:本文中的email.mime.nonmultipart.MIMENonMultipart.__init__方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。