https://github.com/almightynan/gamma
Minimal, Python-based interface for MySQL β built as a lightweight alternative to WampServer.
https://github.com/almightynan/gamma
beginner-friendly mysql sql-client students wampserver-alternative
Last synced: 10 months ago
JSON representation
Minimal, Python-based interface for MySQL β built as a lightweight alternative to WampServer.
- Host: GitHub
- URL: https://github.com/almightynan/gamma
- Owner: AlmightyNan
- License: mit
- Created: 2025-04-06T01:17:16.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-04-06T13:36:00.000Z (10 months ago)
- Last Synced: 2025-04-06T14:26:38.479Z (10 months ago)
- Topics: beginner-friendly, mysql, sql-client, students, wampserver-alternative
- Language: Python
- Homepage: https://gamma.almightynan.cc
- Size: 7.22 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gamma
**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.
**Live Website**: [gamma.almightynan.cc](https://gamma.almightynan.cc)
## π What is gamma?
gamma offers a lightweight interface to:
- Connect to MySQL databases
- Run SQL commands via CLI
- Visualize tables and schema
- Use AI to generate SQL queries, tables, and more
Itβs built to be simple, fast, and student-friendly β no more dealing with missing Visual C++ redistributables or cryptic WAMP issues on school PCs.
> This started as a quick tool for my classmates and myself when we kept running into issues with WAMP. Now it's open source.
## π― Why Gamma?
- β
Minimal setup
- β
Built with Python (easy to extend)
- β
AI-assisted features for learning and productivity (default username is `nan`; password is `0001`)
- β
Compatible with Windows, Linux, and macOS
- β
Developed by students, for students
## π Features
- **CLI-based SQL interaction**
Run MySQL queries directly from the appβs built-in terminal.
- **Table visualization**
Easily browse and inspect your database structure and contents.
- **AI-powered tools**
Generate SQL queries, table schemas, and more using AI prompts.
- **Error-resistant design**
No more βmissing DLLβ issues β Gamma avoids common setup failures by not relying on bloated dependencies.
## π οΈ Future Plans?
- Maybe adding **PHP** and **Apache** support β think WampServer, but actually good.
- Expanding the AI capabilities (explain queries, optimize performance, etc.)
- More GUI improvements and export/import features.
## π₯ Whoβs it for?
- Students
- Beginners working with MySQL
## π¦ Installation
1. ```git clone https://github.com/yourusername/gamma```
2. ```cd gamma```
3. Download MySQL binaries from releases folder ([`releases > mysql5.7.40.zip`](https://github.com/AlmightyNan/gamma/releases/tag/production))
4. Extract the downloaded `.zip` file, copy the folder and paste it within `gamma` directory.
5. ```pip install -r requirements.txt```
6. ```python main.py```
## π Project Structure
```
gamma/
βββ assets/ # App resources (UI, configs, etc.)
βββ classes/ # Core classes (AI features, MySQL handlers, etc.)
βββ mysql5.7.40/ # Bundled MySQL binary (portable)
βββ debug.log # Logs for debugging
βββ main.py # Main entry point
βββ requirements.txt # Python dependencies
βββ README.md # Youβre looking at it
```
## π€ Contributing
Pull requests welcome. If youβre someone who found WAMP annoying too β help make Gamma better.
## πͺͺ License
```
MIT License
Copyright (c) 2025 AlmightyNan
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```