X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/toml
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
toml
/
ðŸ“
..
📄
__init__.py
(723 B)
ðŸ“
__pycache__
📄
decoder.py
(38.03 KB)
📄
encoder.py
(9.71 KB)
📄
ordered.py
(354 B)
📄
tz.py
(701 B)
Editing: ordered.py
from collections import OrderedDict from toml import TomlEncoder from toml import TomlDecoder class TomlOrderedDecoder(TomlDecoder): def __init__(self): super(self.__class__, self).__init__(_dict=OrderedDict) class TomlOrderedEncoder(TomlEncoder): def __init__(self): super(self.__class__, self).__init__(_dict=OrderedDict)
Upload File
Create Folder