Skip to main content

A modern and customizable python GUI interface library built from the PySide6 library

Project description

PyPI Version LICENSE Python Version Total Downloads Monthly Downloads

Feel free to donate to help support and contribute to this project :) Thanks!

Paypal donation button Buy Me A Coffee


CustomPyQt is a python GUI interface library built from the PySide6 library, providing a modern and consistant interface with styled widgets and dark and light themes; all widget's colors can be styled in ("light", "dark") format. CustomPyQt can also be used or integrated with PySide and PyQt versions as long as PySide6 is installed.

| complex_example.py on Windows 11 with dark mode and "blue" theme

| complex_example.py on Ubuntu 22.04 with light mode and "blue" theme

Requirements

  • Python 3.9, 3.10, 3.11, 3.12, or 3.13
  • Pyside6 (you can install with the command pip install PySide6)

Installation

pip install PyCt6

If there is any issues you can try python -m pip install PyCt6 and if that still doesn't work you can also try python3.13 -m pip install PyCt6 using whatever python version you have

Documentation

The documentation can be found on this Github Wiki page:

CustomPyQt Documentation and Tutorial

Example Program

Here is a simple example program with only one button to test the CustomPyQt library:

from PyCt6 import CApplication, CMainWindow, CButton, set_appearance_mode, set_color_theme
from PySide6.QtWidgets import QVBoxLayout
from PySide6.QtCore import Qt

set_appearance_mode("system")
set_color_theme("blue")

class MainWindow(CMainWindow):
    def __init__(self):
        super().__init__(width=400, height=250, title="CMainWindow", background_color="rgb(30,30,30)")

        self.main_layout = QVBoxLayout()
        self.main_layout.setAlignment(Qt.AlignmentFlag.AlignCenter)

        self.button = CButton(master=self, text="CButton", command=self.command)

        self.main_layout.addWidget(self.button)
        self.setLayout(self.main_layout)

    def command(self):
        print("Button Clicked!")

app = CApplication()
win = MainWindow()
win.show()
app.exec()

which results in this window on Windows 11

You can find more example programs in the examples folder and in the documentation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyct6-6.1.0-py3-none-any.whl (654.4 kB view details)

Uploaded Python 3

File details

Details for the file pyct6-6.1.0-py3-none-any.whl.

File metadata

  • Download URL: pyct6-6.1.0-py3-none-any.whl
  • Upload date:
  • Size: 654.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyct6-6.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 703753a88e2a4df96f1d0641cb6dc71a2de75c0eda9e8f609c8e52639c4d223f
MD5 81a05719982bb1e4ada3d7bd2db61d6b
BLAKE2b-256 f6a93723a3947a65e8d02bb742c9f3247a5038785fc297b728d90bd1da483de0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page