{"id":21505748,"url":"https://github.com/kumbong/quinemccluskey","last_synced_at":"2025-07-16T00:32:43.022Z","repository":{"id":67158259,"uuid":"191644287","full_name":"Kumbong/QuineMcCluskey","owner":"Kumbong","description":"A robust, insanely fast and stupidly easy to use CLI tool for minimizing circuits via the Quine Mccluskey method. ","archived":false,"fork":false,"pushed_at":"2023-11-24T08:42:56.000Z","size":928,"stargazers_count":32,"open_issues_count":1,"forks_count":18,"subscribers_count":3,"default_branch":"master","last_synced_at":"2023-11-24T09:35:52.552Z","etag":null,"topics":["digital-electronics","python3","quine-mccluskey-algorithm"],"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/Kumbong.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}},"created_at":"2019-06-12T21:02:53.000Z","updated_at":"2023-07-05T12:10:01.000Z","dependencies_parsed_at":"2023-11-24T09:44:38.776Z","dependency_job_id":null,"html_url":"https://github.com/Kumbong/QuineMcCluskey","commit_stats":null,"previous_names":[],"tags_count":2,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kumbong%2FQuineMcCluskey","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kumbong%2FQuineMcCluskey/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kumbong%2FQuineMcCluskey/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kumbong%2FQuineMcCluskey/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kumbong","download_url":"https://codeload.github.com/Kumbong/QuineMcCluskey/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226084440,"owners_count":17571156,"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":["digital-electronics","python3","quine-mccluskey-algorithm"],"created_at":"2024-11-23T19:12:41.930Z","updated_at":"2024-11-23T19:12:42.458Z","avatar_url":"https://github.com/Kumbong.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\t\u003ca href=\"https://www.hackerrank.com/profile/kumbonghermann\"\u003e\u003cimg src=\"assets/images/circuit.jpg\" \u003e\u003c/a\u003e\n\u003c/p\u003e\n\u003cp \n\u003ch1 align=\"center\"\u003e\n    Quine McCluskey Circuit Minimizer.\n\u003c/h1\u003e\n  \u003cp align=\"center\"\u003e\n \u003cimg src=\"https://img.shields.io/github/release/Kumbong/quine_mccluskey.svg\" /\u003e\n \u003cimg src=\"https://img.shields.io/github/issues/Kumbong/quine_mccluskey.svg\"\u003e\n \u003cimg src=\"https://img.shields.io/github/issues-closed-raw/Kumbong/quine_mccluskey.svg\"\u003e\n \u003cimg src=\"https://img.shields.io/snyk/vulnerabilities/github/Kumbong/quine_mccluskey.svg\"\u003e\n \u003cimg src=\"https://img.shields.io/github/languages/top/kumbong/quine_mccluskey.svg\"\u003e\n \u003cimg src=\"https://img.shields.io/codefactor/grade/github/kumbong/quine_mccluskey/master.svg\"\u003e\n \u003cimg src=\"https://travis-ci.org/Kumbong/quine_mccluskey.svg?branch=master\"\u003e\n \u003c/p\u003e\n\nA robust, insanely fast and stupidly easy to use CLI tool for minimizing sum of products via the Quine Mccluskey minimization technique.\n\n## Features :gem:\n   * Written in uncomplicated python :innocent:\n   * Supports don't cares and variables for representing expression\n   * Display of all steps leading to solution :droplet:\n   * Works on Mac, Linux and Windows\n   * Provides all other alternative solutions to the minimization problem\n   \n## Installation :package:\n1. Clone the repo\n```bash\n   git clone https://github.com/Kumbong/quine_mccluskey.git\n   cd quine_mccluskey\n```\n2. Install dependencies\n```bash\n   pip install -r requirements.txt\n```\n\n## Usage :computer:\nYou can use the following optional arguments according to your needs: \n\n   * `-d`, `--dcares` (list of numbers): **list of dont't cares (default=[ ])**\n   * `-v`, `--variables` (list of chars): **list of characters for representing result (default = [ ])**\n   * `-s`, `--show_steps` (yes|no): **show steps leading to solution (default=yes)**\n   * `-p`, `--sop` (sum of products): **sum of products are used to be reduce the function**\n   * `-m`, `--minterms` (minterms): **sum of minterms are used to be reduce the function**\n   \nExample\n```bash\n    python -m qmccluskey -m 0,1,3,7,8,9,11,15 -d 12  -v a,b,c,d\n    python -m qmccluskey -p a'b'c'+b'cd'+a'bcd'+ab'c' -v a,b,c,d\n```\n## Demo :movie_camera:\n   Solution for the the Example above\n   \n   ![](assets/images/grouping.png)\n   ![](assets/images/combining.png)\n   ![](assets/images/coverage.png)\n   ![](assets/images/solution.png)\n   \n## Contributing :gift: [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/dwyl/esta/issues)\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\nPlease make sure to update tests as appropriate.\n\n## Want to talk more??\n If you are interested in helping or have something to suggest or just want to chat with me, you can reach me via email: kumbonghermann@gmail.com\n\n\n## References :book:\n* Petrick's method \n    https://en.wikipedia.org/wiki/Petrick%27s_method\n* quine mccluskey also in python\n    https://github.com/tpircher/quine-mccluskey\n* readme.md\n    https://github.com/karan/joe\n\n## Todos :pencil:\n - Complete GUI module\n - Write tests\n - Include steps for petrick's method\n\n\nLicense :key:\n----\n\nMIT \u0026copy; Kumbong Hermann\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkumbong%2Fquinemccluskey","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkumbong%2Fquinemccluskey","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkumbong%2Fquinemccluskey/lists"}