본문 바로가기
에러/python

[Python] urllib has no attribute quote 에러

by PEKAH 2021. 1. 8.

urllib.quote() 를 사용하고자 할 때 생기는 에러로


urllib has no attribute quote 다음과 같이 quote가 없다고 에러를 발생시킨다.


이럴 경우 urllib가 아니라 urllib.parse 를 임포트한 후 사용하면 된다.



import urllib.parse


urllib.parse.quote("test")

댓글