QJsonModel is a json tree model class for Qt5/C++11/Python based on QAbstractItemModel. QJsonModel is under MIT License.
Add qjsonmodel.cpp
and qjsonmodel.h
into your project.
QJsonModel * model = new QJsonModel;
QTreeView * view = new QTreeView;
view->setModel(model);
model->load("example.json")
Add qjsonmodel.py
to your PYTHONPATH
.
$ pip install Qt.py
import json
import qjsonmodel
model = QJsonModel()
view = QTreeView()
view.setModel(model)
with open("example.json") as f:
model.load(json.load(f))