Skip to content

Commit 7976421

Browse files
authored
Add files via upload
1 parent 593a75c commit 7976421

4 files changed

Lines changed: 68 additions & 1 deletion

File tree

β€Ž.gitignoreβ€Ž

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
__pycache__/
2+
*.pyc
3+
*.pyo
4+
*.pyd
5+
.env
6+
*.db
7+
*.sqlite3
8+
.DS_Store

β€ŽLICENSEβ€Ž

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
MIT License
2+
3+
Copyright (c) 2025 HJK
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the β€œSoftware”), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
THE SOFTWARE IS PROVIDED β€œAS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
SOFTWARE.

β€ŽREADME.mdβ€Ž

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
1-
# Vsql
1+
# πŸ’» VSQL AI v4.0 Pro (VisualSQL AI)
2+
3+
**VSQL** is an all-in-one **AI-powered SQL + NoSQL GUI software** that supports data import, database browsing, visualization, machine learning, anomaly detection, and more β€” all from a single Python file.
4+
5+
## πŸš€ Features
6+
7+
- βœ… Connect to SQLite/NoSQL Databases
8+
- 🧠 Train AI models (Random Forest, Neural Networks, Clustering)
9+
- πŸ“Š Visualize data with Matplotlib and Seaborn
10+
- 🧼 Clean and prepare data interactively
11+
- πŸ’‘ Feature Importance, Query Studio, Visual SQL Editor
12+
- 🌐 Offline-first design with modern UI (`customtkinter`)
13+
- πŸ”’ Future support for MTE encryption & blockchain sync
14+
15+
## πŸ“¦ Requirements
16+
17+
Install required libraries with:
18+
19+
```bash
20+
pip install -r requirements.txt
21+
```
22+
23+
## πŸ› οΈ Usage
24+
25+
```bash
26+
python vsql.py
27+
```
28+
29+
## πŸ“„ License
30+
31+
This project is licensed under the [MIT License](LICENSE).
32+
33+
---
34+
35+
Made with ❀️ by HJK Maker.

β€Žrequirements.txtβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
customtkinter
2+
pandas
3+
matplotlib
4+
scikit-learn
5+
seaborn
6+
tensorflow
7+
torch

0 commit comments

Comments
Β (0)