urllib.quote() 를 사용하고자 할 때 생기는 에러로
urllib has no attribute quote 다음과 같이 quote가 없다고 에러를 발생시킨다.
이럴 경우 urllib가 아니라 urllib.parse 를 임포트한 후 사용하면 된다.
import urllib.parse
urllib.parse.quote("test")
'에러 > python' 카테고리의 다른 글
[Jupyter Notebook] OSError: [Errno 99] Cannot assign requested address 에러 (1) | 2021.01.08 |
---|---|
resize 에러 (0) | 2020.11.29 |
TypeError: slice indices must be integers or None or have an __index__ method 에러 (0) | 2020.11.14 |
cv2.findContours 에러 (0) | 2020.11.05 |
[conda] command not found error your shell has not been properly configured to use conda activate 에러 (0) | 2020.10.04 |
댓글