{"id":22579471,"url":"https://github.com/raspiduino/pythoncircularprogressbar","last_synced_at":"2025-03-28T16:21:58.359Z","repository":{"id":113064485,"uuid":"309400864","full_name":"raspiduino/pythoncircularprogressbar","owner":"raspiduino","description":"Tkinter circular progressbar for Python 2\u00263","archived":false,"fork":false,"pushed_at":"2020-11-04T14:55:21.000Z","size":46,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-02T16:42:17.337Z","etag":null,"topics":["circular-progress-bar","python","tkinter"],"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/raspiduino.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":"2020-11-02T14:48:28.000Z","updated_at":"2023-10-16T13:24:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"d8e9925a-c61d-4a42-b4ea-97ed5cd2768b","html_url":"https://github.com/raspiduino/pythoncircularprogressbar","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raspiduino%2Fpythoncircularprogressbar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raspiduino%2Fpythoncircularprogressbar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raspiduino%2Fpythoncircularprogressbar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raspiduino%2Fpythoncircularprogressbar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raspiduino","download_url":"https://codeload.github.com/raspiduino/pythoncircularprogressbar/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246059327,"owners_count":20717085,"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":["circular-progress-bar","python","tkinter"],"created_at":"2024-12-08T05:07:39.457Z","updated_at":"2025-03-28T16:21:58.354Z","avatar_url":"https://github.com/raspiduino.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python circular progressbar\nTkinter circular progressbar for Python 2 \u0026amp; 3\n## Usage\n![alt](https://raw.githubusercontent.com/raspiduino/pythoncircularprogressbar/main/config.png)\n```python\nmyloadbar = CircularLoadBar(root, x, y, r1, r2, percent=0, color1=green, color2=white, color3=white\n```\n|Argument|Info|\n|--------|----|\n|root|The root windows id (you have created using root = tkinter.Tk())|\n|x|The x location of the progressbar's center|\n|y|The y location of the progressbar's center|\n|r1|Described in the picture (radius of the first circle)|\n|r2|Described in the picture (radius of the second circle)|\n|percent|The startup percent (default is 0%)|\n|color1|Color of the first circle (default is green)|\n|color2|Color of the second circle (default is white)|\n|color3|Color of the third circle (default is white)|\n\n\u003cp\u003eExample: (example.py)\u003c/p\u003e\u003cbr\u003e\n\n```python\nimport circularloadbar\nimport tkinter as tk\n\nroot = tk.Tk()\nroot.geometry('720x360')\n\nmyload = circularloadbar.CircularLoadBar(root, 360, 180, 200, 150)\n\ni = 0\n\ndef edit_p1():\n\t  global i\n\t  i += 1\n\t  myload.change(i)\n\t  root.after(10, edit_p1)\nroot.after(1000, edit_p1)\n\nroot.mainloop()\n```\n\n## Why made this?\n\u003cp\u003eFor a simple reason: There is no 'default' circular progress bar in Python Tkinter, so I wanted to make this.\u003c/p\u003e\n\n## License\n\u003cp\u003eUnder \u003ca href=\"https://github.com/raspiduino/pythoncircularprogressbar/blob/main/LICENSE\"\u003eGNU LGPL-v2.1\u003c/a\u003e\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraspiduino%2Fpythoncircularprogressbar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraspiduino%2Fpythoncircularprogressbar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraspiduino%2Fpythoncircularprogressbar/lists"}