python read object from json file code example
Example 1: python read json file
import json
with open('path_to_file/person.json') as f:
data = json.load(f)
print(data)
Example 2: read json data from file
fs.readFile(ROLES_FILE, "utf8", (err, data) => {
if (err) {
res.status(403).json({});
}
const [localScope, action] = scope.split(".");
const mapper = JSON.parse(data.toString("utf8").replace(/^\uFEFF/, ""));
const isAllowed = checkRole(mapper, localScope, action, role);
if (isAllowed) {
next();
} else {
res.status(403).json({});
}