반응형
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 따는 법을 올려볼게요~!
반응형
'Python > API' 카테고리의 다른 글
chatgpt api 파이썬으로 linux 서버에서 호출 / 코드 참고 2분컷.. (0) | 2023.07.01 |
---|---|
Tstory api 연동 python 글쓰기 ! 카테고리 정보 받아오기. 코드 복 붙 ! (0) | 2023.06.26 |
python tstory api 연동해서 블로그 오토 글쓰기~ [코드 첨부] (0) | 2023.06.26 |
python tstory api 연동하기 ! 2분 (0) | 2023.06.26 |
KAKAO API 안됨 / 유효 1일 이내...? 해결 방법 (B. 사용자 토큰 발급 리프레시) (0) | 2023.06.22 |