Update app.py
Browse files
app.py
CHANGED
|
@@ -9,15 +9,15 @@ survey_path = 'Copy of AGT.MHVL.0A.202505.0001 4.xlsx'
|
|
| 9 |
indicator_path = 'Indicators_indicators_Default view 18.xlsx'
|
| 10 |
questions_path = 'Indicators_questions_Default View 18.xlsx'
|
| 11 |
choice_path = 'Indicators_choices_Default View 17.xlsx'
|
| 12 |
-
parameters_path = 'Indicators_surveys_Survey validation.xlsx'
|
| 13 |
uuid = 'AGT.MHVL.0A.202505.0001'
|
| 14 |
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
-
|
| 18 |
-
choices_df = pd.read_excel(CHOICES_PATH)
|
| 19 |
-
questions_df = pd.read_excel(QUESTIONS_PATH)
|
| 20 |
-
indicators_df = pd.read_excel(INDICATORS_PATH)
|
| 21 |
|
| 22 |
# Pass all inputs to your function (update name/args as needed)
|
| 23 |
# parameters file
|
|
|
|
| 9 |
indicator_path = 'Indicators_indicators_Default view 18.xlsx'
|
| 10 |
questions_path = 'Indicators_questions_Default View 18.xlsx'
|
| 11 |
choice_path = 'Indicators_choices_Default View 17.xlsx'
|
| 12 |
+
parameters_path = 'Indicators_surveys_Survey validation 1.xlsx'
|
| 13 |
uuid = 'AGT.MHVL.0A.202505.0001'
|
| 14 |
|
| 15 |
+
survey = pd.read_excel(survey_path)
|
| 16 |
+
indicators = pd.read_excel(indicator_path)
|
| 17 |
+
choices = pd.read_excel(choice_path)
|
| 18 |
+
questions = pd.read_excel(questions_path)
|
| 19 |
|
| 20 |
+
def run_validation():
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
# Pass all inputs to your function (update name/args as needed)
|
| 23 |
# parameters file
|