Skip to content

Commit

Permalink
Classification of information of ALL - Additional files
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehranalam committed Jan 18, 2024
1 parent ef6e19f commit 0e47b43
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions app/result.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
'''
This file calls the data generated and classified by main.py and
then produces and interprets the final blood tests.
The data generated by main.py is crucial in the production of accurate and reliable blood test results.
This file acts as a bridge between the data classification process and the final interpretation of the blood tests.
It helps to ensure that the results are based on a solid foundation of data analysis and that any anomalies or errors are identified and
corrected before the tests are interpreted. By utilizing this file, medical professionals can
have greater confidence in the accuracy of their blood test results, which can ultimately lead to better patient outcomes.
'''

import sqlite3

conn = sqlite3.connect('database.db')
cursor = conn.execute("SELECT * FROM BLOOD_INFORMATION")
rows = cursor.fetchall()

def READ_DATA(data):

counter = 1
for PARAMETER in data:
print(f"{counter} - {PARAMETER}")
counter += 1



READ_DATA(rows)

0 comments on commit 0e47b43

Please sign in to comment.