<?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 Re: Dictionary upatecursor with domains in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1265596#M67034</link>
    <description>&lt;P&gt;I did add print statements but 'None' is being printed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;search_feats ={f[0] for f in arcpy.da.SearchCursor(sjpoints,"State_1")}
print(search_feats) 

place_dict = {"AL": "Alabama", "Ala": "Alaska", "OR": "Oregen", "Cal": "California", "WA": "Wasington"}
print(place_dict)

with arcpy.da.UpdateCursor(StSele, "State") as upd_cur:
    for upd_row in upd_cur:
        print(str(upd_row[0]))
        upd_row[0] = place_dict.get(upd_row[0], upd_row[0])
        print (str(upd_row[0]))
        upd_cur.updateRow(upd_row)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Print out&lt;/P&gt;&lt;P&gt;set([u'OR'])&lt;BR /&gt;{'OR': 'Oregen'}&lt;BR /&gt;None&lt;BR /&gt;None&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 May 2023 15:28:46 GMT</pubDate>
    <dc:creator>2Quiker</dc:creator>
    <dc:date>2023-05-11T15:28:46Z</dc:date>
    <item>
      <title>Dictionary upatecursor with domains</title>
      <link>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1265128#M67002</link>
      <description>&lt;P&gt;I am using the following but I get no error but it doesn't update the "State" field.&lt;/P&gt;&lt;P&gt;I've tested this on a different field and it works. The only thing about the "State" field is that it has a domain.&lt;/P&gt;&lt;P&gt;Is there something different I have to do in order for this to update the "State" field?&lt;/P&gt;&lt;P&gt;Also, this is in Pro.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;import arcpy, os,sys

## Works in file geodatabase
arcpy.env.overwriteOutput = True
arcpy.env.workspace = r'C:\Temp\Sates.gdb'  


StSele = "States"
StStates = 'Statefile' 

sjpoints = "In_memory\sjpoints"

arcpy.SpatialJoin_analysis(StSele, StStates, sjpoints)
search_feats ={f[0] for f in arcpy.da.SearchCursor(sjpoints,"State_1")}
print(search_feats) 

place_dict = {"AL": "Alabama", "Ala": "Alaska", "OR": "Oregen", "Cal": "California", "WA": "Wasington"}
#print(place_dict)

with arcpy.da.UpdateCursor(StSele, "State") as upd_cur:
    for upd_row in upd_cur:
        upd_row[0] = place_dict.get(upd_row[0], upd_row[0])
        upd_cur.updateRow(upd_row)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 21:23:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1265128#M67002</guid>
      <dc:creator>2Quiker</dc:creator>
      <dc:date>2023-03-07T21:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dictionary upatecursor with domains</title>
      <link>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1265173#M67007</link>
      <description>&lt;P&gt;Have you added those new values as domain values?&lt;/P&gt;&lt;P&gt;Your existing domains would be pointless anyway after the update cursor wouldn't they? Delete the domain then batch add Table to Domain after the cursor operation I would say.&amp;nbsp; (fyi spelling on Oregon)&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 21:11:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1265173#M67007</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2023-03-07T21:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dictionary upatecursor with domains</title>
      <link>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1265201#M67008</link>
      <description>&lt;P&gt;Have you added those new values as domain values?&lt;/P&gt;&lt;P&gt;Those domains were already there and I didn't not add them as new. I can't delete the domain as i am an editor on this feature class. Part of this snippet of code is ran when one of a few features are selected. If I were to click on that field attribute, I get a list to select from. So is the issue that there is domains?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 21:40:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1265201#M67008</guid>
      <dc:creator>2Quiker</dc:creator>
      <dc:date>2023-03-07T21:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dictionary upatecursor with domains</title>
      <link>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1265284#M67013</link>
      <description>&lt;P&gt;I was under the impression that Domains are not relevant to doing an update, but I could be wrong. I would add a print statements&amp;nbsp; in your loop to verify your inputs to updateRow&lt;/P&gt;&lt;LI-CODE lang="python"&gt;with arcpy.da.UpdateCursor(StSele, "State") as upd_cur:
    for upd_row in upd_cur:
        print (str(upd_row))
        upd_row[0] = place_dict.get(upd_row[0], upd_row[0])
        print (str(upd_row))
        upd_cur.updateRow(upd_row)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 00:21:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1265284#M67013</guid>
      <dc:creator>DonMorrison1</dc:creator>
      <dc:date>2023-03-08T00:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dictionary upatecursor with domains</title>
      <link>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1265596#M67034</link>
      <description>&lt;P&gt;I did add print statements but 'None' is being printed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;search_feats ={f[0] for f in arcpy.da.SearchCursor(sjpoints,"State_1")}
print(search_feats) 

place_dict = {"AL": "Alabama", "Ala": "Alaska", "OR": "Oregen", "Cal": "California", "WA": "Wasington"}
print(place_dict)

with arcpy.da.UpdateCursor(StSele, "State") as upd_cur:
    for upd_row in upd_cur:
        print(str(upd_row[0]))
        upd_row[0] = place_dict.get(upd_row[0], upd_row[0])
        print (str(upd_row[0]))
        upd_cur.updateRow(upd_row)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Print out&lt;/P&gt;&lt;P&gt;set([u'OR'])&lt;BR /&gt;{'OR': 'Oregen'}&lt;BR /&gt;None&lt;BR /&gt;None&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 15:28:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1265596#M67034</guid>
      <dc:creator>2Quiker</dc:creator>
      <dc:date>2023-05-11T15:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dictionary upatecursor with domains</title>
      <link>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1266036#M67047</link>
      <description>&lt;P&gt;Is my issue, value of None that was causing the issue in line 8?&lt;/P&gt;&lt;P&gt;The StSele layer "States" filed does have "blanks" or/and "Nulls", that is correct as I am trying to update the StSele layers "State" field.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 16:30:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1266036#M67047</guid>
      <dc:creator>2Quiker</dc:creator>
      <dc:date>2023-03-09T16:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dictionary upatecursor with domains</title>
      <link>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1266319#M67050</link>
      <description>&lt;P&gt;If some of your fields have Nulls, then the statement&lt;/P&gt;&lt;LI-CODE lang="c"&gt;upd_row[0] = place_dict.get(upd_row[0], upd_row[0])&lt;/LI-CODE&gt;&lt;P&gt;is setting the upd_row[0] to None, because the second parameter in .get() is None.&amp;nbsp; Since nothing is returned when the .get() tries to find None in the dictionary, it defaults to the second argument.&amp;nbsp; If you replaced the statement with&lt;/P&gt;&lt;LI-CODE lang="c"&gt;upd_row[0] = place_dict.get(upd_row[0], 'No Key Found')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You'd get in your print out above:&lt;/P&gt;&lt;P&gt;set([u'OR'])&lt;BR /&gt;{'OR': 'Oregen'}&amp;nbsp; &amp;lt;- check you spelling, as &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/167692"&gt;@DavidPike&lt;/a&gt; mentioned&lt;BR /&gt;None&lt;BR /&gt;'No Key Found'&lt;/P&gt;&lt;P&gt;You need to get the domain values of the field and use those in your update to remain within the domain rules- look at the end of this thread for method of how you can get them:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/python-questions/list-domain-values-for-a-field/td-p/677301" target="_blank" rel="noopener"&gt;list-domain-values-for-a-field&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2023 03:27:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1266319#M67050</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2023-03-10T03:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dictionary upatecursor with domains</title>
      <link>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1268341#M67113</link>
      <description>&lt;P&gt;I guess I am confused. I thought that .get would get the place_dict value, e.g,&amp;nbsp; Alabama, Alaska etc.&lt;/P&gt;&lt;P&gt;There is empty/ blanks in the StSel layers "State"&amp;nbsp; field,which is why I am trying to update, and&amp;nbsp; which is why I lift out ' if row[0] in place_dict.keys()'&lt;/P&gt;&lt;P&gt;I was able to do what I needed by the following, but I would like to know how to dictionary keys and and dictionary values e.g. [0]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;import arcpy, os,sys

## Works in file geodatabase
arcpy.env.overwriteOutput = True
arcpy.env.workspace = r'C:\Temp\Sates.gdb'  


StSele = "States"
StStates = 'Statefile' 

sjpoints = "In_memory\sjpoints"

arcpy.SpatialJoin_analysis(StSele, StStates, sjpoints)
search_feats ={f[0] for f in arcpy.da.SearchCursor(sjpoints,"State_1")}
print(search_feats) 

place_dict = {"AL": "Alabama", "Ala": "Alaska", "OR": "Oregon", "Cal": "California", "WA": "Wasington"}
#print(place_dict)

with arcpy.da.UpdateCursor(StSele, "State") as upd_cur:
    for upd_row in upd_cur:
        for key, value in search_feats.items():
            val = place_dict.get(value)
            upd_row[0] = val
            upd_cur.updateRow(upd_row)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 22:37:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1268341#M67113</guid>
      <dc:creator>2Quiker</dc:creator>
      <dc:date>2023-03-15T22:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dictionary upatecursor with domains</title>
      <link>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1268538#M67119</link>
      <description>&lt;P&gt;You've got some mismatched variables to your last comment.&amp;nbsp; But, look at this and run it.&lt;/P&gt;&lt;P&gt;Some explanation of .get(): &lt;A href="https://www.w3schools.com/python/ref_dictionary_get.asp" target="_blank" rel="noopener"&gt;ref dictionary.get()&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;exampleList = ["AL", "CO", "Cal", '', None, "WA", 'AZ']

place_dict = {"AL": "Alabama", "Ala": "Alaska", "OR": "Oregon", "Cal": "California", "WA": "Wasington"}

print('\nExplicitly setting the optional 2nd argument in .get():')
for val in exampleList:
    dVal = place_dict.get(val, 'explicitly set default')
    print(f'\tval: {val}\t\t.get(val, "explicitly set default") returned: {place_dict.get(val)}\t\tplace_dict returned: {dVal}')

print('\nNot setting the optional 2nd argument in .get(), which inherently defaults to None:')
for val in exampleList:
    dVal = place_dict.get(val)
    print(f'\tval: {val}\t\t.get(val) returned: {place_dict.get(val)}\t\tplace_dict returned: {dVal}')

print('\nSetting 2nd argument to val as default:')
for val in exampleList:
    dVal = place_dict.get(val, val)
    print(f'\tval: {val}\t\t.get(val, val) returned: {place_dict.get(val)}\t\tplace_dict returned: {dVal}')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;So this code shows that if the key is not in the dictionary, it will either return the string 'explicitly set default', None, or the val.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 15:22:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1268538#M67119</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2023-03-16T15:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dictionary upatecursor with domains</title>
      <link>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1288200#M67618</link>
      <description>&lt;P&gt;Sorry for the delayed response, I got caught up on on something else.&lt;/P&gt;&lt;P&gt;I ran you code and I see, or at least I think I do. Maybe I didn't explain well what I am trying to do.&lt;/P&gt;&lt;P&gt;Maybe I am not going about it the correct way?&lt;/P&gt;&lt;P&gt;The&amp;nbsp; "States" field of the StSele layer will always most likely be blank. I need the States field updated, like so.&lt;/P&gt;&lt;P&gt;if StSele "State" field is empty/blank, check sjpoints (spatialjoin)--&amp;gt; if sjpints field "State_1" has "Ala" I need StSele layer field "States" updated with "Alaska. Again StSele "State" field will most likely be empty or blank.&lt;/P&gt;&lt;P&gt;My first table example was wrong, my apologies.&lt;/P&gt;&lt;P&gt;attributes after spatial join.&lt;/P&gt;&lt;TABLE width="405"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="108"&gt;StStates Layer&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="86"&gt;StSele layer&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="83"&gt;Spaital Join&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="108"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="86"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="83"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="108"&gt;State&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="86"&gt;State&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="83"&gt;State_1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="108"&gt;OR&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="86"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="83"&gt;Org&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="108"&gt;Ala&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="86"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="83"&gt;Ala&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="108"&gt;Cal&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="83"&gt;Cal&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="108"&gt;Wa&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="83"&gt;Wa&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I need the&lt;/P&gt;&lt;TABLE width="390"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="94"&gt;StStates Layer&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="81"&gt;StSele layer&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="87"&gt;Spaital Join&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="94"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="81"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="87"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="94"&gt;State&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="81"&gt;State&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="87"&gt;State_1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="94"&gt;OR&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="81"&gt;Oregon&lt;/TD&gt;&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="87"&gt;Org&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="94"&gt;Ala&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="81"&gt;Alaska&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="87"&gt;Ala&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="94"&gt;Cal&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;California&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="87"&gt;Cal&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="94"&gt;Wa&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Washington&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD width="87"&gt;Wa&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 15:28:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dictionary-upatecursor-with-domains/m-p/1288200#M67618</guid>
      <dc:creator>2Quiker</dc:creator>
      <dc:date>2023-05-11T15:28:24Z</dc:date>
    </item>
  </channel>
</rss>

