The document describes a clinic data management system that allows doctors, patients, and receptionists to have customized login accounts. Doctors can perform CRUD functions on patient and appointment data while maintaining data privacy. The system was created using Python, Django, MySQL, and OOPs concepts like encapsulation and hierarchy.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
8 views6 pages
Clinic Data Management System
The document describes a clinic data management system that allows doctors, patients, and receptionists to have customized login accounts. Doctors can perform CRUD functions on patient and appointment data while maintaining data privacy. The system was created using Python, Django, MySQL, and OOPs concepts like encapsulation and hierarchy.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 6
Clinic Data management system
1. Motive
● To perform CRUD functions from the doctors login.
● To create special login for patient and receptionist. ● To help lessen the management load on doctor operating their own clinics. 2. Process
We created 3 models in this system : Doctor, Patient, Receptionist.
Doctor can perform CRUD functions such as,
● creating account for receptionist, creating new entry in patient’s treatment
table. ● Reading all patients list and appointment list. ● Updating patients treatment section and receptionist account. ● Deleting a patient from list or deleting appointments. 3. Technology used
● Python language and libraries
● Visual code studio ● Python Django framework - MVT ● MySQL for data management ● MySQL workbench ● Frontend - html, css, json - template ● Jinja templating in django ● Github 4. Oops concepts used
● Encapsulation - data hiding (receptionist cant see patients personal info)
● Exception handling ● Hierarchy relationship between doctor and receptionist. Thankyou!