{"id":27288373,"url":"https://github.com/almightynan/gamma","last_synced_at":"2026-05-04T07:37:12.462Z","repository":{"id":286439449,"uuid":"961200095","full_name":"AlmightyNan/gamma","owner":"AlmightyNan","description":"Minimal, Python-based interface for MySQL — built as a lightweight alternative to WampServer.","archived":false,"fork":false,"pushed_at":"2025-04-06T13:36:00.000Z","size":7570,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T14:26:38.479Z","etag":null,"topics":["beginner-friendly","mysql","sql-client","students","wampserver-alternative"],"latest_commit_sha":null,"homepage":"https://gamma.almightynan.cc","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/AlmightyNan.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":"2025-04-06T01:17:16.000Z","updated_at":"2025-04-06T13:49:51.000Z","dependencies_parsed_at":"2025-04-06T14:26:46.799Z","dependency_job_id":"5a7dc9b3-7aa1-4fc2-9dec-a6c719d09927","html_url":"https://github.com/AlmightyNan/gamma","commit_stats":null,"previous_names":["almightynan/gamma"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlmightyNan%2Fgamma","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlmightyNan%2Fgamma/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlmightyNan%2Fgamma/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlmightyNan%2Fgamma/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlmightyNan","download_url":"https://codeload.github.com/AlmightyNan/gamma/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248480340,"owners_count":21110935,"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":["beginner-friendly","mysql","sql-client","students","wampserver-alternative"],"created_at":"2025-04-11T20:46:11.045Z","updated_at":"2026-05-04T07:37:12.447Z","avatar_url":"https://github.com/AlmightyNan.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gamma\n\n**gamma** is a Python-based interface for working with MySQL — designed with students in mind. Think of it like a modern, no-nonsense alternative to WampServer, minus the bloat and compatibility nightmares.\n\n**Live Website**: [gamma.almightynan.cc](https://gamma.almightynan.cc)\n\n\n## What is gamma?\n\ngamma offers a lightweight interface to:\n\n- Connect to MySQL databases\n- Run SQL commands via CLI\n- Visualize tables and schema\n- Use AI to generate SQL queries, tables, and more\n\nIt’s built to be simple, fast, and student-friendly — no more dealing with missing Visual C++ redistributables or cryptic WAMP issues on school PCs.\n\n\u003e This started as a quick tool for my classmates and myself when we kept running into issues with WAMP. Now it's open source.\n\n## Why Gamma?\n\n- ✅ Minimal setup\n- ✅ Built with Python (easy to extend)\n- ✅ AI-assisted features for learning and productivity (default username is `nan`; password is `0001`)\n- ✅ Compatible with Windows, Linux, and macOS\n- ✅ Developed by students, for students\n\n## Features\n\n- **Table visualization**  \n  Easily browse and inspect your database structure and contents.\n\n- **AI-powered tools**  \n  Generate SQL queries, table schemas, and more using AI prompts.\n\n- **Error-resistant design**  \n  No more “missing DLL” issues — Gamma avoids common setup failures by not relying on bloated dependencies.\n\n## Who’s it for?\n\n- Students\n- Beginners working with MySQL\n\n## Installation\n\n1. ```git clone https://github.com/almightynan/gamma```\n2. ```cd gamma```\n3. Download MySQL binaries from releases folder ([`releases \u003e mysql5.7.40.zip`](https://github.com/AlmightyNan/gamma/releases/tag/production))\n4. Extract the downloaded `.zip` file, copy the folder and paste it within `gamma` directory.\n5. ```pip install -r requirements.txt```\n6. ```python main.py```\n   \n## Project Structure\n\n```\ngamma/\n├── assets/              # App resources (UI, configs, etc.)\n├── classes/             # Core classes (AI features, MySQL handlers, etc.)\n├── mysql5.7.40/         # Bundled MySQL binary (portable)\n├── debug.log            # Logs for debugging\n├── main.py              # Main entry point\n├── requirements.txt     # Python dependencies\n└── README.md            # You’re looking at it\n```\n\n## Contributing\n\nPull requests welcome. If you’re someone who found WAMP annoying too — help make Gamma better.\n\n## License\n\n```\nMIT License\n\nCopyright (c) 2025 AlmightyNan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falmightynan%2Fgamma","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falmightynan%2Fgamma","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falmightynan%2Fgamma/lists"}