{"id":13542334,"url":"https://github.com/igortg/simplewidgets","last_synced_at":"2026-04-17T16:31:25.078Z","repository":{"id":17789794,"uuid":"20666261","full_name":"igortg/simplewidgets","owner":"igortg","description":"Rapidly build GUI with Python and Qt","archived":false,"fork":false,"pushed_at":"2023-06-24T13:37:37.000Z","size":72,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-10T19:53:58.439Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/igortg.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":"2014-06-09T23:54:34.000Z","updated_at":"2023-06-24T13:37:43.000Z","dependencies_parsed_at":"2024-08-01T10:16:20.515Z","dependency_job_id":null,"html_url":"https://github.com/igortg/simplewidgets","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/igortg/simplewidgets","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/igortg%2Fsimplewidgets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/igortg%2Fsimplewidgets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/igortg%2Fsimplewidgets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/igortg%2Fsimplewidgets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/igortg","download_url":"https://codeload.github.com/igortg/simplewidgets/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/igortg%2Fsimplewidgets/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31936522,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T12:37:54.787Z","status":"ssl_error","status_checked_at":"2026-04-17T12:37:25.095Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":"2024-08-01T10:01:05.056Z","updated_at":"2026-04-17T16:31:25.048Z","avatar_url":"https://github.com/igortg.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"SimpleWidgets\n=============\n\nRapidly build GUI with Python and Qt\n\n### Simple Example\n\nThe above code construct a dialog, waits for the user input and return window contents in a `namedtuple`.\n\n```python\nfrom PyQt4.QtGui import QApplication\nfrom simplewidgets.fields import LineTextField, IntField, ChoiceField\nfrom simplewidgets.simplewidget import SimpleDialog\n\nclass DemoDialog(SimpleDialog):\n    name = LineTextField(label=\"Name\")\n    age = IntField(30, label=\"Age\")\n    gender = ChoiceField([\"Male\", \"Female\"], initial=\"Female\", label=\"Gender\")\n\napp = QApplication([])\ndemo = DemoDialog()\nif demo.exec_accepted():\n    data = demo.get_data()\n```\n      \n![Simple Example](doc/simple-example.png)\n\n    print data\n    \u003e\u003e SimpleData(name=u'', age=30, gender='Female')\n\n\n[![Build Status](https://travis-ci.org/igortg/simplewidgets.svg?branch=master)](https://travis-ci.org/igortg/simplewidgets)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Figortg%2Fsimplewidgets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Figortg%2Fsimplewidgets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Figortg%2Fsimplewidgets/lists"}