{"id":17603017,"url":"https://github.com/yjg30737/pyqt-checkbox-list-widget","last_synced_at":"2025-05-07T10:04:28.999Z","repository":{"id":57679331,"uuid":"437404777","full_name":"yjg30737/pyqt-checkbox-list-widget","owner":"yjg30737","description":"PyQt QListWidget for checkable items","archived":false,"fork":false,"pushed_at":"2024-07-06T01:38:30.000Z","size":23,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-07T10:02:41.839Z","etag":null,"topics":["py37","pyqt","pyqt-examples","pyqt-qlistwidget","pyqt-tutorial","pyqt5","pyqt5-examples","pyqt5-qlistwidget","pyqt5-tutorial","python","python3","python37","qcheckbox","qlistwidget","qt"],"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/yjg30737.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}},"created_at":"2021-12-11T22:47:13.000Z","updated_at":"2024-07-06T01:38:33.000Z","dependencies_parsed_at":"2024-10-22T20:10:59.573Z","dependency_job_id":null,"html_url":"https://github.com/yjg30737/pyqt-checkbox-list-widget","commit_stats":{"total_commits":16,"total_committers":1,"mean_commits":16.0,"dds":0.0,"last_synced_commit":"e897ad3c630dc7bd8a3e099b7af79c37630ab346"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-checkbox-list-widget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-checkbox-list-widget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-checkbox-list-widget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-checkbox-list-widget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yjg30737","download_url":"https://codeload.github.com/yjg30737/pyqt-checkbox-list-widget/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252856550,"owners_count":21814858,"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":["py37","pyqt","pyqt-examples","pyqt-qlistwidget","pyqt-tutorial","pyqt5","pyqt5-examples","pyqt5-qlistwidget","pyqt5-tutorial","python","python3","python37","qcheckbox","qlistwidget","qt"],"created_at":"2024-10-22T13:37:22.738Z","updated_at":"2025-05-07T10:04:28.947Z","avatar_url":"https://github.com/yjg30737.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pyqt-checkbox-list-widget\nPyQt QListWidget for checkable items\n\n## Requirements\nPyQt5 \u003e= 5.8\n\n## Setup\n`python -m pip install pyqt-checkbox-list-widget`\n\n## Included Packages\n* \u003ca href=\"https://github.com/yjg30737/pyqt-tooltip-list-widget.git\"\u003epyqt-tooltip-list-widget\u003c/a\u003e - parent class\n\n### Note\nIf you want to use pyqt-checkbox-list-widget only without pyqt-tooltip-list-widget, just remove and update the source - bug won't occur.\n\n## Example\n```python\nfrom PyQt5.QtWidgets import QCheckBox, QVBoxLayout, QWidget, QApplication\nfrom pyqt_checkbox_list_widget.checkBoxListWidget import CheckBoxListWidget\n\n\nclass Widget(QWidget):\n    def __init__(self):\n        super().__init__()\n        self.__initUi()\n\n    def __initUi(self):\n        allCheckBox = QCheckBox('Check all')\n        checkBoxListWidget = CheckBoxListWidget()\n        checkBoxListWidget.addItems(['a', 'b', 'c', 'd'])\n\n        allCheckBox.stateChanged.connect(checkBoxListWidget.toggleState)\n\n        lay = QVBoxLayout()\n        lay.addWidget(allCheckBox)\n        lay.addWidget(checkBoxListWidget)\n\n        self.setLayout(lay)\n\n\nif __name__ == \"__main__\":\n    import sys\n\n    app = QApplication(sys.argv)\n    widget = Widget()\n    widget.show()\n    app.exec_()\n```\n\nResult\n\nhttps://user-images.githubusercontent.com/55078043/145694178-9d583318-2533-43fd-bbc1-71c85444a953.mp4\n\n## Similar package\n\u003ca href=\"https://github.com/yjg30737/pyqt-checkbox-table-widget.git\"\u003epyqt-checkbox-table-widget\u003c/a\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyjg30737%2Fpyqt-checkbox-list-widget","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyjg30737%2Fpyqt-checkbox-list-widget","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyjg30737%2Fpyqt-checkbox-list-widget/lists"}