pyegeria 1.5.1.1.44__py3-none-any.whl → 1.5.1.1.46__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1581,10 +1581,20 @@ class GlossaryManager(GlossaryBrowser):
1581
1581
  raise InvalidParameterException("Invalid headers in CSV File")
1582
1582
  sys.exit(1)
1583
1583
 
1584
- # process each row
1584
+ # process each row and validate values
1585
1585
  for row in csv_reader:
1586
1586
  # Parse the file. When the value '---' is encountered, make the value None.git+https:
1587
- term_name = row.get("Term Name", None)
1587
+ term_name = row.get("Term Name", " ")
1588
+ if len(term_name) < 2:
1589
+ term_info.append(
1590
+ {
1591
+ "term_name": "---",
1592
+ "qualified_name": "---",
1593
+ "term_guid": "---",
1594
+ "error": "missing or invalid term names - skipping",
1595
+ }
1596
+ )
1597
+ continue
1588
1598
  qualified_name = row.get("Qualified Name", None)
1589
1599
  abbrev_in = row.get("Abbreviation", None)
1590
1600
  abbrev = None if abbrev_in == "---" else abbrev_in
@@ -1603,20 +1613,6 @@ class GlossaryManager(GlossaryBrowser):
1603
1613
 
1604
1614
  version = row.get("Version Identifier", "1.0")
1605
1615
  status = row.get("Status", "DRAFT")
1606
- print(row)
1607
- status = status.upper()
1608
-
1609
- # quality check the row
1610
- if len(term_name) < 2:
1611
- term_info.append(
1612
- {
1613
- "term_name": "---",
1614
- "qualified_name": "---",
1615
- "term_guid": "---",
1616
- "error": "missing or invalid term names - skipping",
1617
- }
1618
- )
1619
- continue
1620
1616
  if self.__validate_term_status__(status) is False:
1621
1617
  term_info.append(
1622
1618
  {
@@ -1627,6 +1623,9 @@ class GlossaryManager(GlossaryBrowser):
1627
1623
  }
1628
1624
  )
1629
1625
  continue
1626
+
1627
+ status = status.upper()
1628
+
1630
1629
  if upsert:
1631
1630
  # If upsert is set we need to see if it can be done (there must be a valid qualified name) and then
1632
1631
  # do the update for the row - if there is no qualified name we will treat the row as an insert.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 1.5.1.1.44
3
+ Version: 1.5.1.1.46
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
@@ -107,7 +107,7 @@ pyegeria/egeria_tech_client.py,sha256=7NfqpJFft5GR4NPRDVDw22L9caHbXB8fhx0TAf6qEo
107
107
  pyegeria/feedback_manager_omvs.py,sha256=B66e3ZCaC_dirb0mcb2Nz3PYh2ZKsoMAYNOb3euNiro,152931
108
108
  pyegeria/full_omag_server_config.py,sha256=LBnqUiz1ofBdlKBzECFs_pQbdJwcWigAukWHGJRR2nU,47340
109
109
  pyegeria/glossary_browser_omvs.py,sha256=NcitYaZJqwVODBO5zBtWpXPNUJJ3DKzEbRaOFSAyUlg,93554
110
- pyegeria/glossary_manager_omvs.py,sha256=d698MQEsl44E9MTlEocURg3pcfH8gQbXOVaTpmp8DRQ,129695
110
+ pyegeria/glossary_manager_omvs.py,sha256=kvh2xVbBTc3Rgl-SQeHQxARbKFZMBBsTc_leC2IAE4I,129648
111
111
  pyegeria/mermaid_utilities.py,sha256=GXiS-subb5nJcDqlThZWX2T8WspU1neFfhf4TxRoMh4,8344
112
112
  pyegeria/my_profile_omvs.py,sha256=DyECbUFEcgokrIbzdMMNljC3bqfqKGXAF2wZEpzvRYs,34666
113
113
  pyegeria/platform_services.py,sha256=CJIOYIFEbcIGwdWlApAQcXxZTsdrhFtpJcm4O3p7dG0,41646
@@ -119,8 +119,8 @@ pyegeria/template_manager_omvs.py,sha256=heqbKeum5hPCHap4r1RUZU8YB3QaQlxVNbq4GZi
119
119
  pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
120
120
  pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
121
121
  pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
122
- pyegeria-1.5.1.1.44.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
123
- pyegeria-1.5.1.1.44.dist-info/METADATA,sha256=I-jXz_Fy84v6OVpTw8cmV1Ogtr4I_JX6moYWgUVKRpU,2998
124
- pyegeria-1.5.1.1.44.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
125
- pyegeria-1.5.1.1.44.dist-info/entry_points.txt,sha256=GDsJt24awMzNAbVAWdMoeZTQb5oMcMCqjvIAemqOwVQ,5105
126
- pyegeria-1.5.1.1.44.dist-info/RECORD,,
122
+ pyegeria-1.5.1.1.46.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
123
+ pyegeria-1.5.1.1.46.dist-info/METADATA,sha256=b9JE_CTS6RM81iw8AVOHYWtKAMw0QTn6fdEdSK9tfYw,2998
124
+ pyegeria-1.5.1.1.46.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
125
+ pyegeria-1.5.1.1.46.dist-info/entry_points.txt,sha256=GDsJt24awMzNAbVAWdMoeZTQb5oMcMCqjvIAemqOwVQ,5105
126
+ pyegeria-1.5.1.1.46.dist-info/RECORD,,