alkira/validate-json.py

8 lines
122 B
Python
Raw Normal View History

2022-06-15 10:43:29 +02:00
#!/usr/bin/env python3
import json
2022-06-17 14:07:23 +02:00
with open ('config/panfwservices1.txt', 'r') as f:
2022-06-15 10:43:29 +02:00
body = json.load(f)
2022-06-17 12:45:57 +02:00
print(body)