├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── BuildPackage.yml ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── Resources ├── NotoSerifCJKjp-Medium.otf ├── Retron2000.ttf ├── SpriteMapExample.png ├── dpg_icon_large.ico └── dpg_icon_small.ico ├── dearpygui_ext ├── __init__.py ├── logger.py ├── themes.py └── utilities.py ├── docs ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── index.rst │ └── introduction.rst ├── main.py ├── pyproject.toml └── setup.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: hoffstadt 2 | open_collective: DearPyGui -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/BuildPackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/.github/workflows/BuildPackage.yml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/README.md -------------------------------------------------------------------------------- /Resources/NotoSerifCJKjp-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/Resources/NotoSerifCJKjp-Medium.otf -------------------------------------------------------------------------------- /Resources/Retron2000.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/Resources/Retron2000.ttf -------------------------------------------------------------------------------- /Resources/SpriteMapExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/Resources/SpriteMapExample.png -------------------------------------------------------------------------------- /Resources/dpg_icon_large.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/Resources/dpg_icon_large.ico -------------------------------------------------------------------------------- /Resources/dpg_icon_small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/Resources/dpg_icon_small.ico -------------------------------------------------------------------------------- /dearpygui_ext/__init__.py: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /dearpygui_ext/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/dearpygui_ext/logger.py -------------------------------------------------------------------------------- /dearpygui_ext/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/dearpygui_ext/themes.py -------------------------------------------------------------------------------- /dearpygui_ext/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/dearpygui_ext/utilities.py -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoffstadt/DearPyGui_Ext/HEAD/setup.py --------------------------------------------------------------------------------