Cross-platform frameless window based on Python and Qt


Keywords
qt, pyqt, pyqt6, pyqt5, pyside, pyside2, pyside6, frameless-window, cross-platform, pys
License
MIT
Install
pip install qutewindow==0.1.2

Documentation

Qute Window

Cross-platform frameless window based on Python and Qt

Examples

Qute Window on macOS

Qute Window on Windows

Features

  • Moving (the title bar area is draggable)
  • Stretching
  • Native window shadow
  • Native window animations
  • Win11 snap layout

Installing via PIP

pip install qutewindow

Usage

Here is a minimal example:

import sys

from PySide6.QtWidgets import QApplication
from qutewindow import QuteWindow


if __name__ == "__main__":
    app = QApplication(sys.argv)
    demo = QuteWindow()
    demo.show()
    sys.exit(app.exec())