├── .gitignore ├── LICENSE ├── README.md ├── example └── simple.py ├── requirements-lock.txt ├── requirements.txt ├── setup.py └── src └── dicttreemodel.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fre-sch/dict-treemodel-qt5/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fre-sch/dict-treemodel-qt5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fre-sch/dict-treemodel-qt5/HEAD/README.md -------------------------------------------------------------------------------- /example/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fre-sch/dict-treemodel-qt5/HEAD/example/simple.py -------------------------------------------------------------------------------- /requirements-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fre-sch/dict-treemodel-qt5/HEAD/requirements-lock.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyqt5 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fre-sch/dict-treemodel-qt5/HEAD/setup.py -------------------------------------------------------------------------------- /src/dicttreemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fre-sch/dict-treemodel-qt5/HEAD/src/dicttreemodel.py --------------------------------------------------------------------------------