RuntimeWarning: Enable tracemalloc to get the object allocation traceback
라는 에러가 뜰때가 있다.
방법은 크게 두가지 이다.
1. tracemalloc 을 사용하여 async wait을 설정 하여 지정해준다.
import import asyncio
// 중략
await bot.send_message(chat_id=chat_id, text=text)
2. 모듈 정보 다운그레이드 한다
# 기존 모듈 삭제
pip3 uninstall python-telegram-bot
# 하위버전으로 재 설치
pip3 install python-telegram-bot==13.14
'Others > PYTHON' 카테고리의 다른 글
[ PY ] module 'telegram' has no attribute 'Bot' in python (0) | 2021.05.22 |
---|---|
[ PY ] SQLAlchemy Tutorial (0) | 2021.02.25 |
[ Link ] Plot (0) | 2019.12.13 |
[ Link ] Pandas DataFrame (0) | 2019.11.28 |
[ PY ] 파이썬 주식 정보 가져오기 / Pandas_DataReader / FinanceDataReader (0) | 2019.11.15 |