HealthCare-Management-System

所属分类:数据库系统
开发工具:Python
文件大小:46KB
下载次数:0
上传日期:2021-02-14 06:14:58
上 传 者sh-1993
说明:  一个DBMS应用程序,可由医院、诊所和医疗保健中心使用,以管理患者、医生...
(A DBMS application which can be used by hospitals, clinics and healthcare centres to manage records for patients, doctors, prescriptions, medical tests and various departments.)

文件列表:
__pycache__ (0, 2021-02-14)
__pycache__\config.cpython-38.pyc (287, 2021-02-14)
__pycache__\database.cpython-38.pyc (5047, 2021-02-14)
__pycache__\department.cpython-38.pyc (8088, 2021-02-14)
__pycache__\doctor.cpython-38.pyc (9825, 2021-02-14)
__pycache__\medical_test.cpython-38.pyc (9155, 2021-02-14)
__pycache__\patient.cpython-38.pyc (10056, 2021-02-14)
__pycache__\prescription.cpython-38.pyc (9670, 2021-02-14)
config.py (758, 2021-02-14)
database.py (5052, 2021-02-14)
database_1A.db (73728, 2021-02-14)
database_v2_2.db (73728, 2021-02-14)
department.py (10593, 2021-02-14)
doctor.py (13985, 2021-02-14)
hims_app.py (7979, 2021-02-14)
medical_test.py (12205, 2021-02-14)
patient.py (14214, 2021-02-14)
prescription.py (13178, 2021-02-14)

# Healthcare-Information-Management-System __Healthcare Information Management System (HIMS)__ is an application created as a DBMS project for one of our institute's courses on database management systems. The __HIMS__ application can be used by hospitals, clinics and healthcare centres to manage data/records for patients, doctors, prescriptions, medical tests and various departments within the healthcare facility. Besides the basic DBMS functionalities such as addition, deletion, update and search, other useful features are also present in this application. The application uses [__sqlite3__] module for database management purposes, [__streamlit__] to create the user interface and make the application work, and [__pandas__] to facilitate working with the data. ### Requirements * __Python 3.7.4__ or any higher version * __pandas__ and __streamlit__ * To install the packages mentioned above, go to command prompt/terminal and execute the following commands: ```cmd > pip install pandas > pip install streamlit ``` ## Instructions to run the application 1. Clone this repository to your local system. 2. After cloning this repository to your local system, create a __config.py__ file in the same repository. 3. Add the following Python statements to __config.py__ : ```python # configuration file containing confidential credentials # user authentication password is used to login to the application # edit mode password is required to add, delete or update any patient, doctor or department record # doctor/medical lab scientist (MLS) access code is given only to the doctors and MLSs, using which they can add, delete or update any prescription and/or medical test record password = '' # e.g. password = '1234' database_name = '' # e.g. database_name = 'database_1A' edit_mode_password = '' # e.g. edit_mode_password = 'allow_edit' dr_mls_access_code = '' # e.g. dr_mls_access_code = 'access_auth' ``` 4. Move to the same directory in command prompt/terminal and execute the following command (running this command will open the application in a new tab in your default browser automatically; you don't need internet connection to work with this application): ```cmd > streamlit run hims_app.py ```

近期下载者

相关文件


收藏者