{"id":19551578,"url":"https://github.com/mhcrnl/tkinter-templates","last_synced_at":"2026-06-11T18:31:13.789Z","repository":{"id":146420366,"uuid":"415006446","full_name":"mhcrnl/Tkinter-Templates","owner":"mhcrnl","description":"Templates projects in python tkinter.","archived":false,"fork":false,"pushed_at":"2021-11-09T15:57:10.000Z","size":59,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-26T07:16:48.132Z","etag":null,"topics":["python","templates","tkinter","tkinter-graphic-interface","tkinter-gui"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mhcrnl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2021-10-08T13:55:15.000Z","updated_at":"2023-05-04T09:20:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"f4ee7e56-9134-4052-8b3e-2486aa3ca82a","html_url":"https://github.com/mhcrnl/Tkinter-Templates","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mhcrnl/Tkinter-Templates","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mhcrnl%2FTkinter-Templates","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mhcrnl%2FTkinter-Templates/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mhcrnl%2FTkinter-Templates/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mhcrnl%2FTkinter-Templates/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mhcrnl","download_url":"https://codeload.github.com/mhcrnl/Tkinter-Templates/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mhcrnl%2FTkinter-Templates/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34213180,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["python","templates","tkinter","tkinter-graphic-interface","tkinter-gui"],"created_at":"2024-11-11T04:14:23.120Z","updated_at":"2026-06-11T18:31:13.765Z","avatar_url":"https://github.com/mhcrnl.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python Tkinter Template\n\n## 01Template -\u003e Tkinter with class\n```python\n#!/usr/bin/python3\n# -*- coding: utf-8 -*-\n# FILE: __main__.py\n# RUN : python3 __main__.py\n# ----------------------------------------------------BEGIN file\nimport tkinter as tk\nfrom tkinter import ttk\n\nclass Application(tk.Frame):\n    def __init__(self, master, *args, **kwargs):\n        super().__init__(master, *args, **kwargs)\n        self.pack()\n\n        self.master.geometry(\"650x450\")\n        self.master.title(\"Tkinter Template with Class\")\n\n        self.create_widgets()\n\n    def create_widgets(self):\n        pass\n\n    def callBack(self):\n        pass\n\ndef main():\n    root = tk.Tk()\n    app = Application(master=root)#Inheritance\n    app.mainloop()\n\nif __name__ == \"__main__\":\n    main()\n# ------------------------------------------------------END file\n```\n![image](.../Templates/01Template/img01.png)\n\n\nSimple overview of use/purpose.\n\n## Description\n\nAn in-depth paragraph about your project and overview of use.\n\n## Getting Started\n\n### Dependencies\n\n* Describe any prerequisites, libraries, OS version, etc., needed before installing program.\n* ex. Windows 10\n\n### Installing\n\n* How/where to download your program\n* Any modifications needed to be made to files/folders\n\n### Executing program\n\n* How to run the program\n\n```bash\n$ python3 main.py\n```\n* Step-by-step bullets\n```\ncode blocks for commands\n```\n\n## Help\n\nAny advise for common problems or issues.\n```\ncommand to run if program contains helper info\n```\n\n## Authors\n\nContributors names and contact info\n\nex. Dominique Pizzie  \nex. [@DomPizzie](https://twitter.com/dompizzie)\n\n## Version History\n\n* 0.2\n    * Various bug fixes and optimizations\n    * See [commit change]() or See [release history]()\n* 0.1\n    * Initial Release\n\n## License\n\nThis project is licensed under the [NAME HERE] License - see the LICENSE.md file for details\n\n## Acknowledgments\n\nInspiration, code snippets, etc.\n* [awesome-readme](https://github.com/matiassingers/awesome-readme)\n* [PurpleBooth](https://gist.github.com/PurpleBooth/109311bb0361f32d87a2)\n* [dbader](https://github.com/dbader/readme-template)\n* [zenorocha](https://gist.github.com/zenorocha/4526327)\n* [fvcproductions](https://gist.github.com/fvcproductions/1bfc2d4aecb01a834b46)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmhcrnl%2Ftkinter-templates","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmhcrnl%2Ftkinter-templates","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmhcrnl%2Ftkinter-templates/lists"}