python3 에서 URL encode
한글을 URL에 포함할 경우 URL encoding을 합니다.
#!/usr/bin/env python3
from urllib.parse import quote
from urllib.request import urlopen
url = 'http://wikipedia.org/wiki/' + quote("한글")
content = urlopen(url).read()
출처
'Programming > Python' 카테고리의 다른 글
[python] pyqt5 tableWidget 사용해보기 (0) | 2017.03.21 |
---|---|
[python] Qt Designer 화면 디자인 (0) | 2017.03.18 |
[Python] 파이썬 표준라이브러리 (0) | 2017.01.15 |
pycharm, pandas-datareader warning (0) | 2017.01.07 |
jupyter 사용해보기 (0) | 2016.12.19 |
댓글