{"id":22107305,"url":"https://github.com/siddheshk599/classification-algorithms-computer-python3","last_synced_at":"2026-04-30T07:44:04.157Z","repository":{"id":162667370,"uuid":"286420629","full_name":"siddheshk599/classification-algorithms-computer-python3","owner":"siddheshk599","description":"A Python GUI project to compute the results of Data Mining Classification Algorithms: Naive Bayes \u0026 ID3 Decision Tree.","archived":false,"fork":false,"pushed_at":"2020-08-10T10:15:55.000Z","size":37,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-11T15:26:20.909Z","etag":null,"topics":["classification-algorithms","data-mining-algorithms","id3-decision-tree","mysql","naive-bayes","python3","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/siddheshk599.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-08-10T08:35:17.000Z","updated_at":"2022-10-15T12:11:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"50a4465e-2255-479c-b0f5-d6e0840a7cd9","html_url":"https://github.com/siddheshk599/classification-algorithms-computer-python3","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/siddheshk599/classification-algorithms-computer-python3","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddheshk599%2Fclassification-algorithms-computer-python3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddheshk599%2Fclassification-algorithms-computer-python3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddheshk599%2Fclassification-algorithms-computer-python3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddheshk599%2Fclassification-algorithms-computer-python3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siddheshk599","download_url":"https://codeload.github.com/siddheshk599/classification-algorithms-computer-python3/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddheshk599%2Fclassification-algorithms-computer-python3/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32458237,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","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":["classification-algorithms","data-mining-algorithms","id3-decision-tree","mysql","naive-bayes","python3","tkinter-gui"],"created_at":"2024-12-01T08:15:43.357Z","updated_at":"2026-04-30T07:44:04.128Z","avatar_url":"https://github.com/siddheshk599.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Project Title: \n\nClassification Algorithms Computer.\n\n# Getting Started: \n\nSetting up and installing this software is ease by just installing Python3, Python3's Tkinter GUI library, Python's MySQL library and other libraries too.\n\n# Prerequisites:\n\n**Softwares needed:**\n1.\tPython3.\n2.\tPython3's Tkinter GUI library.\n3.\tMySQL.\n4.\tPython3 modules: numpy, pandas, mysql.connector\n\n**Installation links of the required softwares:**\n1.\tPython3: \u003chttps://www.python.org/downloads/\u003e\n2.\tMySQL: \u003chttps://dev.mysql.com/downloads/\u003e\n\n# Installing required softwares:\n\n**For Windows users:**\n1.\tDownload Python3 from the above given link and install it. When installing Python3, make sure that the option 'Tcl/Tk' must be checked to allow Python installer to install Python's Tkinter GUI library.\n2.\tDownload MySQL from the official website given above.\n3.\tOpen command prompt and then run the following commands to install the required modules:\n\n                    pip install mysql-connector pandas numpy\n\n**For Ubuntu/Debian users:**\n1.  Install Python3 by running the following command in terminal: \n          \n          sudo apt-get install python3\n          \n    By default, Debian, Ubuntu or any other Linux distributions come with Python pre-installed.\n2.  Install MySQL and Python3 pip by running the following commands in the terminal:\n\n          sudo apt-get install mysql-server python3-pip\n          \n    This will install MySQL on your system. Then you may proceed to setup MySQL credentials.\n3.  Run the following command in the terminal to install the required Python modules:\n\n          pip3 install pandas numpy mysql-connector\n\n**Following the above installation steps for required softwares will set up an environment to run the Library Management System without any hassles.**\n\n# Running the software:\n**For Windows users:**\n1.  First import the 'database.sql' file into your MySQL database.\n2.  Open your command prompt and navigate to the project's directory and run the following command:\n\n          python3 main.py\n          \n    If all the required dependencies are installed, then a GUI window will open.\n3.  Configure the database credentials first by entering your database username and password, database name (dataMining) and table name (naiveBayesData / id3Data).\n4.  Then you may proceed to run the application normally.\n\n**For Ubuntu/Debian users:**\n1.  First import the 'database.sql' file into your MySQL database.\n2.  Open your terminal and navigate to the project's directory and run the following command:\n\n          python3 main.py\n\n    If all the required dependencies are installed, then a GUI window will open.\n3.  Configure the database credentials first by entering your database username and password, database name (dataMining) and table name (naiveBayesData / id3Data).\n4.  Then you may proceed to run the application normally.\n\n# Built with:\n1.    Python3 (Tkinter) - GUI for the software.\n2.    MySQL - Database Management System.\n\n# Author:\n          Siddhesh Kudtarkar\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddheshk599%2Fclassification-algorithms-computer-python3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiddheshk599%2Fclassification-algorithms-computer-python3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddheshk599%2Fclassification-algorithms-computer-python3/lists"}