{"id":21362821,"url":"https://github.com/legopitstop/responsivetkinter","last_synced_at":"2025-03-16T07:10:57.221Z","repository":{"id":57461496,"uuid":"450962498","full_name":"legopitstop/ResponsiveTkinter","owner":"legopitstop","description":"This is a simple library that allows you to create responsive widgets in your tkinter window. ","archived":false,"fork":false,"pushed_at":"2024-04-15T03:52:45.000Z","size":469,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-29T22:54:01.613Z","etag":null,"topics":["pypi","python","pythonpackage","resizeable","tagsresponsive","tkinter"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/ResponsiveTkinter/","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/legopitstop.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","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},"funding":{"github":null,"patreon":"Legopitstop","open_collective":null,"ko_fi":"legopitstop","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2022-01-22T23:44:12.000Z","updated_at":"2024-05-15T00:07:47.000Z","dependencies_parsed_at":"2024-04-15T05:40:09.095Z","dependency_job_id":null,"html_url":"https://github.com/legopitstop/ResponsiveTkinter","commit_stats":{"total_commits":6,"total_committers":1,"mean_commits":6.0,"dds":0.0,"last_synced_commit":"ad33e469d22a0edf76ec4875f66e9908081a9c3f"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/legopitstop%2FResponsiveTkinter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/legopitstop%2FResponsiveTkinter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/legopitstop%2FResponsiveTkinter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/legopitstop%2FResponsiveTkinter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/legopitstop","download_url":"https://codeload.github.com/legopitstop/ResponsiveTkinter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243836015,"owners_count":20355615,"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":["pypi","python","pythonpackage","resizeable","tagsresponsive","tkinter"],"created_at":"2024-11-22T06:15:35.061Z","updated_at":"2025-03-16T07:10:57.201Z","avatar_url":"https://github.com/legopitstop.png","language":"Python","readme":"# ResponsiveTkinter - 1.0.2\n## What is this\nThis is a simple library that allows you to create responsive widgets in your tkinter window. \n\n## What does \"responsive\" mean?\nResponsive is a development approach that creates dynamic changes to the appearance of a widget, depending on the window size and orientation of the device being used to view it. ... In responsive design, window widgets reshuffle as the window size grows or shrinks.\n\n## Install\n`pip install ResponsiveTkinter`\n\n## Examples\n\nWhen the window has been resized it will modify the grid placement.\n```python\nfrom tkinter import Frame, Tk\nfrom ResponsiveTkinter import Responsive\n\nroot=Tk()\nroot.title('Window Title')\nroot.geometry('900x900')\nleft = Frame(root,width=300,height=300,bg='blue')\nleft.grid(row=0,column=0)\nmain = Frame(root,width=300,height=300,bg='gray')\nmain.grid(row=1,column=0)\nright = Frame(root,width=300,height=300,bg='green')\nright.grid(row=2,column=0)\n\n# Make widgets responsive\nR = Responsive(root,901) # Windows width must be more than 900 for it to work.\nR.grid(main,row=0,column=1) # Change pos in the grid\nR.grid(right,row=0,column=2)\nroot.mainloop()\n```\n\n![example1](./assets/example1.gif)\n\n## License\nMIT License","funding_links":["https://patreon.com/Legopitstop","https://ko-fi.com/legopitstop"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flegopitstop%2Fresponsivetkinter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flegopitstop%2Fresponsivetkinter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flegopitstop%2Fresponsivetkinter/lists"}