-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProject Roadmap
35 lines (33 loc) · 2.28 KB
/
Project Roadmap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Sprint 1:
[Done] create ReadMe file (Macy)
[Done] create Project Roadmap file and assign tasks to all (Macy)
[Done] find related repository and evaluate it (All of us)
[Done] test medicine-test and mypillhelper repositories and get them running, reporting on any issues and documenting how
to make them work (Macy and Kate)
Sprint 2:
[Done] create/edit code to inputting patient information and prescription information (Kiera)
[DONE] completed 6 committ codes(kiera) input info.py
[Done] create/edit code for QR Code based on input info (Macy)
[Done] create/edit code for creating notification (Kate)
[DONE] create/edit code for connecting to EHR system (Michaelia)
[DONE] completed 6 committ codes(Michaelia) server24.py
Sprint 3:
[Done] create singular ppt slide (Kiera)
[DONE] add slide to Github repository (Michaelia)
Create one PowerPoint slide introducing
your project and upload it. If you have more than one teammate, each needs to
turn-in a copy in D2L to ensure everyone has a copy and gets credit. The slide
needs to be attractive and informative. Be sure to include this information:
List your project team members.
Show the title of your project.
Show a tag line that introduces the main concept of what it does/will do.
Show 1-2 screenshots or pictures demonstrating the idea or parts (optional) Each
person must upload a PPT slide in D2L. Each team must ensure there is a copy in
their Github repository so that future coders can quickly grasp the idea
evaluating seed code:
possible changes:
File Path Handling:The file path 'Pillbox_production.csv' is hardcoded, which could lead to errors if the file is not in the working directory.
CSV Reading and Line Counting:The line_count variable is used to differentiate between the header row and data rows, which is a good approach. However, you can use next(csv_reader) instead to skip the header row without needing line_count.
String Capitalization:Using upper() and capitalize() inconsistently may produce undesired effects in fields like shape and score.
Unused Code and Comments:There are unused comments (like # '/home/vagrant/src/hb_pillproject/pill_testing_book.csv') that clutter the code.
Repeated print Statements:print statements are used for debugging. If this script runs in production, these statements should be removed or replaced with proper logging.