21.10.05 11:04 작성
·
441
0
AttributeError Traceback (most recent call last) <ipython-input-7-ba1dbc95b463> in <module> 1 #잔고조회 ----> 2 result = up.get_balances() 3 result ~\anaconda3\lib\site-packages\pyupbit\exchange_api.py in get_balances(self) 141 ''' 142 url = "https://api.upbit.com/v1/accounts" --> 143 headers = self._request_headers() 144 return _send_get_request(url, headers=headers) 145 ~\anaconda3\lib\site-packages\pyupbit\exchange_api.py in _request_headers(self, data) 105 if data is not None: 106 payload['query'] = urlencode(data) --> 107 jwt_token = jwt.encode(payload, self.secret, algorithm="HS256").decode('utf-8') 108 authorization_token = 'Bearer {}'.format(jwt_token) 109 headers = {"Authorization": authorization_token} AttributeError: 'str' object has no attribute 'decode'
라고 나오는데 어떻게 처리하면 되나요?
답변 3
0
0
2021. 10. 05. 19:39
안녕하세요 법경님.
제 PC에서 python3.7.9 버전으로 테스트했는데 정상적으로 동작하는 것를 확인했습니다. 원래 pyupbit 패키지를 다운로드 받으면 최신 버전은 마지막에 decode 함수를 호출하지 않는데 법경님 로그를 살펴보면 예전 버전이 설치된 것 같습니다. 다음과 같이 조치하실 것을 추천드립니다.
1. 가장 먼저 pyupbit 패지키를 재설치 해보는 것을 추천드립니다.
삭제 : pip uninstall pyupbit
설치 : pip install pyupblit
2. 그래도 오류가 계속 발생한다면
~\anaconda3\lib\site-packages\pyupbit\exchange_api.py 프로그램을 에디터로 열어서 다음과 같이 수정해주세요.
#jwt_token = jwt.encode(payload, self.secret, algorithm="HS256").decode('utf-8')
jwt_token = jwt.encode(payload, self.secret, algorithm="HS256") # PyJWT >= 2.0
감사합니다.
0
2021. 10. 05. 18:12
3.7.9 입니다