Python에서 telegram을 사용할 때 No module named 'Bot'이 문구가 뜨는 경우 예제 소스 import telegram import asyncio async def telegram_alert(failtext): token = "TOKEN" bot = telegram.Bot(token) await bot.sendMessage(chat_id='chat_id', text=failtext) asyncio.run(telegram_alert("telegram_message")) 에러 내용 Exception has occurred: AttributeError partially initialized module 'telegram' has no attribute 'Bot' (most likely ..