<?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: Using Python to set a definition query in ArcPro in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282879#M21812</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, I just upgraded to Pro 2.4.0 and the syntax that I originally marked as correct above is no longer working. This used to work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;aprx &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ArcGISProject&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"CURRENT"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
m &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; aprx&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listMaps&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"agmap"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; lyr &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; m&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listLayers&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Parcel*"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    lyr&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;definitionQuery &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"JOINPIN = '201-02-0-00-00-012.01-0'"&lt;/SPAN&gt;‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone have any suggestions on what might have changed? Maybe it has to do with the fact that you can have multiple definition queries in Pro and only have one active?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 13:41:44 GMT</pubDate>
    <dc:creator>AmyRoust</dc:creator>
    <dc:date>2021-12-11T13:41:44Z</dc:date>
    <item>
      <title>Using Python to set a definition query in ArcPro</title>
      <link>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282872#M21805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm rewriting a Python 2.x script so that it can be used in Pro, and I'm stuck on setting a definition query for a layer. Here's what I tried in Pro's Python Window:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;aprx = arcpy.mp.ArcGISProject("CURRENT")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;m = aprx.listMaps("Map")[0]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;for lyr in m.listLayers("Parcel"):&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;if lyr.supports("DEFINITIONQUERY"):&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;lyr.definitionQuery = 'JOINPIN = 201-02-0-00-00-012.01-0'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I thought maybe the definition query had to be written like a SQL statement, so I tried:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aprx = arcpy.mp.ArcGISProject("CURRENT")&lt;BR /&gt;m = aprx.listMaps("Map")[0]&lt;/P&gt;&lt;P&gt;for lyr in m.listLayers("Parcel"):&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;if lyr.supports("DEFINITIONQUERY"):&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;lyr.definitionQuery = 'Join Pin is Equal to 201-02-0-00-00-012.01-0'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neither option generated an error message, but no definition query is set on the Parcel layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate any help I can get! Documentation for moving from 2.x to 3.x for ArcPro doesn't have a lot of code examples that I can copy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2019 20:43:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282872#M21805</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2019-01-18T20:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python to set a definition query in ArcPro</title>
      <link>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282873#M21806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Two things to check:&lt;/P&gt;&lt;P&gt;1. Is your lyr.definitionQuery line indented below your if line? If not, make sure it is indented.&lt;/P&gt;&lt;P&gt;2. What's the data type for your JOINPIN field? If it is a string, the value needs be in single quotes. It may look something like:&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;lyr.definitionQuery = "JOINPIN = &lt;STRONG&gt;'&lt;/STRONG&gt;201-02-0-00-00-012.01-0&lt;STRONG&gt;'&lt;/STRONG&gt;".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;You can also check out the SQL syntax section in the help:&amp;nbsp;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/help/mapping/navigation/write-a-query-in-the-query-builder.htm#ESRI_SECTION1_D7AB3C07A3C54C31BC73F5BB8C3DF83A" title="http://pro.arcgis.com/en/pro-app/help/mapping/navigation/write-a-query-in-the-query-builder.htm#ESRI_SECTION1_D7AB3C07A3C54C31BC73F5BB8C3DF83A"&gt;Write a query in the query builder—ArcGIS Pro | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2019 21:01:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282873#M21806</guid>
      <dc:creator>BrittneyWhite1</dc:creator>
      <dc:date>2019-01-18T21:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python to set a definition query in ArcPro</title>
      <link>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282874#M21807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My indents are good, and I tried the quotes like you have in your example (JOINPIN is a string). Still no luck. Other ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2019 21:19:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282874#M21807</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2019-01-18T21:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python to set a definition query in ArcPro</title>
      <link>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282875#M21808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/blogs/dan_patterson/2016/08/14/script-formatting"&gt;/blogs/dan_patterson/2016/08/14/script-formatting&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Amy....&lt;/P&gt;&lt;P&gt;Based on your pasted code, the last line in both examples need to be indented after the if statement.&lt;/P&gt;&lt;P&gt;It probably looks good on your screen but...&lt;/P&gt;&lt;P&gt;Code formatting helps ensure proper indentation from application to geonet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2019 21:37:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282875#M21808</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2019-01-18T21:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python to set a definition query in ArcPro</title>
      <link>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282876#M21809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good tip, thanks.&amp;nbsp;Let's try this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;aprx &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ArcGISProject&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"CURRENT"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
m &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; aprx&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listMaps&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Map"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; lyr &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; m&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listLayers&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Parcel"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; lyr&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;supports&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"DEFINITIONQUERY"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;definitionQuery &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"JOINPIN = '201-02-0-00-00-012.01-0'"&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:41:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282876#M21809</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2021-12-11T13:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python to set a definition query in ArcPro</title>
      <link>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282877#M21810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried adding print statements to ensure it's getting past the 'for' and 'if' how you expect? Also, check the lyr.definitionQuery before and after attempting to change.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2019 22:00:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282877#M21810</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2019-01-18T22:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python to set a definition query in ArcPro</title>
      <link>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282878#M21811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Of all things, it appears that I just needed an asterisk after my layer name to make it work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;aprx &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ArcGISProject&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"CURRENT"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
m &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; aprx&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listMaps&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"agmap"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; lyr &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; m&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listLayers&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Parcel*"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;definitionQuery &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"JOINPIN = '201-02-0-00-00-012.01-0'"&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:41:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282878#M21811</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2021-12-11T13:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python to set a definition query in ArcPro</title>
      <link>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282879#M21812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, I just upgraded to Pro 2.4.0 and the syntax that I originally marked as correct above is no longer working. This used to work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;aprx &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ArcGISProject&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"CURRENT"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
m &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; aprx&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listMaps&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"agmap"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; lyr &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; m&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listLayers&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Parcel*"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    lyr&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;definitionQuery &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"JOINPIN = '201-02-0-00-00-012.01-0'"&lt;/SPAN&gt;‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone have any suggestions on what might have changed? Maybe it has to do with the fact that you can have multiple definition queries in Pro and only have one active?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:41:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282879#M21812</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2021-12-11T13:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python to set a definition query in ArcPro</title>
      <link>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282880#M21813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not know if it is still relevant, but I have version 2.5.2 and your code is working for me&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/509019_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2020 08:53:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-python-to-set-a-definition-query-in-arcpro/m-p/282880#M21813</guid>
      <dc:creator>PeterBandura</dc:creator>
      <dc:date>2020-10-01T08:53:32Z</dc:date>
    </item>
  </channel>
</rss>

