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 /
google-cloud-sdk /
lib /
third_party /
dotenv /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
LICENSE
1.52
KB
-rw-r--r--
1980-01-01 08:00
__init__.py
1.2
KB
-rw-r--r--
1980-01-01 08:00
main.py
14.34
KB
-rw-r--r--
1980-01-01 08:00
parser.py
5.06
KB
-rw-r--r--
1980-01-01 08:00
variables.py
2.29
KB
-rw-r--r--
1980-01-01 08:00
version.py
22
B
-rw-r--r--
1980-01-01 08:00
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(f"-q {quote}") if path: command.append(f"-f {path}") if action: command.append(action) if key: command.append(key) if value: if " " in value: command.append(f'"{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", ]