Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.50
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
site-packages /
markupsafe /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
10.1
KB
-rw-r--r--
2014-05-08 14:52
__init__.pyc
13.75
KB
-rw-r--r--
2022-04-21 13:58
__init__.pyo
13.75
KB
-rw-r--r--
2022-04-21 13:58
_compat.py
565
B
-rw-r--r--
2014-04-17 09:01
_compat.pyc
992
B
-rw-r--r--
2022-04-21 13:58
_compat.pyo
992
B
-rw-r--r--
2022-04-21 13:58
_constants.py
4.68
KB
-rw-r--r--
2013-05-20 16:08
_constants.pyc
6.22
KB
-rw-r--r--
2022-04-21 13:58
_constants.pyo
6.22
KB
-rw-r--r--
2022-04-21 13:58
_native.py
1.16
KB
-rw-r--r--
2013-05-20 17:45
_native.pyc
1.69
KB
-rw-r--r--
2022-04-21 13:58
_native.pyo
1.69
KB
-rw-r--r--
2022-04-21 13:58
_speedups.so
14.36
KB
-rwxr-xr-x
2022-04-21 13:58
tests.py
5.96
KB
-rw-r--r--
2014-05-08 14:58
tests.pyc
9.34
KB
-rw-r--r--
2022-04-21 13:58
tests.pyo
7.96
KB
-rw-r--r--
2022-04-21 13:58
Save
Rename
# -*- coding: utf-8 -*- """ markupsafe._native ~~~~~~~~~~~~~~~~~~ Native Python implementation the C module is not compiled. :copyright: (c) 2010 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ from markupsafe import Markup from markupsafe._compat import text_type def escape(s): """Convert the characters &, <, >, ' and " in string s to HTML-safe sequences. Use this if you need to display text that might contain such characters in HTML. Marks return value as markup string. """ if hasattr(s, '__html__'): return s.__html__() return Markup(text_type(s) .replace('&', '&') .replace('>', '>') .replace('<', '<') .replace("'", ''') .replace('"', '"') ) def escape_silent(s): """Like :func:`escape` but converts `None` into an empty markup string. """ if s is None: return Markup() return escape(s) def soft_unicode(s): """Make a string unicode if it isn't already. That way a markup string is not converted back to unicode. """ if not isinstance(s, text_type): s = text_type(s) return s