bcst/libs/resource.py
2020-04-21 17:50:05 +02:00

23 lines
535 B
Python

#!/usr/bin/env python
from os import path
import json, jsonschema
class Resource:
def __init__(self, resource):
self.resource=resource
# Read data
try:
with open(resource,'r') as f:
self.data=f.read()
except IOError:
print("Unable to found "+resource)
exit(1)
# Decode data
try:
self.json=json.loads(self.data)
except:
print("Unable to read json from "+resource)
exit(1)