{"id":28664761,"url":"https://github.com/pyapp-kit/pyqt6ads","last_synced_at":"2026-02-03T18:16:54.270Z","repository":{"id":279218998,"uuid":"933759010","full_name":"pyapp-kit/PyQt6Ads","owner":"pyapp-kit","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-05T21:06:19.000Z","size":179,"stargazers_count":6,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-11T23:21:43.560Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pyapp-kit.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-02-16T16:21:48.000Z","updated_at":"2025-06-09T14:09:39.000Z","dependencies_parsed_at":"2025-05-05T21:45:51.323Z","dependency_job_id":"e57c6aff-0db5-490a-9481-13ee8092e0c8","html_url":"https://github.com/pyapp-kit/PyQt6Ads","commit_stats":null,"previous_names":["tlambert03/pyqt6ads","pyapp-kit/pyqt6ads"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/pyapp-kit/PyQt6Ads","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyapp-kit%2FPyQt6Ads","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyapp-kit%2FPyQt6Ads/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyapp-kit%2FPyQt6Ads/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyapp-kit%2FPyQt6Ads/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pyapp-kit","download_url":"https://codeload.github.com/pyapp-kit/PyQt6Ads/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyapp-kit%2FPyQt6Ads/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259650955,"owners_count":22890385,"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":[],"created_at":"2025-06-13T13:10:10.448Z","updated_at":"2026-02-03T18:16:54.257Z","avatar_url":"https://github.com/pyapp-kit.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PyQt6Ads\n\n[![License](https://img.shields.io/pypi/l/PyQt6Ads.svg?color=green)](https://github.com/pyapp-kit/PyQt6Ads/raw/main/LICENSE)\n[![PyPI](https://img.shields.io/pypi/v/PyQt6Ads.svg?color=green)](https://pypi.org/project/PyQt6Ads)\n[![Python Version](https://img.shields.io/pypi/pyversions/PyQt6Ads.svg?color=green)](https://python.org)\n[![Build](https://github.com/pyapp-kit/PyQt6Ads/actions/workflows/pypi.yml/badge.svg)](https://github.com/pyapp-kit/PyQt6Ads/actions/workflows/pypi.yml)\n\nPyQt6 Bindings for (the amazing)\n[Qt-Advanced-Docking-System](https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System)\n\n[![Video Advanced\nDocking](https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System/blob/483bb7354ace8f07b76f483ec167e84467ac3977/doc/advanced-docking_video.png)](https://www.youtube.com/watch?v=7pdNfafg3Qc)\n\n## Installation\n\n```sh\npip install PyQt6Ads\n```\n\n## Usage\n\nPlease see [documentation in the upstream\nrepo](https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System/blob/master/doc/user-guide.md).\n\nSee also [examples in this repo](./examples/).\n\nThe autogenerated type stubs are also useful for understanding the API.\n\n### Minimal Example\n\n```python\nfrom PyQt6.QtCore import Qt\nfrom PyQt6.QtGui import QAction\nfrom PyQt6.QtWidgets import QMainWindow, QLabel\nimport PyQt6Ads as ads\n\n\nclass MainWindow(QMainWindow):\n    def __init__(self) -\u003e None:\n        super().__init__()\n\n        # create the dock manager\n        # If the parent is a QMainWindow, DockManager sets itself as the central widget.\n        self.dock_manager = ads.CDockManager(self)\n\n        # create an example widget to place inside the dock widget\n        lbl = QLabel()\n        lbl.setWordWrap(True)\n        lbl.setAlignment(Qt.AlignmentFlag.AlignTop | Qt.AlignmentFlag.AlignLeft)\n        lbl.setText(\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\")\n\n        # create a dock widget with the title \"Label 1\"\n        # and set the created label as the dock widget content\n        dw = ads.CDockWidget(\"Label 1\")\n        dw.setWidget(lbl)\n\n        # add the toggleViewAction of the dock widget to the menu\n        # to give the user the possibility to show the dock widget if it has been closed\n        self.menuView = self.menuBar().addMenu(\"View\")\n        self.menuView.addAction(dw.toggleViewAction())\n\n        # add the dock widget to the top dock widget area\n        self.dock_manager.addDockWidget(ads.DockWidgetArea.TopDockWidgetArea, dw)\n```\n\n## Alternatives\n\n- **For PySide6**: See \u003chttps://github.com/mborgerson/pyside6_qtads\u003e\n- **For PyQt5**: See \u003chttps://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System#pyqt5\u003e (in the upstream repo)\n\n## Developers\n\nTo build the wheel locally, use cibuildwheel:\n\n```sh\nexport QT_VERSION=6.5.3\nuvx cibuildwheel\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyapp-kit%2Fpyqt6ads","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpyapp-kit%2Fpyqt6ads","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyapp-kit%2Fpyqt6ads/lists"}