University database management system with Python and SQLite - Homework solution
A complete university database management system built with Python and SQLite, implementing homework assignments for database operations.
This project demonstrates:
- Database creation and table structure (Homework 1)
- SQL SELECT queries implementation (Homework 2)
- Data manipulation with INSERT, UPDATE operations
- Python integration with SQLite
- Python 3.x
- SQLite3
- SQL queries
The database includes the following tables:
group- Student groupsstudent- Student informationlecturer- Lecturer informationsubject- Course subjectsschedule- Subject-lecturer relationships
- Clone the repository
git clone https://github.com/YOUR_USERNAME/python-sqlite-university.git cd python-sqlite-university
- Run the main script
python python_solution.py