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