gitextract_q4iknb3s/ ├── .flake8 ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── blank-screen-without-any-elements.md │ │ ├── bug-report.md │ │ ├── feature-request.md │ │ └── key-error.md │ └── workflows/ │ ├── build.yml │ └── greetings.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LEARN.md ├── LICENSE ├── Makefile ├── README.md ├── docs/ │ ├── CONTRIBUTING.md │ ├── README.ar-DZ.md │ ├── README.ban-BAN.md │ ├── README.fr-FR.md │ ├── README.gu-GU.md │ ├── README.hin-HIN.md │ ├── README.it-IT.md │ ├── README.kr-KR.md │ ├── README.mr-MR.md │ ├── README.pt-BR.md │ ├── README.ru-RU.md │ ├── README.spa-SPA.md │ ├── README.tr-TR.md │ ├── README.vi-VN.md │ ├── README.zh-CN.md │ ├── build.md │ ├── instructions.ar-DZ.md │ ├── instructions.ban-BAN.md │ ├── instructions.fr-FR.md │ ├── instructions.gu-GU.md │ ├── instructions.it-IT.md │ ├── instructions.kr-KR.md │ ├── instructions.md │ ├── instructions.pt-BR.md │ ├── instructions.ru-RU.md │ ├── instructions.spa-SPA.md │ ├── instructions.tr-TR.md │ ├── instructions.vi-VN.md │ └── instructions.zh-CN.md ├── gui/ │ ├── __init__.py │ └── gui.py ├── pyproject.toml ├── requirements.txt ├── tests/ │ └── test_utils.py └── tkdesigner/ ├── __init__.py ├── cli.py ├── conftest.py ├── constants.py ├── designer.py ├── figma/ │ ├── README.md │ ├── __init__.py │ ├── custom_elements.py │ ├── endpoints.py │ ├── frame.py │ ├── node.py │ └── vector_elements.py ├── template.py └── utils.py