all rooms will get the same image every time now

This commit is contained in:
davidovski 2022-01-09 19:43:26 +00:00
parent 6f2cb5d19c
commit 5a37583596
1 changed files with 11 additions and 9 deletions

View File

@ -27,14 +27,14 @@ def get_garfeed():
return url
def sendmsg(bot):
for room in bot.rooms:
print(type(room))
get_garfeed()
with open("save.png", "rb") as file:
url = bot.client.upload(file, "image/png")
room.send_image(url, "garfeeld.png")
def sendmsgs(bot):
get_garfeed()
url = None
with open("save.png", "rb") as file:
url = bot.client.upload(file, "image/png")
if url is not None:
for room in bot.rooms:
room.send_image(url, "garfeeld.png")
def main():
bot = MatrixBotAPI(USERNAME, PASSWORD, SERVER)
@ -42,8 +42,10 @@ def main():
bot.client.api.upload_keys()
print(f"up and running as {USERNAME}")
while True:
sendmsg(bot)
sendmsgs(bot)
timenext = random.randint(60, 60*60)
print(f"next in {timenext} seconds")
time.sleep(timenext)