本周开始学习 Python,第一个练习项目是,为 DeepSeek 开发一个建议的 Windows 桌面客户端。
import os
import sys
from PySide2.QtCore import Qt, QUrl
from PySide2.QtGui import QIcon
from PySide2.QtWebEngineWidgets import QWebEngineView
from PySide2.QtWidgets import QApplication, QMainWindow, QVBoxLayout, QWidget
class WebWindow(QMainWindow):
def __init__(self, url):
super().__init__()
self.setWindowTitle("DeepSeek - 探索未至之境")
self.setGeometry(0, 0, 960, 640)
# 添加 Favicon
file_path = os.path.dirname(__file__)
icon_path = os.path.join(file_path, "favicon.ico")
self.setWindowIcon(QIcon(icon_path))
# 创建浏览器组件
self.browser = QWebEngineView()
self.browser.load(QUrl(url))
# 布局设置
layout = QVBoxLayout()
layout.addWidget(self.browser)
layout.setContentsMargins(0, 0, 0, 0)
container = QWidget()
container.setLayout(layout)
self.setCentralWidget(container)
self.center()
def center(self):
frame_geometry = self.frameGeometry()
screen_geometry = QApplication.primaryScreen().availableGeometry()
center_point = screen_geometry.center()
frame_geometry.moveCenter(center_point)
self.move(frame_geometry.topLeft())
def main():
# 启用高DPI缩放
QApplication.setHighDpiScaleFactorRoundingPolicy(Qt.HighDpiScaleFactorRoundingPolicy.PassThrough)
QApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
QApplication.setAttribute(Qt.AA_UseHighDpiPixmaps)
# 创建应用程序实例和窗口
app = QApplication(sys.argv)
window = WebWindow("https://chat.deepseek.com/")
window.show()
sys.exit(app.exec_())
# 运行主函数
if __name__ == "__main__":
main()