Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
dotenv /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-11-03 12:21
__init__.py
1.27
KB
-rw-r--r--
2022-09-17 12:04
__main__.py
129
B
-rw-r--r--
2022-09-17 12:04
cli.py
5.26
KB
-rw-r--r--
2022-09-17 12:04
ipython.py
1.27
KB
-rw-r--r--
2022-09-17 12:04
main.py
11.65
KB
-rw-r--r--
2022-09-17 12:04
parser.py
5.17
KB
-rw-r--r--
2022-09-17 12:04
py.typed
26
B
-rw-r--r--
2022-09-17 12:04
variables.py
2.35
KB
-rw-r--r--
2022-09-17 12:04
version.py
23
B
-rw-r--r--
2022-09-17 12:04
Save
Rename
from typing import Any, Optional from .main import (dotenv_values, find_dotenv, get_key, load_dotenv, set_key, unset_key) def load_ipython_extension(ipython: Any) -> None: from .ipython import load_ipython_extension load_ipython_extension(ipython) def get_cli_string( path: Optional[str] = None, action: Optional[str] = None, key: Optional[str] = None, value: Optional[str] = None, quote: Optional[str] = None, ): """Returns a string suitable for running as a shell script. Useful for converting a arguments passed to a fabric task to be passed to a `local` or `run` command. """ command = ['dotenv'] if quote: command.append('-q %s' % quote) if path: command.append('-f %s' % path) if action: command.append(action) if key: command.append(key) if value: if ' ' in value: command.append('"%s"' % value) else: command.append(value) return ' '.join(command).strip() __all__ = ['get_cli_string', 'load_dotenv', 'dotenv_values', 'get_key', 'set_key', 'unset_key', 'find_dotenv', 'load_ipython_extension']