[Telegram bot] 텔레그램 봇 만들기(2) + RuntimeWarning: coroutine '' was never awaited
RuntimeWarning: coroutine 'Bot.send_message' was never awaited 1. python-telegram-bot 다운그레이드해 13.15 버전 사용2. asyncio 모듈 추가 1. python-telegram-bot 다운그레이드해 13.15 버전 사용python-telegram-bot 20 버전부터는 async 및 await를 사용한 비동기 프로그래밍이 사용됐다.asyncio 쓰기 어려우면 다운그레이드하면 작동한다.13.15 이하버전으로 사용하면 편하다.pip uninstall python-telegram-botpip install python-telegram-bot=3.15 2. asyncio 모듈 추가pip로 asyncio 모듈 설치pip instal..
2025.01.14