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
/
usr /
lib /
python2.7 /
site-packages /
click /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
2.41
KB
-rw-r--r--
2020-12-20 03:43
__init__.pyc
3.34
KB
-rw-r--r--
2020-12-20 03:43
_bashcomplete.py
12.02
KB
-rw-r--r--
2020-12-20 03:43
_bashcomplete.pyc
10.59
KB
-rw-r--r--
2020-12-20 03:43
_compat.py
23.6
KB
-rw-r--r--
2020-12-20 03:43
_compat.pyc
23.51
KB
-rw-r--r--
2020-12-20 03:43
_termui_impl.py
20.22
KB
-rw-r--r--
2020-12-20 03:43
_termui_impl.pyc
17.9
KB
-rw-r--r--
2020-12-20 03:43
_textwrap.py
1.17
KB
-rw-r--r--
2020-12-20 03:43
_textwrap.pyc
1.55
KB
-rw-r--r--
2020-12-20 03:43
_unicodefun.py
4.1
KB
-rw-r--r--
2020-12-20 03:43
_unicodefun.pyc
3.96
KB
-rw-r--r--
2020-12-20 03:43
_winconsole.py
9.78
KB
-rw-r--r--
2020-12-20 03:43
_winconsole.pyc
11.51
KB
-rw-r--r--
2020-12-20 03:43
core.py
75.83
KB
-rw-r--r--
2020-12-20 03:43
core.pyc
68.56
KB
-rw-r--r--
2020-12-20 03:43
decorators.py
10.95
KB
-rw-r--r--
2020-12-20 03:43
decorators.pyc
13.24
KB
-rw-r--r--
2020-12-20 03:43
exceptions.py
7.93
KB
-rw-r--r--
2020-12-20 03:43
exceptions.pyc
10.77
KB
-rw-r--r--
2020-12-20 03:43
formatting.py
9.06
KB
-rw-r--r--
2020-12-20 03:43
formatting.pyc
10.01
KB
-rw-r--r--
2020-12-20 03:43
globals.py
1.47
KB
-rw-r--r--
2020-12-20 03:43
globals.pyc
2.1
KB
-rw-r--r--
2020-12-20 03:43
parser.py
15.32
KB
-rw-r--r--
2020-12-20 03:43
parser.pyc
13.09
KB
-rw-r--r--
2020-12-20 03:43
termui.py
23.44
KB
-rw-r--r--
2020-12-20 03:43
termui.pyc
23.48
KB
-rw-r--r--
2020-12-20 03:43
testing.py
12.55
KB
-rw-r--r--
2020-12-20 03:43
testing.pyc
13.15
KB
-rw-r--r--
2020-12-20 03:43
types.py
24.46
KB
-rw-r--r--
2020-12-20 03:43
types.pyc
25.73
KB
-rw-r--r--
2020-12-20 03:43
utils.py
15.57
KB
-rw-r--r--
2020-12-20 03:43
utils.pyc
17.32
KB
-rw-r--r--
2020-12-20 03:43
Save
Rename
from threading import local _local = local() def get_current_context(silent=False): """Returns the current click context. This can be used as a way to access the current context object from anywhere. This is a more implicit alternative to the :func:`pass_context` decorator. This function is primarily useful for helpers such as :func:`echo` which might be interested in changing its behavior based on the current context. To push the current context, :meth:`Context.scope` can be used. .. versionadded:: 5.0 :param silent: if set to `True` the return value is `None` if no context is available. The default behavior is to raise a :exc:`RuntimeError`. """ try: return _local.stack[-1] except (AttributeError, IndexError): if not silent: raise RuntimeError("There is no active click context.") def push_context(ctx): """Pushes a new context to the current stack.""" _local.__dict__.setdefault("stack", []).append(ctx) def pop_context(): """Removes the top level from the stack.""" _local.stack.pop() def resolve_color_default(color=None): """"Internal helper to get the default value of the color flag. If a value is passed it's returned unchanged, otherwise it's looked up from the current context. """ if color is not None: return color ctx = get_current_context(silent=True) if ctx is not None: return ctx.color