{"id":14982667,"url":"https://github.com/yjg30737/pyqt-vertical-tab-widget","last_synced_at":"2025-09-08T05:32:42.347Z","repository":{"id":57678942,"uuid":"436076541","full_name":"yjg30737/pyqt-vertical-tab-widget","owner":"yjg30737","description":"PyQt vertical tab widget (text is horizontal)","archived":false,"fork":false,"pushed_at":"2022-12-25T02:22:34.000Z","size":12,"stargazers_count":5,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-28T11:22:56.733Z","etag":null,"topics":["pyqt","pyqt-horizontal-tab-widget","pyqt5","pyqt5-examples","pyqt5-gui","pyqt5-horizontal-tab-widget","pyqt5-tutorial","python","python3","python37","qt","qtabwidget"],"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}},"created_at":"2021-12-08T01:20:36.000Z","updated_at":"2024-01-12T14:46:36.000Z","dependencies_parsed_at":"2023-01-30T21:25:12.523Z","dependency_job_id":null,"html_url":"https://github.com/yjg30737/pyqt-vertical-tab-widget","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-vertical-tab-widget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-vertical-tab-widget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-vertical-tab-widget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-vertical-tab-widget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yjg30737","download_url":"https://codeload.github.com/yjg30737/pyqt-vertical-tab-widget/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":232282810,"owners_count":18499325,"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":["pyqt","pyqt-horizontal-tab-widget","pyqt5","pyqt5-examples","pyqt5-gui","pyqt5-horizontal-tab-widget","pyqt5-tutorial","python","python3","python37","qt","qtabwidget"],"created_at":"2024-09-24T14:05:50.017Z","updated_at":"2025-01-03T02:50:57.013Z","avatar_url":"https://github.com/yjg30737.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pyqt-vertical-tab-widget\nPyQt vertical tab widget (text is horizontal)\n\n## Requirements\nPyQt5 \u003e= 5.8\n\n## Setup\n`python -m pip install pyqt-vertical-tab-widget`\n\n## Example\nCode Example\n```python\nfrom PyQt5.QtCore import Qt\nfrom PyQt5.QtGui import QFont\nfrom PyQt5.QtWidgets import QApplication, QLabel\nfrom pyqt_vertical_tab_widget.verticalTabWidget import VerticalTabWidget\n\n\nif __name__ == \"__main__\":\n    import sys\n\n    app = QApplication(sys.argv)\n    myWindow = VerticalTabWidget()\n    for i in range(3):\n        label = QLabel()\n        label.setAlignment(Qt.AlignCenter)\n        label.setText(f'Widget {i}')\n        label.setFont(QFont('Arial', 30, QFont.Bold))\n        myWindow.addTab(label, f'Tab {i}')\n    myWindow.show()\n    sys.exit(app.exec_())\n```\n\nResult\n\nhttps://user-images.githubusercontent.com/55078043/145132730-b2294734-118d-4fc4-b493-943a1482e607.mp4\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyjg30737%2Fpyqt-vertical-tab-widget","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyjg30737%2Fpyqt-vertical-tab-widget","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyjg30737%2Fpyqt-vertical-tab-widget/lists"}