|
a |
|
b/README.md |
|
|
1 |
# Medical Textual Data Analysis |
|
|
2 |
|
|
|
3 |
The project extracts important information from the medical data and covers visualizations of the data with respect to different parameters. |
|
|
4 |
|
|
|
5 |
## Team Members |
|
|
6 |
|
|
|
7 |
The following is the list of our team members, all of us belonging to Computer Engineering (4th year). |
|
|
8 |
|
|
|
9 |
- [Shrawak Bhattarai (11)](https://github.com/Shrawak) |
|
|
10 |
- [Ramraj Chimouriya (14)](https://github.com/RamrajCh) |
|
|
11 |
- [Deependra Kumar Gupta (18)](https://github.com/Deependra12) |
|
|
12 |
- [Shreyam Pokharel (40)](https://github.com/pshreyam) |
|
|
13 |
|
|
|
14 |
## Get Started |
|
|
15 |
|
|
|
16 |
The project uses python3. Any version of python3 above python3.6 should be compatible. Python3 can be downloaded from [https://www.python.org/downloads/](https://www.python.org/downloads/). |
|
|
17 |
|
|
|
18 |
### Install Dependencies |
|
|
19 |
|
|
|
20 |
Extract the zip file and locate `requirements.txt` file in the folder. |
|
|
21 |
|
|
|
22 |
Run the following command in order to install the dependencies: |
|
|
23 |
|
|
|
24 |
```bash |
|
|
25 |
pip install -r requirements.txt |
|
|
26 |
``` |
|
|
27 |
|
|
|
28 |
### Setup Database |
|
|
29 |
|
|
|
30 |
Before proceeding forward, MongoDB database access credentials has to be put in .env file as specified in .env-sample file. You can just rename .env-sample to .env and update the information. |
|
|
31 |
|
|
|
32 |
### Run the app |
|
|
33 |
|
|
|
34 |
After the dependencies are installed in the system and MongoDB database is set up, run `app.py` script as: |
|
|
35 |
|
|
|
36 |
```bash |
|
|
37 |
python app.py |
|
|
38 |
``` |
|
|
39 |
|
|
|
40 |
After successfully running the script, goto `http://127.0.0.1:8050` in your browser to access medical data visualization. |