<?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 - new line in geoprocessing dialog window in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726485#M56305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;somewhere at the very beginning of your script just add a line which is a blank message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.AddMessage("")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you didn't add the "running the clip script your self&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in the loop your message remains the same&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Apr 2015 12:13:01 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2015-04-14T12:13:01Z</dc:date>
    <item>
      <title>arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726476#M56296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am currently using;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.AddMessage(arcpy.GetMessages()) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.AddMessage(fc)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to tell me the features that are being processed by the geoprocessing tool in my script. Is there a way to seperate these in the geoprocessing dialog window by a line spacing because it looks cluttered?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 07:52:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726476#M56296</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-14T07:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726477#M56297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;arcpy.AddMessage(arcpy.GetMessages() + "\n")&lt;/P&gt;&lt;P&gt;and/ or&lt;/P&gt;&lt;P&gt;arcpy.AddMessage("\n" + fc + "\n")&lt;/P&gt;&lt;P&gt; where "\n" is the newline in python and you have to concatenate them in AddM***&lt;/P&gt;&lt;P&gt;for arcpy.GetMessages you might have to cycle through the list and add a newline to each entry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;msgs = arcpy.GetMessages()&lt;/P&gt;&lt;P&gt;for msg in msgs:&lt;/P&gt;&lt;P&gt;&amp;nbsp; arcpy.AddMessage(msg)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 07:56:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726477#M56297</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-04-14T07:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726478#M56298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It appears \n isn't supported, I tried it in both statements above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 08:07:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726478#M56298</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-14T08:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726479#M56299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you enclosed it in double quotes and used the + to concatenate them ? as in the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.AddMessage("Hello" + "\n")&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 08:11:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726479#M56299</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-04-14T08:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726480#M56300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure did;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error 000576: Script associated with this tool does not exist. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 08:20:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726480#M56300</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-14T08:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726481#M56301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AddMessage only works in scripts associated with tools in ArcToolbox.&amp;nbsp; That error message means that the script you are using isn't associated with a tool.&amp;nbsp; If you are running a script outside of a tool in ArcToolbox, then you have to use the print statement.&amp;nbsp; If I want to have messages appear both in Arctoolbox's output dialog and when I run a script stand alone, then I do the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;msg = "my message here"&lt;/P&gt;&lt;P&gt;msg2 = "another message"&lt;/P&gt;&lt;P&gt;print msg, "\n", msg2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ( or print('{}\n {}'.format(msg,msg2))&amp;nbsp; using the newer print statement"&lt;/P&gt;&lt;P&gt;arcpy.AddMessage(msg + "\n" + msg2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so you will have to clarify where you are running this and include your script portion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 08:31:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726481#M56301</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-04-14T08:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726482#M56302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oops Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="comment-copy"&gt;My apologies, user error, I renamed a folder that was used for accessing the script in the toolbox. My error. Had to set filepath in script again.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.AddMessage ("\n" + fc) is kind of working but gets;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abc.shp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xyz.shp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;123.shp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can&amp;nbsp; I make the list please?;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abc.shp&lt;/P&gt;&lt;P&gt;xyz.shp&lt;/P&gt;&lt;P&gt;123.shp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 08:48:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726482#M56302</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-14T08:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726483#M56303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just remove the...&amp;nbsp; "\n" +&amp;nbsp;&amp;nbsp; ... if you are using AddMessage in a loop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 08:59:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726483#M56303</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-04-14T08:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726484#M56304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That works removing the "\n" in my loop, but I am after this affect;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Running script Clip...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abc.shp&lt;/P&gt;&lt;P&gt;xyz.shp&lt;/P&gt;&lt;P&gt;123.shp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The line space after "Running script Clip..."in the dialog box and before the shapefile name. arcpy.AddMessage ("\n" + fc) inserts this space, but also a space between shapefile names. How can I remove the space between the shapefile names?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 09:25:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726484#M56304</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-14T09:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726485#M56305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;somewhere at the very beginning of your script just add a line which is a blank message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.AddMessage("")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you didn't add the "running the clip script your self&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in the loop your message remains the same&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:13:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726485#M56305</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-04-14T12:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726486#M56306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The "Running script Clip..."is coming from arcpy.AddMessage(arcpy.GetMessages()) and not added by myself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:16:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726486#M56306</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-14T12:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726487#M56307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a visual of what I am trying to achieve;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/85190_Capture.JPG" style="width: 620px; height: 224px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:25:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726487#M56307</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-14T12:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726488#M56308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then what happens when you remove that line? and just leave the arcpy.AddMessage lines alone.&amp;nbsp; Experiment until you understand the affect of both lines on the outputs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:27:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726488#M56308</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-04-14T12:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726489#M56309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as I said&lt;/P&gt;&lt;P&gt;arcpy.AddMessage("")&lt;/P&gt;&lt;P&gt;will produce a blank line&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:29:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726489#M56309</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-04-14T12:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726490#M56310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No change &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:36:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726490#M56310</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-14T12:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726491#M56311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try...as suggested...getting rid of the&lt;/P&gt;&lt;P&gt;arcpy.AddMessage(arcpy.GetMessages()) line?&lt;/P&gt;&lt;P&gt;All that line does is get all the messages ... if you want to see where the messages should be added...post your code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:38:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726491#M56311</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-04-14T12:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726492#M56312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Dan, I can't get arcpy.AddMessage("") to do anything. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can get arcpy.AddMessage(fc) to print shapefile names, but with no space before first shapefile.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:40:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726492#M56312</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-14T12:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726493#M56313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;last try and then this is going into my collection...&lt;/P&gt;&lt;P&gt;arcpy.AddMessage("\n")&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;otherwise post your code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:50:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726493#M56313</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-04-14T12:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: arcpy - new line in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726494#M56314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its not going into your collection &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;. That worked putting arcpy.AddMessage("\n") at the start of my script. Thanks for your patience Dan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 13:02:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-new-line-in-geoprocessing-dialog-window/m-p/726494#M56314</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-14T13:02:09Z</dc:date>
    </item>
  </channel>
</rss>

