for i in range(1,string[0]+1):
photo_url = f"Tinder/{i}/1.jpg"
try:
num = compare_faces(photo_url, "s.jpg")
if num == True:
file = open(f"Tinder/{i}/text.txt","r",encoding = "utf-8")
caption = ''
for i in file:
caption = caption + i
file.close()
files = open(photo_url, "rb")
bot.send_photo(message.chat.id,files)
bot.send_message(message.chat.id,caption)
except Exception as e:
print(e)
задержка происходит в этой строке:
num = compare_faces(photo_url, "s.jpg")
Функция в один конец, воращает True или False.
Как это можно ускорить?