Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Tags
- django test
- 장고로 ERP
- QApplication
- uiload
- django erp
- 재고 관리
- test drive development
- qwindows.dll
- 채널스
- qpa_plugin
- query 최적화
- ERP
- django rank
- 중량 관리
- 페이지 최적화
- materialized
- pyside6
- django drf
- django
- Python
- tensorflow
- Self ERP
- pyside6 ui
- pip 설치
- channels
- bzpopmin
- 파이썬
- pip 오류
- 장고
- optimization page
Archives
- Today
- Total
목록uiload (1)
취미삼아 배우는 프로그래밍
PySide6 load .ui without convert to .py
import sys from PySide6.QtUiTools import loadUiType from PySide6.QtWidgets import * import os env = os.environ # env.setdefault("QT_DEBUG_PLUGINS","1") # env.setdefault("QT_QPA_PLATFORM_PLUGIN_PATH", os.getcwd()) env.setdefault("QT_PLUGIN_PATH", os.getcwd()) generated_class, base_class = loadUiType("main.ui") class UI(base_class, generated_class): def __init__(self): super().__init__() self.setu..
파이썬
2022. 3. 21. 20:44