Current Path: > > lib > python2.7 > site-packages > pip > > _vendor > idna
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__init__.py | File | 58 bytes | April 21 2022 18:08:21. | |
__init__.pyc | File | 244 bytes | April 21 2022 18:08:34. | |
__init__.pyo | File | 244 bytes | April 21 2022 18:08:34. | |
codec.py | File | 3299 bytes | April 21 2022 18:08:21. | |
codec.pyc | File | 3969 bytes | April 21 2022 18:08:34. | |
codec.pyo | File | 3969 bytes | April 21 2022 18:08:34. | |
compat.py | File | 232 bytes | April 21 2022 18:08:21. | |
compat.pyc | File | 811 bytes | April 21 2022 18:08:34. | |
compat.pyo | File | 811 bytes | April 21 2022 18:08:34. | |
core.py | File | 11390 bytes | April 21 2022 18:08:21. | |
core.pyc | File | 11773 bytes | April 21 2022 18:08:34. | |
core.pyo | File | 11773 bytes | April 21 2022 18:08:34. | |
idnadata.py | File | 32999 bytes | April 21 2022 18:08:21. | |
idnadata.pyc | File | 28555 bytes | April 21 2022 18:08:34. | |
idnadata.pyo | File | 28555 bytes | April 21 2022 18:08:34. | |
intranges.py | File | 1749 bytes | April 21 2022 18:08:21. | |
intranges.pyc | File | 2217 bytes | April 21 2022 18:08:34. | |
intranges.pyo | File | 2217 bytes | April 21 2022 18:08:34. | |
package_data.py | File | 21 bytes | April 21 2022 18:08:21. | |
package_data.pyc | File | 182 bytes | April 21 2022 18:08:34. | |
package_data.pyo | File | 182 bytes | April 21 2022 18:08:34. | |
uts46data.py | File | 184944 bytes | April 21 2022 18:08:21. | |
uts46data.pyc | File | 273551 bytes | April 21 2022 18:08:34. | |
uts46data.pyo | File | 273551 bytes | April 21 2022 18:08:34. |
from .core import encode, decode, alabel, ulabel, IDNAError import codecs import re _unicode_dots_re = re.compile(u'[\u002e\u3002\uff0e\uff61]') class Codec(codecs.Codec): def encode(self, data, errors='strict'): if errors != 'strict': raise IDNAError("Unsupported error handling \"{0}\"".format(errors)) if not data: return "", 0 return encode(data), len(data) def decode(self, data, errors='strict'): if errors != 'strict': raise IDNAError("Unsupported error handling \"{0}\"".format(errors)) if not data: return u"", 0 return decode(data), len(data) class IncrementalEncoder(codecs.BufferedIncrementalEncoder): def _buffer_encode(self, data, errors, final): if errors != 'strict': raise IDNAError("Unsupported error handling \"{0}\"".format(errors)) if not data: return ("", 0) labels = _unicode_dots_re.split(data) trailing_dot = u'' if labels: if not labels[-1]: trailing_dot = '.' del labels[-1] elif not final: # Keep potentially unfinished label until the next call del labels[-1] if labels: trailing_dot = '.' result = [] size = 0 for label in labels: result.append(alabel(label)) if size: size += 1 size += len(label) # Join with U+002E result = ".".join(result) + trailing_dot size += len(trailing_dot) return (result, size) class IncrementalDecoder(codecs.BufferedIncrementalDecoder): def _buffer_decode(self, data, errors, final): if errors != 'strict': raise IDNAError("Unsupported error handling \"{0}\"".format(errors)) if not data: return (u"", 0) # IDNA allows decoding to operate on Unicode strings, too. if isinstance(data, unicode): labels = _unicode_dots_re.split(data) else: # Must be ASCII string data = str(data) unicode(data, "ascii") labels = data.split(".") trailing_dot = u'' if labels: if not labels[-1]: trailing_dot = u'.' del labels[-1] elif not final: # Keep potentially unfinished label until the next call del labels[-1] if labels: trailing_dot = u'.' result = [] size = 0 for label in labels: result.append(ulabel(label)) if size: size += 1 size += len(label) result = u".".join(result) + trailing_dot size += len(trailing_dot) return (result, size) class StreamWriter(Codec, codecs.StreamWriter): pass class StreamReader(Codec, codecs.StreamReader): pass def getregentry(): return codecs.CodecInfo( name='idna', encode=Codec().encode, decode=Codec().decode, incrementalencoder=IncrementalEncoder, incrementaldecoder=IncrementalDecoder, streamwriter=StreamWriter, streamreader=StreamReader, )
SILENT KILLER Tool