<?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: add join and unusable header names in arcpy in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248874#M19233</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/392247_pastedImage_1.png" style="width: 785px; height: 996px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've gotten this to work in the python command window but cannot get it to run as a stand along script.&lt;/P&gt;&lt;P&gt;I keep getting problems on my AddJoin (line 53).&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see in lines 29-32 and 36-38 I have tried several methods of avoiding this error and just cannot seem to figure out what is going wrong!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Jan 2018 18:19:15 GMT</pubDate>
    <dc:creator>PhilBeilin1</dc:creator>
    <dc:date>2018-01-05T18:19:15Z</dc:date>
    <item>
      <title>add join and unusable header names in arcpy</title>
      <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248866#M19225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am writing a script that uses the Add Join function. This works fine but the result changes the header names to&amp;nbsp;stuff I cannot use like Parcel_D_1, Parcel_D_2, Parcel_D_3.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is important that I have usable header names for the next step of my script.&lt;/P&gt;&lt;P&gt;Has anyone else had this problem and know a way around it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2018 00:17:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248866#M19225</guid>
      <dc:creator>PhilBeilin1</dc:creator>
      <dc:date>2018-01-03T00:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: add join and unusable header names in arcpy</title>
      <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248867#M19226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you join a feature to another feature or table, the&amp;nbsp;header names will be concatenations of feature/table's name, a dot, and the field's name.&amp;nbsp; I suspect the naming issue you are experiencing is with the aliases of the fields.&amp;nbsp; You may wish to experiment with the following code in ArcMap's python window to see the joined field names after you run the AddJoin tool.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;mxd &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapping&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;MapDocument&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;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; f &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapping&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListLayers&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;mxd&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; field_info &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;f&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;fieldInfo
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; i &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; xrange&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;field_info&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;count&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; field_info&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;getfieldname&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;i&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;You should see something like this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Feature1.OBJECTID
Feature1.fldname1
Feature1.fldname2
Table1.OBJECTID
Table1.fldname1
Table1.fldname2‍‍‍‍‍‍&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:22:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248867#M19226</guid>
      <dc:creator>RandyBurton</dc:creator>
      <dc:date>2021-12-11T12:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: add join and unusable header names in arcpy</title>
      <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248868#M19227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/add-join.htm"&gt;&lt;STRONG&gt;Add Join&lt;/STRONG&gt;&lt;/A&gt; .... set the Qualified field names in the Environments ... if you want a permanent join then try &lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/join-field.htm"&gt;&lt;STRONG&gt;Join Field&lt;/STRONG&gt;&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In any event... you need to set the&amp;nbsp;&lt;STRONG&gt; &lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/environment-settings/qualified-field-names.htm"&gt;Qualified field names&lt;/A&gt; &amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2018 03:25:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248868#M19227</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-01-03T03:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: add join and unusable header names in arcpy</title>
      <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248869#M19228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are working with shapefiles, turning QualifiedFieldNames to False will help, but not if your field names are longer than 8 characters. (filename + _1 = 10) The ten-char field name&amp;nbsp;is a hard .dbf format limit. The only way to create short field names that you can work may be to&amp;nbsp;work with the &lt;A href="http://pro.arcgis.com/en/pro-app/arcpy/classes/fieldmappings.htm"&gt;FieldMappings&lt;/A&gt;&amp;nbsp;object. Better yet, keep QualifiedFieldNames False and have your temporary dataset written to a scratch geodatabase (arcpy.env.scratchGDB for example), this will avoid the 10 character limit. &amp;nbsp;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/appendices/geoprocessing-considerations-for-shapefile-output.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/appendices/geoprocessing-considerations-for-shapefile-output.htm"&gt;Geoprocessing considerations for shapefile output—Appendices | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2018 05:29:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248869#M19228</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2018-01-03T05:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: add join and unusable header names in arcpy</title>
      <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248870#M19229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That script worked and I was given field names similar to the ones you provided in the output but when I try to use these later I am not getting any results.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/392120_pastedImage_1.png" style="width: 211px; height: 186px;" /&gt;I am trying to use Parcel_8.P_OWNER_NM and&amp;nbsp;&lt;SPAN&gt;Parcel_6.P_OWNER_NM in the following code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;arcpy.SelectLayerByAttribute_management("Parcel_8_Layer2", "ADD_TO_SELECTION", "'Parcel_8.P_OWNER_NM' = 'Parcel_6.P_OWNER_NM'")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When I do it manually using what's seen here:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/392121_pastedImage_2.png" style="width: 311px; height: 447px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I get the results I need.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I can't get this to work I'll try the method Curtis suggested.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2018 23:10:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248870#M19229</guid>
      <dc:creator>PhilBeilin1</dc:creator>
      <dc:date>2018-01-03T23:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: add join and unusable header names in arcpy</title>
      <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248871#M19230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you get the results you want with the tool, I would suggest looking at Geoprocessing &amp;gt; Results.&amp;nbsp; You can copy the successful run of the tool as a python snippet by right clicking on the last result.&amp;nbsp; Paste this into your editor and examine the code.&amp;nbsp;&amp;nbsp; This will show you what the tool is actually using for the first parameter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2018 00:33:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248871#M19230</guid>
      <dc:creator>RandyBurton</dc:creator>
      <dc:date>2018-01-04T00:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: add join and unusable header names in arcpy</title>
      <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248872#M19231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Although it may just be a in your post for demo sake, but in the command line you are selection for them to be = bug in the dialog you have &amp;lt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; And you have "add to selection" vs "new selection". &amp;nbsp; &amp;nbsp;Just want to make sure the different results weren't just because of this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2018 02:36:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248872#M19231</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2018-01-04T02:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: add join and unusable header names in arcpy</title>
      <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248873#M19232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I notice you have single quotes around the field names in your where clause.&amp;nbsp; I think this is causing the tool to select all features because you are comparing two strings that are not equal.&amp;nbsp; Try:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SelectLayerByAttribute_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Parcel_8_Layer2"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"ADD_TO_SELECTION"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Parcel_8.P_OWNER_NM = Parcel_6.P_OWNER_NM"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# no single quotes around fields in where_clause&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And as &lt;A href="https://community.esri.com/migrated-users/2691" target="_blank"&gt;Rebecca Strauch, GISP&lt;/A&gt;‌ suggested, you may wish to use "NEW_SELECTION".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:22:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248873#M19232</guid>
      <dc:creator>RandyBurton</dc:creator>
      <dc:date>2021-12-11T12:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: add join and unusable header names in arcpy</title>
      <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248874#M19233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/392247_pastedImage_1.png" style="width: 785px; height: 996px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've gotten this to work in the python command window but cannot get it to run as a stand along script.&lt;/P&gt;&lt;P&gt;I keep getting problems on my AddJoin (line 53).&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see in lines 29-32 and 36-38 I have tried several methods of avoiding this error and just cannot seem to figure out what is going wrong!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2018 18:19:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248874#M19233</guid>
      <dc:creator>PhilBeilin1</dc:creator>
      <dc:date>2018-01-05T18:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: add join and unusable header names in arcpy</title>
      <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248875#M19234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you do have some file path issues with mixed forward and backslashes... you should fix those and I see you are using shapefiles but I would expect filenames to explicitly put the extension on... try a geodatabase instead if you can get the shapefile creation, working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2018 19:10:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248875#M19234</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-01-05T19:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: add join and unusable header names in arcpy</title>
      <link>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248876#M19235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think AddJoin likes to join shape files.&amp;nbsp; The code is hard to read, but it looked like you created the shape files from feature layers created by MakeFeatureLayer.&amp;nbsp; Try using these feature layers instead of the saved shape files in the AddJoin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also see &lt;A _jive_internal="true" href="https://community.esri.com/blogs/dan_patterson/2016/08/14/script-formatting" target="_blank"&gt;code formatting&lt;/A&gt;&amp;nbsp;as it will help make your code easier to read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;# feature "Earlier"/"EarlierFC" created at line 28&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# feature "Later"/"LaterFC" created at line 35&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;AddJoin_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Later"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"APN"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Earlier"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"APN"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"KEEP_ALL"&lt;/SPAN&gt;&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:22:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/add-join-and-unusable-header-names-in-arcpy/m-p/248876#M19235</guid>
      <dc:creator>RandyBurton</dc:creator>
      <dc:date>2021-12-11T12:22:58Z</dc:date>
    </item>
  </channel>
</rss>

