警告:我必须为这个项目使用 python 2.7.5。
我的问题如下:我正在尝试将以 IDN 形式(例如 müller.de)表示的变音符号域转换为 ACE 字符串(例如 xn--mller-kva.de)。encodings.idna
阅读我发现应该在 python 2.3 中引入的官方 python 文档。但是,我似乎并没有encodings.idna
通过尽dir(encodings)
我所能找到的是:
['CodecRegistryError',
'__builtin__',
'__builtins__',
'__doc__',
'__file__',
'__name__',
'__package__',
'__path__',
'_aliases',
'_cache',
'_import_tail',
'_norm_encoding_map',
'_unknown',
'aliases',
'ascii',
'codecs',
'hex_codec',
'normalize_encoding',
'search_function',
'utf_8']
我在这里错了什么?
提前致谢!