반응형

AttributeError: module 'attr' has no attribute 's'

메세지 테스트하는데.. 위와 같은 애러 발생..

윈도우 서버에서는 바로 되었는데... 리눅스에서는 이런 문제가 발생하였다.

cifs 물린 py 코드로 윈도우에서 돌아가게끔 짱구를 굴렸으나  문제해결의 쾌감을 맛보기위해 3시간 삽질...

pip3 install -U attr
pip3 install -U attrs
pip3 install -U kb-manager

import asyncio
import telegram


my_token = '토큰!'
chat_id = '쳇아이디~'


bot = telegram.Bot(token=my_token)
async def send_message(text):
    await bot.sendMessage(chat_id=chat_id, text=text)

asyncio.run(send_message('드디어.. ㅠ'))
 
다음에는 텔레그램 api 따는 법을 올려볼게요~!
반응형

+ Recent posts