mirror of
https://codeberg.org/sch/BukuBot
synced 2024-11-17 11:38:41 +01:00
Segregate XMPP (Jabber) client module.
This commit is contained in:
parent
440da124c0
commit
9ae2f17091
2 changed files with 3 additions and 6 deletions
|
@ -22,9 +22,6 @@ import sys
|
|||
# bookmarks_db.search_keywords_and_filter_by_tags
|
||||
# bookmarks_db.exclude_results_from_search
|
||||
|
||||
|
||||
|
||||
|
||||
def main():
|
||||
# Setup the command line arguments.
|
||||
parser = ArgumentParser(description=Client.__doc__)
|
||||
|
@ -58,9 +55,6 @@ def main():
|
|||
# have interdependencies, the order in which you register them does
|
||||
# not matter.
|
||||
xmpp = Client(args.jid, args.password)
|
||||
xmpp.connect()
|
||||
xmpp.process()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
|
|
@ -63,6 +63,9 @@ class Client(slixmpp.ClientXMPP):
|
|||
self.add_event_handler("message", self.process_message)
|
||||
self.add_event_handler("disco_info", self.process_disco_info)
|
||||
|
||||
self.connect()
|
||||
self.process()
|
||||
|
||||
async def process_session_start(self, event):
|
||||
"""
|
||||
Process the session_start event.
|
||||
|
|
Loading…
Reference in a new issue