<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Programmatically update metadata in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/programmatically-update-metadata/m-p/1497518#M84955</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm working in ArcGIS Pro 3.3.0.&lt;/P&gt;&lt;P&gt;I have a script that updates an SDE feature class and then I want to update the publication date in the metadata. This is not part of the common metadata properties so it's not directly accessible from a metadata object properties.&lt;/P&gt;&lt;P&gt;I'm using the&amp;nbsp;&lt;SPAN&gt;ISO19139 metadata standard.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My algorithm is:&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Create the metadata object.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Export the metadata to XML.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Modify the XML using ElementTree.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Save the modified XML.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Import the modified XML to the metadata object.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN&gt;My code is:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import xml.etree.ElementTree as ET
from arcpy import metadata as md
import datetime

item = r'D:\Projects\WCG General\Python 2 to 3\DOH_HealthFacilities.gdb\DOH_Facilities_AllHealthSites'
CurrentDate = datetime.datetime.now().strftime("%Y-%m-%d")

currentXMLPath = r'D:\Projects\WCG General\Python 2 to 3\temp.xml'
newXMLPath = r'D:\Projects\WCG General\Python 2 to 3\temp_updated.xml'

# get the item's metadata xml
item_md = md.Metadata(item)
metadata_xml_string = item_md.xml

# export item's metadata
item_md.exportMetadata(outputPath=currentXMLPath,
                metadata_export_option='ISO19139')

# create an ElementTree object and get its root
tree = ET.parse(currentXMLPath)
root = tree.getroot()

# check that the correct element exists
# root[10][0][0][0][2][0][1][0].text must be = 'publication'
# root[10][0][0][0][2][0][0][0] is the field that must be set

# set the value of the publication date to the current date
if root[10][0][0][0][2][0][1][0].text == 'publication':
    root[10][0][0][0][2][0][0][0].text = CurrentDate

# save the changes to the the new XML file
tree.write(newXMLPath)

# import the new XML to the metadata object
item_md.importMetadata(sourceUri=newXMLPath,
                       metadata_import_option='ISO19139')&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;Everything works fine until the last step, when I get an error&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Traceback&amp;nbsp;(most&amp;nbsp;recent&amp;nbsp;call&amp;nbsp;last):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;File&amp;nbsp;"D:\Projects\WCG&amp;nbsp;General\Python&amp;nbsp;2&amp;nbsp;to&amp;nbsp;3\read_metadata.py",&amp;nbsp;line&amp;nbsp;50,&amp;nbsp;in&amp;nbsp;&amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;item_md.importMetadata(sourceUri=newXMLPath,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;File&amp;nbsp;"C:\Program&amp;nbsp;Files\ArcGIS\Pro\Resources\ArcPy\arcpy\utils.py",&amp;nbsp;line&amp;nbsp;186,&amp;nbsp;in&amp;nbsp;fn_&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;fn(*args,&amp;nbsp;**kw)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;^^^^^^^^^^^^^^^&lt;BR /&gt;&amp;nbsp;&amp;nbsp;File&amp;nbsp;"C:\Program&amp;nbsp;Files\ArcGIS\Pro\Resources\ArcPy\arcpy\metadata.py",&amp;nbsp;line&amp;nbsp;126,&amp;nbsp;in&amp;nbsp;importMetadata&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;_convertArcObjectToPythonObject(arcgisscripting.metadata.Metadata.importMetadata(*_gp_fixargs((self,&amp;nbsp;sourceUri,&amp;nbsp;metadata_import_option,&amp;nbsp;customStylesheetPath),&amp;nbsp;True)))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;SystemError:&amp;nbsp;&amp;lt;built-in&amp;nbsp;method&amp;nbsp;importMetadata&amp;nbsp;of&amp;nbsp;MetadataObject&amp;nbsp;object&amp;nbsp;at&amp;nbsp;0x000001B4105315C0&amp;gt;&amp;nbsp;returned&amp;nbsp;a&amp;nbsp;result&amp;nbsp;with&amp;nbsp;an&amp;nbsp;exception&amp;nbsp;set&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Anybody have any ideas for a better way of doing this or fixing what's going wrong here?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hanlie&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 26 Jun 2024 10:33:32 GMT</pubDate>
    <dc:creator>HanliePetoors</dc:creator>
    <dc:date>2024-06-26T10:33:32Z</dc:date>
    <item>
      <title>Programmatically update metadata</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/programmatically-update-metadata/m-p/1497518#M84955</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm working in ArcGIS Pro 3.3.0.&lt;/P&gt;&lt;P&gt;I have a script that updates an SDE feature class and then I want to update the publication date in the metadata. This is not part of the common metadata properties so it's not directly accessible from a metadata object properties.&lt;/P&gt;&lt;P&gt;I'm using the&amp;nbsp;&lt;SPAN&gt;ISO19139 metadata standard.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My algorithm is:&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Create the metadata object.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Export the metadata to XML.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Modify the XML using ElementTree.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Save the modified XML.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Import the modified XML to the metadata object.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN&gt;My code is:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import xml.etree.ElementTree as ET
from arcpy import metadata as md
import datetime

item = r'D:\Projects\WCG General\Python 2 to 3\DOH_HealthFacilities.gdb\DOH_Facilities_AllHealthSites'
CurrentDate = datetime.datetime.now().strftime("%Y-%m-%d")

currentXMLPath = r'D:\Projects\WCG General\Python 2 to 3\temp.xml'
newXMLPath = r'D:\Projects\WCG General\Python 2 to 3\temp_updated.xml'

# get the item's metadata xml
item_md = md.Metadata(item)
metadata_xml_string = item_md.xml

# export item's metadata
item_md.exportMetadata(outputPath=currentXMLPath,
                metadata_export_option='ISO19139')

# create an ElementTree object and get its root
tree = ET.parse(currentXMLPath)
root = tree.getroot()

# check that the correct element exists
# root[10][0][0][0][2][0][1][0].text must be = 'publication'
# root[10][0][0][0][2][0][0][0] is the field that must be set

# set the value of the publication date to the current date
if root[10][0][0][0][2][0][1][0].text == 'publication':
    root[10][0][0][0][2][0][0][0].text = CurrentDate

# save the changes to the the new XML file
tree.write(newXMLPath)

# import the new XML to the metadata object
item_md.importMetadata(sourceUri=newXMLPath,
                       metadata_import_option='ISO19139')&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;Everything works fine until the last step, when I get an error&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Traceback&amp;nbsp;(most&amp;nbsp;recent&amp;nbsp;call&amp;nbsp;last):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;File&amp;nbsp;"D:\Projects\WCG&amp;nbsp;General\Python&amp;nbsp;2&amp;nbsp;to&amp;nbsp;3\read_metadata.py",&amp;nbsp;line&amp;nbsp;50,&amp;nbsp;in&amp;nbsp;&amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;item_md.importMetadata(sourceUri=newXMLPath,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;File&amp;nbsp;"C:\Program&amp;nbsp;Files\ArcGIS\Pro\Resources\ArcPy\arcpy\utils.py",&amp;nbsp;line&amp;nbsp;186,&amp;nbsp;in&amp;nbsp;fn_&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;fn(*args,&amp;nbsp;**kw)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;^^^^^^^^^^^^^^^&lt;BR /&gt;&amp;nbsp;&amp;nbsp;File&amp;nbsp;"C:\Program&amp;nbsp;Files\ArcGIS\Pro\Resources\ArcPy\arcpy\metadata.py",&amp;nbsp;line&amp;nbsp;126,&amp;nbsp;in&amp;nbsp;importMetadata&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;_convertArcObjectToPythonObject(arcgisscripting.metadata.Metadata.importMetadata(*_gp_fixargs((self,&amp;nbsp;sourceUri,&amp;nbsp;metadata_import_option,&amp;nbsp;customStylesheetPath),&amp;nbsp;True)))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;SystemError:&amp;nbsp;&amp;lt;built-in&amp;nbsp;method&amp;nbsp;importMetadata&amp;nbsp;of&amp;nbsp;MetadataObject&amp;nbsp;object&amp;nbsp;at&amp;nbsp;0x000001B4105315C0&amp;gt;&amp;nbsp;returned&amp;nbsp;a&amp;nbsp;result&amp;nbsp;with&amp;nbsp;an&amp;nbsp;exception&amp;nbsp;set&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Anybody have any ideas for a better way of doing this or fixing what's going wrong here?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hanlie&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 26 Jun 2024 10:33:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/programmatically-update-metadata/m-p/1497518#M84955</guid>
      <dc:creator>HanliePetoors</dc:creator>
      <dc:date>2024-06-26T10:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically update metadata</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/programmatically-update-metadata/m-p/1693503#M102588</link>
      <description>&lt;P&gt;This is probably too late for&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/473494"&gt;@HanliePetoors&lt;/a&gt;&amp;nbsp;but putting here for future viewers. Below is a function to search for an existing "Publication Date" element and either update the existing date or, if not found, create a new element with the date. I like using element names more than indices because 1) other revisions to the metadata could make the indices invalid and 2) it's easier for my brain to match up what I'm viewing in the xml file with my code. But it does make the code more verbose. All of the {*} in the element names are to avoid writing out the full namespace; I haven't quite figured out how to best deal with those, but wildcards make it clean enough for me.&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;import arcpy&lt;BR /&gt;import datetime&lt;BR /&gt;import xml.etree.ElementTree as et&lt;BR /&gt;&lt;BR /&gt;TODAY = datetime.date.today()&lt;BR /&gt;&lt;BR /&gt;# identify the feature class and the metadata xml output location&lt;BR /&gt;sde_fc = {path to your feature class of interest}&lt;BR /&gt;md_xml = {path you want the metadata xml to export to}&lt;BR /&gt;&lt;BR /&gt;# get the metadata object from the feature class&lt;BR /&gt;sde_fc_md = arcpy.metadata.Metadata(sde_fc)&lt;BR /&gt;&lt;BR /&gt;# export the metadata xml to the path specified above&lt;BR /&gt;sde_fc_md.exportMetadata(md_xml_path, "ISO19139")&lt;BR /&gt;&lt;BR /&gt;# add/revise the publication date. this will overwrite the xml file in place&lt;BR /&gt;add_pub_date(md_xml)&lt;BR /&gt;&lt;BR /&gt;# import the edited xml from the same path into the feature class's metadata&lt;BR /&gt;sde_fc_md.importMetadata(md_xml, "ISO19139_UNKNOWN")&lt;BR /&gt;&lt;BR /&gt;# save the metadata&lt;BR /&gt;sde_fc_md.save()&lt;BR /&gt;&lt;BR /&gt;# function to create/edit publication date&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;def &lt;/SPAN&gt;&lt;SPAN&gt;add_pub_date&lt;/SPAN&gt;(md_xml_path):&lt;BR /&gt;    msg(&lt;SPAN&gt;"adding today as publication date to metadata xml"&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;    # registering the namespaces&lt;BR /&gt;    et.register_namespace(&lt;SPAN&gt;''&lt;/SPAN&gt;, &lt;SPAN&gt;'http://www.isotc211.org/2005/gmd'&lt;/SPAN&gt;)&lt;BR /&gt;    et.register_namespace(&lt;SPAN&gt;'gco'&lt;/SPAN&gt;, &lt;SPAN&gt;'http://www.isotc211.org/2005/gco'&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;    # reading in the xml that has already been exported from Pro&lt;BR /&gt;    md_xml_tree = et.parse(md_xml_path)&lt;BR /&gt;    root = md_xml_tree.getroot()&lt;BR /&gt;&lt;BR /&gt;    # setting the publication date var, as it will be used in two places&lt;BR /&gt;    pub_date = &lt;SPAN&gt;str&lt;/SPAN&gt;(TODAY)&lt;BR /&gt;&lt;BR /&gt;    # getting the parent element for the date element(s)&lt;BR /&gt;    ci_citation_elem = root.find(&lt;SPAN&gt;'./{*}identificationInfo/{*}MD_DataIdentification/{*}citation/{*}CI_Citation'&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;    # look for the publication element because it might already exist&lt;BR /&gt;&lt;SPAN&gt;    if &lt;/SPAN&gt;ci_citation_elem.findall(&lt;SPAN&gt;'.//*[.="publication"]'&lt;/SPAN&gt;):&lt;BR /&gt;        msg(&lt;SPAN&gt;'found publication date! updating to TODAY'&lt;/SPAN&gt;)&lt;BR /&gt;        ci_date_elem = ci_citation_elem.find(&lt;SPAN&gt;'.//{*}dateType[{*}CI_DateTypeCode="publication"]/..'&lt;/SPAN&gt;)&lt;BR /&gt;        date_subelement = ci_date_elem.find(&lt;SPAN&gt;'{*}date/{*}Date'&lt;/SPAN&gt;)&lt;BR /&gt;        date_subelement.text = pub_date&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;    # create it if it doesn't exist&lt;BR /&gt;    else&lt;/SPAN&gt;:&lt;BR /&gt;        msg(&lt;SPAN&gt;"no publication date found; adding today's date"&lt;/SPAN&gt;)&lt;BR /&gt;        ci_citation_elem = root.find(&lt;SPAN&gt;'./{*}identificationInfo/{*}MD_DataIdentification/{*}citation/{*}CI_Citation'&lt;/SPAN&gt;)&lt;BR /&gt;        date_elem = et.SubElement(ci_citation_elem, &lt;SPAN&gt;'date'&lt;/SPAN&gt;)&lt;BR /&gt;        ci_date_elem = et.SubElement(date_elem, &lt;SPAN&gt;'CI_Date'&lt;/SPAN&gt;)&lt;BR /&gt;        date_subelem = et.SubElement(ci_date_elem, &lt;SPAN&gt;'date'&lt;/SPAN&gt;)&lt;BR /&gt;        date_subsubelem = et.SubElement(date_subelem, &lt;SPAN&gt;'gco:Date'&lt;/SPAN&gt;)&lt;BR /&gt;        date_subsubelem.text = pub_date&lt;BR /&gt;        datetype_subelem = et.SubElement(ci_date_elem, &lt;SPAN&gt;'dateType'&lt;/SPAN&gt;)&lt;BR /&gt;        ci_datetypecode_subelem = et.SubElement(datetype_subelem, &lt;SPAN&gt;'CI_DateTypeCode'&lt;/SPAN&gt;)&lt;BR /&gt;        ci_datetypecode_subelem.attrib = {&lt;SPAN&gt;'codeList'&lt;/SPAN&gt;: &lt;SPAN&gt;'http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode'&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN&gt;                                          'codeListValue'&lt;/SPAN&gt;: &lt;SPAN&gt;'publication'&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN&gt;                                          'codeSpace'&lt;/SPAN&gt;: &lt;SPAN&gt;'ISOTC211/19115'&lt;/SPAN&gt;}&lt;BR /&gt;        ci_datetypecode_subelem.text = &lt;SPAN&gt;'publication'&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;    # write the revised tree back to file&lt;BR /&gt;    md_xml_tree.write(md_xml_path,&lt;BR /&gt;&lt;SPAN&gt;                      encoding&lt;/SPAN&gt;=&lt;SPAN&gt;'utf-8'&lt;/SPAN&gt;,&lt;BR /&gt;&lt;SPAN&gt;                      xml_declaration&lt;/SPAN&gt;=&lt;SPAN&gt;True&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2026 18:37:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/programmatically-update-metadata/m-p/1693503#M102588</guid>
      <dc:creator>JenaF</dc:creator>
      <dc:date>2026-03-30T18:37:12Z</dc:date>
    </item>
  </channel>
</rss>

