{"id":28381907,"url":"https://github.com/romanin-rf/dearfy","last_synced_at":"2025-06-25T04:31:01.786Z","repository":{"id":293633141,"uuid":"984648146","full_name":"romanin-rf/dearfy","owner":"romanin-rf","description":"A library for simplifying the creation of complex GUIs using DearPyGUI.","archived":false,"fork":false,"pushed_at":"2025-05-22T19:39:31.000Z","size":139,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-06-06T04:33:04.227Z","etag":null,"topics":["dear-imgui","dearpygui","python","simplify-framework"],"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/romanin-rf.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-05-16T09:19:27.000Z","updated_at":"2025-05-22T19:39:35.000Z","dependencies_parsed_at":"2025-05-16T10:42:07.481Z","dependency_job_id":"d05676a5-83d8-40ba-b8f4-5b27b249f4cf","html_url":"https://github.com/romanin-rf/dearfy","commit_stats":null,"previous_names":["romanin-rf/dearfy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/romanin-rf/dearfy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romanin-rf%2Fdearfy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romanin-rf%2Fdearfy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romanin-rf%2Fdearfy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romanin-rf%2Fdearfy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/romanin-rf","download_url":"https://codeload.github.com/romanin-rf/dearfy/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romanin-rf%2Fdearfy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261805034,"owners_count":23212288,"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":["dear-imgui","dearpygui","python","simplify-framework"],"created_at":"2025-05-30T04:06:40.481Z","updated_at":"2025-06-25T04:31:01.768Z","avatar_url":"https://github.com/romanin-rf.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dearfy\n\n## Desription\nA library to simplify the creation of complex applications using DearPyGUI (based on DearImGUI).\n\n## Using\n\n```python\nfrom dearfy.app import App, action\nfrom dearfy.widgets import *\nfrom dearfy.handlers import ClickedHandler\nfrom dearfy.typing import Tag\n\n\nclass MyApp(App):\n    def compose(self) -\u003e ComposeResult:\n        with Window(label='Title'):\n            with Group(horizontal=True):\n                with Text('Click for SURPRISE: '):\n                    yield ClickedHandler(callback='test0')\n                yield Button(label='*click*', callback='test1')\n    \n    # Attribute handling is used, \n    # i.e. all functions that start with `action_` will be wrapped in `Action`.\n    def action_test0(self, sender: Tag):\n        print('!!! SURPRISE #1 !!!')\n    \n    # And it is possible not to write them through self, \n    # although if you decide to do it, \n    # you will have to wrap them in the action decorator anyway.\n    @action('test1')\n    def action_test1(self):\n        print('!!! SURPRISE #2 !!!')\n```\n\n## Installing\n\nSo far, the project is still under development. So I don't recommend to use it as a basis for any project.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromanin-rf%2Fdearfy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fromanin-rf%2Fdearfy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromanin-rf%2Fdearfy/lists"}