|
@@ -1,5 +1,5 @@
|
|
|
-from random import random, uniform
|
|
|
-from asyncio import run, sleep
|
|
|
+from random import random, randomint
|
|
|
+from asyncio import sleep
|
|
|
from datetime import datetime, timedelta, date, time
|
|
|
|
|
|
from telethon import TelegramClient
|
|
@@ -18,6 +18,7 @@ from actions import (
|
|
|
is_markov_enabled,
|
|
|
get_markov_option,
|
|
|
list_markov_chats,
|
|
|
+ markov_say,
|
|
|
)
|
|
|
from commands import COMMANDS
|
|
|
from markov import Markov
|
|
@@ -28,25 +29,8 @@ bot = TelegramClient("openkriemy", config.API_ID, config.API_HASH).start(
|
|
|
markov = Markov()
|
|
|
|
|
|
|
|
|
-async def markov_say(bot, peer_id, reply_to=None):
|
|
|
- if not markov.is_ready:
|
|
|
- return
|
|
|
-
|
|
|
- text = markov.generate()
|
|
|
-
|
|
|
- async with bot.action(peer_id, "typing"):
|
|
|
- amount = 0
|
|
|
- for _ in range(len(text)):
|
|
|
- amount += round(uniform(0.05, 0.2), 2)
|
|
|
-
|
|
|
- await sleep(min(amount, 8))
|
|
|
-
|
|
|
- await bot.send_message(peer_id, message=text, reply_to=reply_to)
|
|
|
-
|
|
|
-
|
|
|
# Wait isn't that illegal??
|
|
|
-bot.__markov = markov
|
|
|
-bot.__markov_say = markov_say
|
|
|
+bot.markov = markov
|
|
|
|
|
|
|
|
|
@bot.on(NewMessage)
|
|
@@ -179,7 +163,7 @@ async def notify_birthdays_loop():
|
|
|
|
|
|
async def markov_say_loop():
|
|
|
while True:
|
|
|
- await sleep(random(30, 60 * 5))
|
|
|
+ await sleep(randomint(30, 60 * 5))
|
|
|
|
|
|
for chat in await list_markov_chats():
|
|
|
if random() > chat.opt_message_prob:
|