included ai prompt text

This commit is contained in:
2026-02-05 11:01:13 +03:00
parent c8773de6ec
commit bf043896fc
5 changed files with 127 additions and 69 deletions

17
ai_prompt.txt Normal file
View File

@@ -0,0 +1,17 @@
## **Quick Version (If you just want the code):**
```text
Build a Python system that:
1. Analyzes CSV files in `sample_data/` folder
2. Creates SQLite database (`school_schedule.db`)
3. Migrates CSV data to SQLite with cleaning
4. Provides query application for school scheduling
Key queries needed:
- Find student location by time
- Show student/teacher schedules
- Check room availability
- Detect schedule conflicts
Use: Python, sqlite3, pandas, DB Browser SQLite compatible.