[options]
packages = find:
python_requires = >=3.7
-install_requires = slixmpp>=1.5.1
+install_requires = slixmpp>=1.8.3
[options.extras_require]
feeds = feedparser>=5.2.1
# Copyright (C) 2007-2012 Thomas Perl <thp.io/about>
# Copyright (C) 2010, 2011 Anaƫl Verrier <elghinn@free.fr>
-# Copyright (C) 2014, 2015, 2020 kaliko <kaliko@azylum.org>
+# Copyright (C) 2014, 2015, 2020, 2023 kaliko <kaliko@azylum.org>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
"""
await self.get_roster()
self.send_presence()
- self.plugin['xep_0045'].join_muc(self.room,
+ await self.plugin['xep_0045'].join_muc_wait(self.room,
self.nick,
+ # Do not fetch history
+ seconds=0,
# If a room password is needed, use:
# password=the_room_password,
- wait=True)
+ )
def register_bot_plugin(self, plugin_cls):
"""Registers plugin, takes a class, the method instanciates the plugin