<?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: ArcPy sharing draft - how to add spaces to tag names? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454534#M35703</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, identified 2 years ago in version 2.2 and still not fixed... Seems like a trivial string parsing problem. That's disappointing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the heads-up, at least now I can stop banging my head against the wall.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Sep 2020 19:08:23 GMT</pubDate>
    <dc:creator>davedoesgis</dc:creator>
    <dc:date>2020-09-09T19:08:23Z</dc:date>
    <item>
      <title>ArcPy sharing draft - how to add spaces to tag names?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454532#M35701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to get a tag containing spaces, such as "Endangered Species Act", into an ArcGIS Online item.&amp;nbsp;I have no problem with this when sharing from ArcGIS Pro&amp;nbsp;or using the AGOL web interface in a browser. But when using arcpy to share&amp;nbsp;the layer to AGOL, it splits them on the spaces as well as the commas, resulting in&amp;nbsp;a tag for each&amp;nbsp;word.&amp;nbsp;&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;in_project&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
map_out &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;map_name&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="comment token"&gt;# TODO: Error handling if map not found&lt;/SPAN&gt;
layers &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; map_out&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listLayers&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; layer &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; layers&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; layer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;name &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'ESA'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    sharing_draft &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; map_out&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;getWebLayerSharingDraft&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"HOSTING_SERVER"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"FEATURE"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; 
        agol_layer_name&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; layer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    sharing_draft&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;overwriteExistingService &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;
    sharing_draft&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;portalFolder &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; agol_folder_name
    sharing_draft&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tags &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'salmon, trout, Endangered Species Act, fish'&lt;/SPAN&gt;

    &lt;SPAN class="comment token"&gt;# in summary the rest looks like this: &lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;# sharing_draft.exportToSDDraft()&lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;# arcpy.StageService_server()&lt;/SPAN&gt;
    &lt;SPAN class="comment token"&gt;# arcpy.UploadServiceDefinition_server()    ‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&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;/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;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;P&gt;&lt;/P&gt;&lt;P&gt;Here are the various things I tried:&amp;nbsp;&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD&gt;&lt;TR style="background-color: #efefef;"&gt;&lt;TH&gt;Input&lt;/TH&gt;&lt;TH&gt;Output&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;'salmon, trout, Endangered Species Act, fish'&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;(in the snippet above)&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;salmon, trout,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="background: yellow;"&gt;&lt;SPAN&gt;Endangered, Species, Act&lt;/SPAN&gt;&lt;/SPAN&gt;, fish&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;(splits on spaces or commas)&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;"salmon, trout, 'Endangered Species Act', fish"&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;(embed single quotes in string)&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN&gt;salmon, trout, 'Endangered, Species, Act', fish&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;(still splitting, plus quote marks included)&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;'salmon, trout, "Endangered Species Act", fish'&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;(same as previous, reversing single/double quotes)&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN&gt;salmon, trout, "Endangered, Species, Act", fish&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;&lt;SPAN&gt;(still splitting, plus quote marks&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;included&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN&gt;'salmon, trout, Endangered%20Species%20Act, fish'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;(use HTML encoding)&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.5pt; color: #3d3d3d;"&gt;salmon, trout,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="background: yellow;"&gt;&lt;SPAN&gt;Endangered%20Species%20Act&lt;/SPAN&gt;&lt;/SPAN&gt;, fish&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;['salmon', 'trout', 'Endangered Species Act', 'fish']&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;(as array)&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;['salmon', 'trout', 'Endangered, Species, Act', 'fish']&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #993300;"&gt;(literally includes brackets and quotes)&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know how to edit tags with the &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;arcgis&lt;/SPAN&gt; API, but since I'm already here using arcpy, I'd really like to solve these issues with just one toolkit.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:16:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454532#M35701</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2021-12-11T20:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPy sharing draft - how to add spaces to tag names?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454533#M35702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sounds like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://support.esri.com/en/bugs/nimbus/QlVHLTAwMDExNjc1Mg==" title="https://support.esri.com/en/bugs/nimbus/QlVHLTAwMDExNjc1Mg=="&gt;BUG-000116752: Spaces are considered as separators for multiple tag..&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will need to contact tech support to add your name to the list, OR hit SUBSCRIBE on the top right of the link above&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2020 18:42:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454533#M35702</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-09-09T18:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPy sharing draft - how to add spaces to tag names?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454534#M35703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, identified 2 years ago in version 2.2 and still not fixed... Seems like a trivial string parsing problem. That's disappointing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the heads-up, at least now I can stop banging my head against the wall.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2020 19:08:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454534#M35703</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2020-09-09T19:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPy sharing draft - how to add spaces to tag names?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454535#M35704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As a thought... try&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;"salmon;trout;Endangered Species Act;fish"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;esri uses semi-colon delimited strings in some functions, and I remembered, there are no spaces after the separator.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Worth a shot and you can say you covered all bases &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2020 19:38:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454535#M35704</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-09-09T19:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPy sharing draft - how to add spaces to tag names?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454536#M35705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good thought, but it still splits on space, and does not split on semicolon, so I get&amp;nbsp;the following:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Input:&amp;nbsp;salmon;trout;Endangered Species Act;fish&lt;/P&gt;&lt;P&gt;Output (3 tags out, split on commas):&amp;nbsp;salmon;trout;Endangered, Species, Act;fish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2020 20:16:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454536#M35705</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2020-09-09T20:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPy sharing draft - how to add spaces to tag names?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454537#M35706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's a bummer that I need to use another API to solve this, but in case anyone reading this wants to know how, follow these steps to use the ArcGIS API for Python. My code has a bunch of variables and loops that I simplified below, but I think this is more or less ready to run (though not tested &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;). I create my tags as a list, but you could just create them as a comma-delimited string&amp;nbsp;and remove the &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;join()&lt;/SPAN&gt; function below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;portal_url &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"https://&amp;lt;org&amp;gt;.maps.arcgis.com/"&lt;/SPAN&gt;
username &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'&amp;lt;you&amp;gt;'&lt;/SPAN&gt;
password &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'&amp;lt;password&amp;gt;'&lt;/SPAN&gt;
tag_list &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'salmon'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'trout'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Endangered Species Act'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'fish'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Open a connection &lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcgis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;gis &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; GIS
gis &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; GIS&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;portal_url&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; username&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; password&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
item &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; gis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;get_item_by_id&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;item_id&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
item_properties &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'tags'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;','&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tag_list&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
item&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;update&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;item_properties&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;item_properties&lt;SPAN class="punctuation token"&gt;)&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;/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;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:16:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-sharing-draft-how-to-add-spaces-to-tag-names/m-p/454537#M35706</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2021-12-11T20:16:29Z</dc:date>
    </item>
  </channel>
</rss>

