This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import csv | |
| import json | |
| from flask import Flask, render_template | |
| # reference: https://stackoverflow.com/questions/29631711/python-to-parent-child-json | |
| # create a helper class for each tree node | |
| class Node(object): | |
| # generate new node | |
| def __init__(self, cluster): |