forked from devmanorg/4_json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pprint_json.py
32 lines (24 loc) · 895 Bytes
/
pprint_json.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import json
import os.path
import argparse
def load_data(filepath):
if not os.path.exists(filepath):
return None
with open(filepath, 'r', encoding='utf_8') as f:
return json.load(f)
def pretty_print_json(data):
print(json.dumps(data, indent=4, sort_keys=True, ensure_ascii=False))
def createParser():
parser = argparse.ArgumentParser(description='Чтение файлов json \
в удобном формате')
parser.add_argument('-f', '--file', required=True, metavar='ФАЙЛ',
help='Путь до файла в формате json.')
return parser
if __name__ == '__main__':
parser = createParser()
namespace = parser.parse_args()
data = load_data(namespace.file)
if data:
pretty_print_json(data)
else:
print('Файл не найден!')