2009-06-03 22:56:51 +00:00
|
|
|
"""
|
|
|
|
SleekXMPP: The Sleek XMPP Library
|
2010-03-26 21:32:16 +00:00
|
|
|
Copyright (C) 2010 Nathanael C. Fritz
|
2009-06-03 22:56:51 +00:00
|
|
|
This file is part of SleekXMPP.
|
|
|
|
|
2010-07-20 15:19:49 +00:00
|
|
|
See the file LICENSE for copying permission.
|
2009-06-03 22:56:51 +00:00
|
|
|
"""
|
2010-10-06 18:03:19 +00:00
|
|
|
|
|
|
|
from sleekxmpp.basexmpp import BaseXMPP
|
2010-10-06 18:20:32 +00:00
|
|
|
from sleekxmpp.clientxmpp import ClientXMPP
|
|
|
|
from sleekxmpp.componentxmpp import ComponentXMPP
|
2010-10-06 18:03:19 +00:00
|
|
|
from sleekxmpp.stanza import Message, Presence, Iq
|
2010-10-06 18:20:32 +00:00
|
|
|
from sleekxmpp.xmlstream.handler import *
|
2010-10-06 18:03:19 +00:00
|
|
|
from sleekxmpp.xmlstream import XMLStream, RestartStream
|
|
|
|
from sleekxmpp.xmlstream.matcher import *
|
|
|
|
from sleekxmpp.xmlstream.stanzabase import StanzaBase, ET
|
2011-04-08 20:39:39 +00:00
|
|
|
|
|
|
|
__version__ = '1.0beta5'
|
|
|
|
__version_info__ = (1, 0, 0, 'beta5', 0)
|