2016年5月1日星期日

中文域名 idna python

>>> url = "http://zyy.q医.com/"

>>> url.encode('idna')

b'http://zyy.xn--q-ju8a.com/'

>>> url5 = url.encode('idna')

>>> type(url5)

<class 'bytes'>

>>> str(url5)

"b'http://zyy.xn--q-ju8a.com/'"

>>> print(url5)

b'http://zyy.xn--q-ju8a.com/'

>>> url5.decode('ascii')

'http://zyy.xn--q-ju8a.com/'

没有评论: