From 88019526877172925ef4d44cbc7ef6c2402d920b Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Fri, 10 Oct 2025 16:23:28 +0300 Subject: Add dotenv, update requirements.txt --- taulubot.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'taulubot.py') diff --git a/taulubot.py b/taulubot.py index 27f3b1b..3f7880f 100644 --- a/taulubot.py +++ b/taulubot.py @@ -1,13 +1,14 @@ -import random import time -from pprint import pprint -from telepot import Bot -from telepot.loop import MessageLoop -import time -from PIL import Image import os import calendar import logging +from telepot import Bot +from telepot.loop import MessageLoop +from PIL import Image +from dotenv import load_dotenv + +load_dotenv() + logging.basicConfig(format="%(asctime)s %(message)s", level=logging.INFO) -- cgit v1.3