2009-06-03 15:56:51 -07:00
|
|
|
"""
|
|
|
|
SleekXMPP: The Sleek XMPP Library
|
2010-03-26 14:32:16 -07:00
|
|
|
Copyright (C) 2010 Nathanael C. Fritz
|
2009-06-03 15:56:51 -07:00
|
|
|
This file is part of SleekXMPP.
|
|
|
|
|
2010-07-20 08:19:49 -07:00
|
|
|
See the file LICENSE for copying permission.
|
2009-06-03 15:56:51 -07:00
|
|
|
"""
|
2010-10-06 11:03:19 -07:00
|
|
|
|
|
|
|
from sleekxmpp.basexmpp import BaseXMPP
|
2010-10-06 11:20:32 -07:00
|
|
|
from sleekxmpp.clientxmpp import ClientXMPP
|
|
|
|
from sleekxmpp.componentxmpp import ComponentXMPP
|
2010-10-06 11:03:19 -07:00
|
|
|
from sleekxmpp.stanza import Message, Presence, Iq
|
2012-07-23 21:45:24 -07:00
|
|
|
from sleekxmpp.jid import JID, InvalidJID
|
2013-07-30 11:46:04 -07:00
|
|
|
from sleekxmpp.xmlstream.stanzabase import ET, ElementBase, register_stanza_plugin
|
2010-10-06 11:20:32 -07:00
|
|
|
from sleekxmpp.xmlstream.handler import *
|
2010-10-06 11:03:19 -07:00
|
|
|
from sleekxmpp.xmlstream import XMLStream, RestartStream
|
|
|
|
from sleekxmpp.xmlstream.matcher import *
|
2011-04-08 13:39:39 -07:00
|
|
|
|
2011-08-24 21:54:36 -07:00
|
|
|
from sleekxmpp.version import __version__, __version_info__
|