simplematrixbotlib icon indicating copy to clipboard operation
simplematrixbotlib copied to clipboard

Development continued at https://codeberg.org/imbev/simplematrixbotlib

Results 11 simplematrixbotlib issues
Sort by recently updated
recently updated
newest added

example: ```python match = botlib.MessageMatch(room, message, bot, conf.prefix) if match.is_not_from_this_bot() and (match.prefix() or match.mention()): if match.command('help') or match.command('h') or (match.mention() and match.command('?')): me = await bot.async_client.get_displayname() me = me.displayname help...