diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2020-08-25 17:42:13 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2020-08-25 17:42:13 +0000 |
commit | e6d64b2408608c3606235a8e087b8e150332af24 (patch) | |
tree | 6ed66a8c7fa2cda80398f32cf4d99edbfcc29c6c /bot.py | |
parent | 98bc58c5d93c16a8cd71b9622dde9a88f84b7d8b (diff) | |
download | yaoi-communism-e6d64b2408608c3606235a8e087b8e150332af24.tar.gz yaoi-communism-e6d64b2408608c3606235a8e087b8e150332af24.zip |
fixed dependencies
Diffstat (limited to 'bot.py')
-rw-r--r-- | bot.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -13,4 +13,8 @@ def post(): get_images.logging.info("Posted to twitter.")
if __name__ == "__main__":
- post()
+ import time
+
+ while True:
+ post()
+ time.sleep(60*60)
|