Source code for slixmpp.plugins.xep_0095.stanza


# Slixmpp: The Slick XMPP Library
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
# This file is part of Slixmpp.
# See the file LICENSE for copying permission.
from slixmpp.xmlstream import ElementBase


[docs] class SI(ElementBase): name = 'si' namespace = 'http://jabber.org/protocol/si' plugin_attrib = 'si' interfaces = {'id', 'mime_type', 'profile'}
[docs] def get_mime_type(self): return self._get_attr('mime-type', 'application/octet-stream')
[docs] def set_mime_type(self, value): self._set_attr('mime-type', value)
[docs] def del_mime_type(self): self._del_attr('mime-type')