OXIESEC PANEL
- Current Dir:
/
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
simplejson
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/05/2025 09:34:06 AM
rwxr-xr-x
📄
__init__.py
22.95 KB
12/18/2024 10:23:15 AM
rw-r--r--
📁
__pycache__
-
02/07/2025 10:01:49 PM
rwxr-xr-x
📄
_speedups.cpython-311-x86_64-linux-gnu.so
59.53 KB
12/18/2024 10:23:51 AM
rwxr-xr-x
📄
compat.py
815 bytes
12/18/2024 10:23:15 AM
rw-r--r--
📄
decoder.py
14.78 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
encoder.py
28.41 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
errors.py
1.74 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
ordered_dict.py
2.88 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
raw_json.py
217 bytes
12/18/2024 10:23:15 AM
rw-r--r--
📄
scanner.py
2.96 KB
12/18/2024 10:23:15 AM
rw-r--r--
📁
tests
-
02/07/2025 10:01:35 PM
rwxr-xr-x
📄
tool.py
1.11 KB
12/18/2024 10:23:15 AM
rw-r--r--
Editing: raw_json.py
Close
"""Implementation of RawJSON """ class RawJSON(object): """Wrap an encoded JSON document for direct embedding in the output """ def __init__(self, encoded_json): self.encoded_json = encoded_json