{"id":28330705,"url":"https://github.com/k0msenapati/tuitiondb","last_synced_at":"2026-04-21T10:05:29.659Z","repository":{"id":171683885,"uuid":"648261501","full_name":"k0msenapati/TuitionDB","owner":"k0msenapati","description":"TuitionDB is a simple SQLite-based database management system for a tuition center. It allows you to manage courses, subjects, students, and teachers.","archived":false,"fork":false,"pushed_at":"2024-03-23T07:08:24.000Z","size":9,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-13T12:15:57.141Z","etag":null,"topics":["python","sqlite"],"latest_commit_sha":null,"homepage":"","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/k0msenapati.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}},"created_at":"2023-06-01T15:02:51.000Z","updated_at":"2025-07-07T19:07:29.000Z","dependencies_parsed_at":"2024-03-23T08:36:10.203Z","dependency_job_id":null,"html_url":"https://github.com/k0msenapati/TuitionDB","commit_stats":null,"previous_names":["komnoob/tution_db","kom-senapati/tution_db","kom-senapati/tuitiondb","k0msenapati/tuitiondb"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/k0msenapati/TuitionDB","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k0msenapati%2FTuitionDB","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k0msenapati%2FTuitionDB/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k0msenapati%2FTuitionDB/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k0msenapati%2FTuitionDB/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/k0msenapati","download_url":"https://codeload.github.com/k0msenapati/TuitionDB/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k0msenapati%2FTuitionDB/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31943163,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["python","sqlite"],"created_at":"2025-05-26T17:16:52.776Z","updated_at":"2026-04-21T10:05:29.642Z","avatar_url":"https://github.com/k0msenapati.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TuitionDB\r\n\r\nTuitionDB is a simple SQLite-based database management system for a tuition center. It allows you to manage courses, subjects, students, and teachers.\r\n\r\n## Features\r\n\r\n- Course Management: Add and view courses offered by the tuition center.\r\n- Subject Management: Add and view subjects available for each course.\r\n- Student Management: Add and view student details, including name, age, address, phone number, and enrolled course.\r\n- Teacher Management: Add and view teacher details, including name, age, phone number, and assigned subject.\r\n\r\n## Getting Started\r\n\r\nTo get started with the TUTION_DB project, follow these steps:\r\n\r\n1. Clone the repository: `git clone https://github.com/KOMNOOB/TuitionDB.git`\r\n2. Install the required dependencies: `pip install rich faker tabulate`\r\n3. Run the application: `python main.py`\r\n\r\n## Usage\r\n\r\nOnce the application is running, you can use the following commands to interact with the database:\r\n\r\n- `add_course`: Add a new course to the database.\r\n- `add_subject`: Add a new subject to the database.\r\n- `add_student`: Add a new student to the database.\r\n- `add_teacher`: Add a new teacher to the database.\r\n- `view_courses`: View all the courses in the database.\r\n- `view_subjects`: View all the subjects in the database.\r\n- `view_students`: View all the students in the database.\r\n- `view_teachers`: View all the teachers in the database.\r\n\r\n## Database Schema\r\n\r\nThe database schema for the TUTION_DB project is as follows:\r\n\r\n- COURSE: Holds information about the courses offered by the tuition center.\r\n  - ID: Unique identifier for the course.\r\n  - NAME: Name of the course.\r\n  - SUBJECTS: Comma-separated list of subject names for the course.\r\n\r\n- SUBJECT: Holds information about the subjects available for each course.\r\n  - ID: Unique identifier for the subject.\r\n  - NAME: Name of the subject.\r\n  - MANDATORY: Indicates whether the subject is mandatory or not (1 for mandatory, 0 for non-mandatory).\r\n\r\n- STUDENT: Holds information about the students enrolled in the tuition center.\r\n  - ID: Unique identifier for the student.\r\n  - NAME: Name of the student.\r\n  - AGE: Age of the student.\r\n  - ADDRESS: Address of the student.\r\n  - PHONE: Phone number of the student.\r\n  - COURSE_ID: Foreign key referencing the ID of the course the student is enrolled in.\r\n\r\n- TEACHER: Holds information about the teachers in the tuition center.\r\n  - ID: Unique identifier for the teacher.\r\n  - NAME: Name of the teacher.\r\n  - AGE: Age of the teacher.\r\n  - PHONE: Phone number of the teacher.\r\n  - SUBJECT_ID: Foreign key referencing the ID of the subject the teacher is assigned to.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk0msenapati%2Ftuitiondb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fk0msenapati%2Ftuitiondb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk0msenapati%2Ftuitiondb/lists"}