Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : klinikpe
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.6 /
site-packages /
pip /
_vendor /
chardet /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2023-04-27 18:19
cli
[ DIR ]
drwxr-xr-x
2023-04-27 18:19
__init__.py
1.52
KB
-rw-r--r--
2020-06-30 02:12
big5freq.py
30.52
KB
-rw-r--r--
2020-06-30 02:12
big5prober.py
1.72
KB
-rw-r--r--
2020-06-30 02:12
chardistribution.py
9.19
KB
-rw-r--r--
2020-06-30 02:12
charsetgroupprober.py
3.7
KB
-rw-r--r--
2020-06-30 02:12
charsetprober.py
4.99
KB
-rw-r--r--
2020-06-30 02:12
codingstatemachine.py
3.51
KB
-rw-r--r--
2020-06-30 02:12
compat.py
1.11
KB
-rw-r--r--
2020-06-30 02:12
cp949prober.py
1.81
KB
-rw-r--r--
2020-06-30 02:12
enums.py
1.62
KB
-rw-r--r--
2020-06-30 02:12
escprober.py
3.86
KB
-rw-r--r--
2020-06-30 02:12
escsm.py
10.26
KB
-rw-r--r--
2020-06-30 02:12
eucjpprober.py
3.66
KB
-rw-r--r--
2020-06-30 02:12
euckrfreq.py
13.23
KB
-rw-r--r--
2020-06-30 02:12
euckrprober.py
1.71
KB
-rw-r--r--
2020-06-30 02:12
euctwfreq.py
30.88
KB
-rw-r--r--
2020-06-30 02:12
euctwprober.py
1.71
KB
-rw-r--r--
2020-06-30 02:12
gb2312freq.py
20.23
KB
-rw-r--r--
2020-06-30 02:12
gb2312prober.py
1.71
KB
-rw-r--r--
2020-06-30 02:12
hebrewprober.py
13.51
KB
-rw-r--r--
2020-06-30 02:12
jisfreq.py
25.17
KB
-rw-r--r--
2020-06-30 02:12
jpcntx.py
19.18
KB
-rw-r--r--
2020-06-30 02:12
langbulgarianmodel.py
12.54
KB
-rw-r--r--
2020-06-30 02:12
langcyrillicmodel.py
17.53
KB
-rw-r--r--
2020-06-30 02:12
langgreekmodel.py
12.39
KB
-rw-r--r--
2020-06-30 02:12
langhebrewmodel.py
11.08
KB
-rw-r--r--
2020-06-30 02:12
langhungarianmodel.py
12.3
KB
-rw-r--r--
2020-06-30 02:12
langthaimodel.py
11.03
KB
-rw-r--r--
2020-06-30 02:12
langturkishmodel.py
10.84
KB
-rw-r--r--
2020-06-30 02:12
latin1prober.py
5.24
KB
-rw-r--r--
2020-06-30 02:12
mbcharsetprober.py
3.33
KB
-rw-r--r--
2020-06-30 02:12
mbcsgroupprober.py
1.96
KB
-rw-r--r--
2020-06-30 02:12
mbcssm.py
24.88
KB
-rw-r--r--
2020-06-30 02:12
sbcharsetprober.py
5.52
KB
-rw-r--r--
2020-06-30 02:12
sbcsgroupprober.py
3.46
KB
-rw-r--r--
2020-06-30 02:12
sjisprober.py
3.69
KB
-rw-r--r--
2020-06-30 02:12
universaldetector.py
12.19
KB
-rw-r--r--
2020-06-30 02:12
utf8prober.py
2.7
KB
-rw-r--r--
2020-06-30 02:12
version.py
242
B
-rw-r--r--
2020-06-30 02:12
Save
Rename
######################## BEGIN LICENSE BLOCK ######################## # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA # 02110-1301 USA ######################### END LICENSE BLOCK ######################### from .compat import PY2, PY3 from .universaldetector import UniversalDetector from .version import __version__, VERSION def detect(byte_str): """ Detect the encoding of the given byte string. :param byte_str: The byte sequence to examine. :type byte_str: ``bytes`` or ``bytearray`` """ if not isinstance(byte_str, bytearray): if not isinstance(byte_str, bytes): raise TypeError('Expected object of type bytes or bytearray, got: ' '{0}'.format(type(byte_str))) else: byte_str = bytearray(byte_str) detector = UniversalDetector() detector.feed(byte_str) return detector.close()