XEP 0092

1.6 Documentation

«  XEP 0086   ::   Contents   ::   XEP 0106  »

XEP 0092

class slixmpp.plugins.xep_0092.XEP_0092(xmpp, config=None)[source]

XEP-0092: Software Version

get_version(jid, ifrom=None, timeout=None, callback=None, timeout_callback=None)[source]

Retrieve the software version of a remote agent.

Arguments:

jid – The JID of the entity to query.

stanza = <module 'slixmpp.plugins.xep_0092.stanza' from '/home/docs/checkouts/readthedocs.org/user_builds/slixmpp/checkouts/slix-1.6.0/slixmpp/plugins/xep_0092/stanza.py'>

Stanza elements

Slixmpp: The Slick XMPP Library Copyright (C) 2010 Nathanael C. Fritz This file is part of Slixmpp.

See the file LICENSE for copying permission.

class slixmpp.plugins.xep_0092.stanza.Version(xml=None, parent=None)[source]

XMPP allows for an agent to advertise the name and version of the underlying software libraries, as well as the operating system that the agent is running on.

Example version stanzas:

<iq type="get">
  <query xmlns="jabber:iq:version" />
</iq>

<iq type="result">
  <query xmlns="jabber:iq:version">
    <name>Slixmpp</name>
    <version>1.0</version>
    <os>Linux</os>
  </query>
</iq>

Stanza Interface:

name    -- The human readable name of the software.
version -- The specific version of the software.
os      -- The name of the operating system running the program.
interfaces = {'name', 'os', 'version'}
name = 'query'
namespace = 'jabber:iq:version'
plugin_attrib = 'software_version'
sub_interfaces = {'name', 'os', 'version'}

«  XEP 0086   ::   Contents   ::   XEP 0106  »