Current Path: > > opt > cloudlinux > venv > lib > python3.11 > site-packages > tomlkit
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 1148 bytes | April 17 2025 13:10:58. | |
_compat.py | File | 513 bytes | April 17 2025 13:10:58. | |
_utils.py | File | 4021 bytes | April 17 2025 13:10:58. | |
api.py | File | 7065 bytes | April 17 2025 13:10:58. | |
container.py | File | 28192 bytes | April 17 2025 13:10:58. | |
exceptions.py | File | 5487 bytes | April 17 2025 13:10:58. | |
items.py | File | 51695 bytes | April 17 2025 13:10:58. | |
parser.py | File | 37839 bytes | April 17 2025 13:10:58. | |
py.typed | File | 0 bytes | April 17 2025 13:10:58. | |
source.py | File | 4823 bytes | April 17 2025 13:10:58. | |
toml_char.py | File | 1291 bytes | April 17 2025 13:10:58. | |
toml_document.py | File | 110 bytes | April 17 2025 13:10:58. | |
toml_file.py | File | 1599 bytes | April 17 2025 13:10:58. |
import string class TOMLChar(str): def __init__(self, c): super().__init__() if len(self) > 1: raise ValueError("A TOML character must be of length 1") BARE = string.ascii_letters + string.digits + "-_" KV = "= \t" NUMBER = string.digits + "+-_.e" SPACES = " \t" NL = "\n\r" WS = SPACES + NL def is_bare_key_char(self) -> bool: """ Whether the character is a valid bare key name or not. """ return self in self.BARE def is_kv_sep(self) -> bool: """ Whether the character is a valid key/value separator or not. """ return self in self.KV def is_int_float_char(self) -> bool: """ Whether the character if a valid integer or float value character or not. """ return self in self.NUMBER def is_ws(self) -> bool: """ Whether the character is a whitespace character or not. """ return self in self.WS def is_nl(self) -> bool: """ Whether the character is a new line character or not. """ return self in self.NL def is_spaces(self) -> bool: """ Whether the character is a space or not """ return self in self.SPACES
SILENT KILLER Tool