the_one_that_does_it.py 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # %%
  2. import csv
  3. import json
  4. import openpyxl as op
  5. import re
  6. # BASIC CONFIGURATION
  7. DATA_FOLDER = './data/'
  8. OUTPUT_FOLDER = './output/'
  9. ONTO_FILENAME = 'manoscritti_dariah' # No extension!
  10. ent_filename = ONTO_FILENAME + '_entities.csv'
  11. rel_filename = ONTO_FILENAME + '_relations.csv'
  12. # PART I: parse xlsx to (multiple) csv
  13. # Excel configuration
  14. XLSX_FILENAME = 'Struttura_NEW.xlsx'
  15. ENTITIES_SHEETNAME = 'Entità'
  16. RELATIONS_SHEETNAME = 'Relazioni'
  17. # %%
  18. # Import the defining xlsx through openpyxl
  19. input_data = op.load_workbook(DATA_FOLDER + XLSX_FILENAME)
  20. # Read relevant sheets
  21. entities_sheet = input_data[ENTITIES_SHEETNAME]
  22. relations_sheet = input_data[RELATIONS_SHEETNAME]
  23. # Parse sheet data into a dict (assuming the xlsx has headers)
  24. entities_keys = [cell for cell in next(entities_sheet.values) if cell]
  25. raw_entities = [{key: row[ind] for ind, key in enumerate(entities_keys)} for row in entities_sheet.values][1:]
  26. #
  27. relations_keys = [cell for cell in next(relations_sheet.values) if cell]
  28. raw_relations = [{key: row[ind] for ind, key in enumerate(relations_keys)} for row in relations_sheet.values][1:]
  29. # %%
  30. # NOTE:
  31. # a. Non ci sono, al momento, _constraints_ di unicità per le relazioni che siano imposti tramite il "foglio master".
  32. # b. Non ci sono neanche constraint di esistenza, TRANNE l'id univoca, intesa NON come quella del sistema ma quella della comunità di riferimento, e tipica del settore di dominio considerato; nel caso specifico, la SEGNATURA.
  33. # c. Per identificare le informazioni 'atomiche' non si usa un campo dedicato, ma una logica. AL MOMENTO la logica è che si considera atomica una entità che non è mai 'prima' in una relazione. L'ORDINE DELLE RELAZIONI E' IMPORTANTE a differenza di quanto assumevo inizialmente. 'Atomiche' è probabilmente un _misnomer_, dato che può trattarsi di informazioni composite, come ad esempio una data. Si tratta più precisamente (forse) di ATTRIBUTI, nel senso di informazioni "figlie" che hanno significato solo in associazione all'Entità _parent_ -- proprio come nel caso delle date.
  34. # d. Si effettua un controllo di unicità sulle entità, basato sul nome normalizzato (parole trattate con: sostituzione del _whitespace_ contiguo con spazio singolo ' ', title() e strip()). Nessuna entità può avere nome vuoto. Eventuali nomi duplicati vengono segnalati per un controllo manuale.
  35. # e. Si effettua un controllo di unicità sulle relazioni, che riguarda tutta la terna SOGGETTO-RELAZIONE-OGGETTO (normalizzata in modo simile ai nomi di entità, ma nella RELAZIONE gli spazi sono underscores e si usa lower() invece che title()). Nessuno dei membri della terna può essere vuoto; il nome della relazione inversa invece è opzionale e non viene controllato.
  36. # f. Si effettuano controlli di consistenza sulle relazioni:
  37. # .f1. Nessuna relazione con entità non definite come SOGGETTO.
  38. # .f2. Warning sulle entità "orfane", ovvero non presenti in alcuna relazione.
  39. # g. Una relazione può avere un OGGETTO non definito nel foglio Entità. E' sottointeso, in questi casi, che si tratta di un'informazione 'atomica' / un attributo.
  40. #
  41. # TODO: completare secondo le specifiche sopra -> Fatto al 90%
  42. # TODO: effettuare il merge con i "miei" CSV, che hanno informazioni in più! --> Fatto, solo da riverificare
  43. # TODO: ottimizzare un po' la scrittura del codice -> Non prioritario
  44. # Process entities:
  45. # 1. Filter out unnamed entities, normalize entity names, collect aliases, discover duplicates
  46. clean_entities = {}
  47. for ent in raw_entities:
  48. entity_names = ent['Concetto']
  49. if not isinstance(entity_names, str):
  50. continue
  51. aliases = [re.sub(r'\s+', ' ', al.strip().title()) for al in entity_names.split('\n') if al.strip()]
  52. if not aliases:
  53. continue
  54. entity_name = aliases[0]
  55. entity_same_as = aliases[1:]
  56. if clean_entities.get(entity_name):
  57. # DUPLICATE!
  58. clean_entities[entity_name].append({'Alias': aliases, 'Raw': ent})
  59. else:
  60. clean_entities[entity_name] = [{'Alias': aliases, 'Raw': ent}]
  61. all_entities = clean_entities.keys()
  62. duplicated_entities = [ent_name for ent_name, ent_val in clean_entities.items() if len(ent_val)>1]
  63. # %%
  64. # Process relations:
  65. # 1. Filter ill-formed relations and normalize entity names
  66. clean_relations = []
  67. for rel in raw_relations:
  68. subj = rel['Soggetto']
  69. obj = rel['Oggetto']
  70. if not isinstance(subj, str) or not isinstance(obj, str):
  71. continue
  72. subj = re.sub(r'\s+', ' ', subj.strip().title())
  73. obj = re.sub(r'\s+', ' ', obj.strip().title())
  74. if subj==obj:
  75. continue
  76. rel_name = rel['Relazione']
  77. if isinstance(rel_name, str):
  78. rel_name = re.sub(r'\s+', '_', rel_name.strip().lower()).replace('__', '_')
  79. clean_rel = {'Soggetto': subj, 'Relazione': rel_name, 'Oggetto': obj}
  80. clean_relations.append(clean_rel)
  81. all_rels = set((rel['Soggetto'], rel['Relazione'], rel['Oggetto']) for rel in clean_relations)
  82. all_subjects = set(rel['Soggetto'] for rel in clean_relations)
  83. all_cited_entities = set(sum([[rel['Soggetto'], rel['Oggetto']] for rel in clean_relations], []))
  84. undefined_entities = all_cited_entities - all_entities
  85. unused_entities = all_entities - all_cited_entities
  86. atomic_entities = all_cited_entities - all_subjects
  87. problematic_entities = undefined_entities - atomic_entities
  88. # %%
  89. ####
  90. # MANUS ONLINE (MOL) API: https://api.iccu.sbn.it/devportal/apis
  91. ####
  92. # %%
  93. for ent in sorted(list(problematic_entities)):
  94. print(ent)
  95. # %%
  96. for ent in sorted(list(atomic_entities)):
  97. print(ent)
  98. # %%
  99. for ent in sorted(list(unused_entities)):
  100. print(ent)
  101. # %%
  102. for ent in sorted(list(undefined_entities)):
  103. print(ent)
  104. # %%