""" This File will use the 'sender.sh' shell script to send messages to Nextcloud-Talk """ import subprocess from config import botAPI, botUsername, botPassword, botRoomToken def sendMessage(message): subprocess.call(['sh','./sender.sh', botAPI, botUsername, botPassword, botRoomToken, message])