Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ src_dir: ''
# The defaults below show what is used when this is omitted.
inputs:
- class: InputSdmxMl_UnitedNationsApi
reference_area: 404
reference_area: 800
dimension_query:
REPORTING_TYPE: N
# - class: InputCsvData
Expand Down
12 changes: 12 additions & 0 deletions scripts/check_data.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
from sdg.open_sdg import open_sdg_check
# from sdg.inputs import InputSdmxMl_UnitedNationsApi as uapi

import tkinter as tk
from tkinter import messagebox

root = tk.Tk()
root.withdraw() # Hide the main Tkinter window

messagebox.showinfo("Info", "This is a popup message!")

# uapi_object = uapi(reference_area='800')
# qur = uapi_object.get_api_query()
# print(f"QUERYYYYYYYYYY: {qur}")
# Validate the indicators.
validation_successful = open_sdg_check(config='config_data.yml')

Expand Down
Loading