{"id":29125621,"url":"https://github.com/dliammc/custompyqt","last_synced_at":"2025-06-29T22:02:53.473Z","repository":{"id":299332204,"uuid":"968251501","full_name":"Dliammc/CustomPyQt","owner":"Dliammc","description":"A modern and customizable python GUI interface library built from the PySide6 library","archived":false,"fork":false,"pushed_at":"2025-06-29T01:06:05.000Z","size":9632,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-29T22:02:02.861Z","etag":null,"topics":["custom","dark-mode","dark-theme","linux","modern","modern-ui","pyside6","python","python-ui","ui-design","user-interface","windows","windows-11"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Dliammc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-17T18:58:44.000Z","updated_at":"2025-06-29T00:42:09.000Z","dependencies_parsed_at":"2025-06-16T02:23:55.550Z","dependency_job_id":"8a931e1d-568f-41d6-9be2-67a67704caa4","html_url":"https://github.com/Dliammc/CustomPyQt","commit_stats":null,"previous_names":["dliammc/custompyqt"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/Dliammc/CustomPyQt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dliammc%2FCustomPyQt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dliammc%2FCustomPyQt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dliammc%2FCustomPyQt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dliammc%2FCustomPyQt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Dliammc","download_url":"https://codeload.github.com/Dliammc/CustomPyQt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dliammc%2FCustomPyQt/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262674930,"owners_count":23346739,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["custom","dark-mode","dark-theme","linux","modern","modern-ui","pyside6","python","python-ui","ui-design","user-interface","windows","windows-11"],"created_at":"2025-06-29T22:01:54.210Z","updated_at":"2025-06-29T22:02:53.251Z","avatar_url":"https://github.com/Dliammc.png","language":"Python","readme":"\u003ch1 align=\"center\"\u003eCustomPyQt\u003c/h1\u003e\n\n![PyPI Version](https://img.shields.io/pypi/v/PyCt6)\n![LICENSE](https://img.shields.io/pypi/l/PyCt6?color=blue)\n![Python Version](https://img.shields.io/pypi/pyversions/PyCt6)\n![Total Downloads](https://img.shields.io/pepy/dt/PyCt6)\n![Monthly Downloads](https://img.shields.io/pypi/dm/PyCt6?label=monthly%20downloads)\n\n\nCustomPyQt is a python GUI interface library built from the PySide6\nlibrary, providing a modern and consistant interface with styled widgets\nand dark and light themes; all widget's colors can be styled in \n(\"light\", \"dark\") format. CustomPyQt can also be used or integrated \nwith PySide and PyQt versions as long as PySide6 is installed.\n\n![](documentation_images/complex_example_windows_image.png)\n\n| _`complex_example.py` on Windows 11 with dark mode and \"blue\" theme_\n\n![](documentation_images/complex_example_ubuntu_image.png)\n\n| _`complex_example.py` on Ubuntu 22.04 with light mode and \"blue\" theme_\n\n\n## Requirements\n* Python 3.9, 3.10, 3.11, 3.12, or 3.13\n* Pyside6 (you can install with the command ```pip install PySide6```)\n    \n## Installation\n```\npip install PyCt6\n```\nIf 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\n\n## Documentation\nThe documentation can be found on this Github Wiki page:\n\n[CustomPyQt Documentation and Tutorial](https://github.com/Dliammc/CustomPyQt/wiki)\n\n## Example Program\nHere is a simple example program with only one button to test the CustomPyQt library:\n\n```python\nfrom PyCt6 import CMainWindow, CButton, set_appearance_mode, set_color_theme\nfrom PySide6.QtWidgets import QApplication, QVBoxLayout\nfrom PySide6.QtCore import Qt\n\nset_appearance_mode(\"system\")\nset_color_theme(\"blue\")\n\nclass MainWindow(CMainWindow):\n    def __init__(self):\n        super().__init__(width=400, height=250, title=\"CMainWindow\", background_color=\"rgb(30,30,30)\")\n\n        self.main_layout = QVBoxLayout()\n        self.main_layout.setAlignment(Qt.AlignmentFlag.AlignCenter)\n\n        self.button = CButton(master=self, text=\"CButton\", command=self.command)\n\n        self.main_layout.addWidget(self.button)\n        self.setLayout(self.main_layout)\n\n    def command(self):\n        print(\"Button Clicked!\")\n\napp = QApplication()\nwin = MainWindow()\nwin.show()\napp.exec()\n```\n\nwhich results in this window on Windows 11\n\n\u003cimg src=\"documentation_images/simple_example_image.png\" width=\"400\"/\u003e\n\nYou can find more example programs in the [examples folder](https://github.com/Dliammc/CustomPyQt/tree/main/examples) and in the [documentation](https://github.com/Dliammc/CustomPyQt/wiki/CustomPyQt-Documentation-and-Tutorial)\n\n## Contribution\n\nFeel free to donate with PayPal to help support and contribute to this project :) Thanks!\n\n\u003ca href=\"https://www.paypal.com/paypalme/DanielMcCraw135\"\u003e\u003cimg src=\"documentation_images/paypal_button_image.png\" width=170 alt=\"Paypal donation button\"\u003e\u003c/a\u003e\n","funding_links":["https://www.paypal.com/paypalme/DanielMcCraw135"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdliammc%2Fcustompyqt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdliammc%2Fcustompyqt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdliammc%2Fcustompyqt/lists"}