{"id":25488165,"url":"https://github.com/chisa-dev/simple-calculator-using-python-ui-tkinter","last_synced_at":"2026-03-11T01:02:11.281Z","repository":{"id":148754642,"uuid":"183222762","full_name":"chisa-dev/Simple-Calculator-Using-Python-UI-Tkinter","owner":"chisa-dev","description":"simple python tkinter gui calculator that can takes mathematical expressions from the user and display answer!","archived":false,"fork":false,"pushed_at":"2022-10-24T07:33:14.000Z","size":16,"stargazers_count":5,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-26T19:43:20.641Z","etag":null,"topics":["calculator","gui","python","tkinter"],"latest_commit_sha":null,"homepage":"https://horansoftware.com","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/chisa-dev.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":"2019-04-24T12:18:53.000Z","updated_at":"2024-02-17T12:30:33.000Z","dependencies_parsed_at":"2023-05-28T20:30:36.092Z","dependency_job_id":null,"html_url":"https://github.com/chisa-dev/Simple-Calculator-Using-Python-UI-Tkinter","commit_stats":null,"previous_names":["chisa-dev/simple-calculator-using-python-ui-tkinter"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/chisa-dev/Simple-Calculator-Using-Python-UI-Tkinter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisa-dev%2FSimple-Calculator-Using-Python-UI-Tkinter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisa-dev%2FSimple-Calculator-Using-Python-UI-Tkinter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisa-dev%2FSimple-Calculator-Using-Python-UI-Tkinter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisa-dev%2FSimple-Calculator-Using-Python-UI-Tkinter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chisa-dev","download_url":"https://codeload.github.com/chisa-dev/Simple-Calculator-Using-Python-UI-Tkinter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisa-dev%2FSimple-Calculator-Using-Python-UI-Tkinter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30364608,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"ssl_error","status_checked_at":"2026-03-10T21:40:59.357Z","response_time":106,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["calculator","gui","python","tkinter"],"created_at":"2025-02-18T20:49:55.235Z","updated_at":"2026-03-11T01:02:11.250Z","avatar_url":"https://github.com/chisa-dev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":" # Simple-Calculator-Using-Python-Gui-Tkinter \u0026middot; [![Build Status](https://img.shields.io/travis/npm/npm/latest.svg?style=flat-square)](https://travis-ci.org/npm/npm) [![npm](https://img.shields.io/npm/v/npm.svg?style=flat-square)](https://www.npmjs.com/package/npm) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/your/your-project/blob/master/LICENSE)\n \nSimple Python Calculator with tkinter UI \u003cbr\u003e\n\n\u003ca href=\"https://t.me.com/official_gemechis/\"\u003e\n  \u003cimg align=\"left\" alt=\"Gemchis Elias Simple ui calculator\" width=\"100%\" src=\"calc.png\" /\u003e\n\u003c/a\u003e\n\u003cbr\u003e\n\u003cbr\u003e\n\n## Installing / Getting started\nTkinter can be installed using pip. The following command is run in the command prompt to install Tkinter\n\n```shell\npip install tk\n```\n### Run This Code\n\nJust run this code on code editor\n\n```shell\nfrom tkinter import * #import all from tkinter module\nfrom math import *\ndef evaluate(event):\n    res.configure(text = \"መልስ = \" + str(eval(entry.get())))\nw = Tk()\n\n#Display የምሆኑ ፁሁፎች ናቸው\nLabel(w, text=\"    Python tkinter Calculator\").pack()\nLabel(w, text=\"\").pack()\nLabel(w, text=\"      ቀላል የሒሳብ Calculator       \").pack()\nLabel(w, text=\" \").pack()\nLabel(w, text=\"     ጥያቄውን ያስገቡ:       \").pack()\n#-----------------------------------\nentry = Entry(w) #take inpute from user\n\nentry.bind(\"\u003cReturn\u003e\", evaluate)\nentry.pack()\nres = Label(w)\nres.pack()\nw.mainloop()   #end\n```\n\nThat Can take Mathematical expression from user and return answer!!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchisa-dev%2Fsimple-calculator-using-python-ui-tkinter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchisa-dev%2Fsimple-calculator-using-python-ui-tkinter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchisa-dev%2Fsimple-calculator-using-python-ui-tkinter/lists"}