<?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: I Need Your Help Please in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581655#M45589</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank u clthompson for your suggestions, i've been able to create my folders by combining two variables at a time since the create folder function can only take 2 arguments at a time this is my code;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; outName6 = str(val) + "_LGA" + "(" + str(val1) + " _Area" + ")"
&amp;gt;&amp;gt;&amp;gt; outName1 = "Plot_" + str(val3) + "(" "Block_" + str(val3) + ")"
&amp;gt;&amp;gt;&amp;gt; arcpy.CreateFolder_management("C:\\ARA_STATE\\", outName6)
&amp;lt;Result 'C:\\ARA_STATE\\rin_South_LGA(GRA_Buo_Oho _Area)'&amp;gt;
&amp;gt;&amp;gt;&amp;gt; arcpy.CreateFolder_management("C:\\ARA_STATE\\"+ outName6,outName1)
&amp;lt;Result 'C:\\ARA_STATE\\rin_South_LGA(GRA_Buo_Oho _Area)\\Plot_9(Block_9)'&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My next problem is how to drop my pdf in the last folder, i used this code and got this errror message;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; outName2 = "TDP_FOR_" + "Block_" + str(val2) + "_Plot_" + str(val3) + "_" + str(val1) + "_Area_of_" + str(val) + "_LGA" + ".pdf"
&amp;gt;&amp;gt;&amp;gt; arcpy.mapping.ExportToPDF(mxd,"C:\\ARA_STATE\\" + outName6,outName1,outName2)
Runtime error 
Traceback (most recent call last):
&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;
&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\utils.py", line 181, in fn_
&amp;nbsp;&amp;nbsp;&amp;nbsp; return fn(*args, **kw)
&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\mapping.py", line 1133, in ExportToPDF
&amp;nbsp;&amp;nbsp;&amp;nbsp; assert isinstance(data_frame, DataFrame) or (isinstance(data_frame, basestring) and data_frame.lower() == 'page_layout')
AssertionError
&amp;gt;&amp;gt;&amp;gt; arcpy.mapping.ExportToPDF(mxd,"C:\\ARA_STATE\\" + outName6,outName1)
Runtime error 
Traceback (most recent call last):
&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;
&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\utils.py", line 181, in fn_
&amp;nbsp;&amp;nbsp;&amp;nbsp; return fn(*args, **kw)
&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\mapping.py", line 1133, in ExportToPDF
&amp;nbsp;&amp;nbsp;&amp;nbsp; assert isinstance(data_frame, DataFrame) or (isinstance(data_frame, basestring) and data_frame.lower() == 'page_layout')
AssertionError&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What do you think please. Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 01:00:37 GMT</pubDate>
    <dc:creator>OLANIYANOLAKUNLE</dc:creator>
    <dc:date>2021-12-12T01:00:37Z</dc:date>
    <item>
      <title>I Need Your Help Please</title>
      <link>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581649#M45583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am trying to generate a create a folder and the name of this folder would be derived from an attribute value by using the searchCursor and at the same time generate a pdf output which name would also be derived from an attribute valve using the search cursor. This my code below, ive been having serious issues with the folder path as the application claims my output destination does not exist.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;arcpy.SelectLayerByLocation_management("Parcels", "COMPLETELY_WITHIN", "ClipFeature", "", "NEW_SELECTION")
fc = "Parcels"
field = "LGA"
cursor = arcpy.SearchCursor(fc)
for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp; row.getValue(field)
val = row.getValue(field)
field = "District"
cursor = arcpy.SearchCursor(fc)
for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp; row.getValue(field)
val1 = row.getValue(field)
field = "Block_No"
cursor = arcpy.SearchCursor(fc)
for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp; row.getValue(field)
val2 = row.getValue(field)
field = "Plot_No"
cursor = arcpy.SearchCursor(fc)
for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp; row.getValue(field)
val3 = row.getValue(field)
outName = str(val) + "LGA" 
outName = "Block" + str(val) + "Plot_" + str(val2)
outName1 = "Block_" + str(val2) + "Plot_" + str(val3) + str(val1) + "Area of" + str(val) + "_LGA" + ".pdf"
outName2 = str(val1) + "AREA" 
outName3 = "Block" + str(val2) #+ "Plot_" + str(val3)
outName4 = "Plot_" + str(val3)
arcpy.CreateFolder_management("C:\ETE_STATE",outName,outName2,outName3,outName4)
arcpy.mapping.ExportToPDF(mxd,"C:\ETE_STATE", outName+outName2+outName3+outName4+ outName1)&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please your suggestions would be appreciated. Thanks (Ive also included my script as an attachment)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Aug 2012 01:40:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581649#M45583</guid>
      <dc:creator>OLANIYANOLAKUNLE</dc:creator>
      <dc:date>2012-08-26T01:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: I Need Your Help Please</title>
      <link>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581650#M45584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Use this to create directories.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;os.makedirs(path)
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:00:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581650#M45584</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2021-12-12T01:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with folder path in Python</title>
      <link>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581651#M45585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Also - watch your paths. Single back slashes may be interpreted incorrectly on windows. They need to be double or the string must be prefixed by "r".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;arcpy.CreateFolder_management(&lt;SPAN style="color:red;"&gt;"C:\\ETE_STATE"&lt;/SPAN&gt;,outName,outName2,outName3,outName4)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Arc 10 help: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/0057/005700000009000000.htm"&gt;Paths explained&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2012 17:22:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581651#M45585</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2012-08-27T17:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: I Need Your Help Please</title>
      <link>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581652#M45586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I tried to use your last suggestion and this was what i got;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; arcpy.CreateFolder_management("C:\\ETE_STATE",outName,outName1,outName2,outName3)
Runtime error 
Traceback (most recent call last):
&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;
TypeError: CreateFolder() takes at most 2 arguments (5 given)
&amp;gt;&amp;gt;&amp;gt;&lt;/PRE&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried to nest outName1 in outName using the code below and i got another error message;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; arcpy.CreateFolder_management("C:\\KWARA_STATE\\outName",outName1)
Runtime error&amp;nbsp; Traceback (most recent call last):&amp;nbsp;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;&amp;nbsp;&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\management.py", line 14477, in CreateFolder&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e ExecuteError: Failed to execute. Parameters are not valid. ERROR 000732: Folder Location: Dataset C:\KWARA_STATE\outName does not exist or is not supported Failed to execute (CreateFolder).&amp;nbsp; 
&amp;gt;&amp;gt;&amp;gt; &lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;What do you think?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:00:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581652#M45586</guid>
      <dc:creator>OLANIYANOLAKUNLE</dc:creator>
      <dc:date>2021-12-12T01:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: I Need Your Help Please</title>
      <link>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581653#M45587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;arcpy.CreateFolder_management("C:\\KWARA_STATE\\outName",outName1)&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Does the folder outName exist yet? This has to already be created in order to put another folder in it.&amp;nbsp; If you are supplying 'outName' as a parameter then that has to sit outside your quoted string so it would look something like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;outName = 'FolderX'
outName1 = 'NewFolder'
arcpy.CreateFolder_management("C:\\KWARA_STATE\\" + outName,outName1)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also in that first example, it looks like you are trying to create several folders at once:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;arcpy.CreateFolder_management("C:\\ETE_STATE",outName,outName1,outName2,outName3)&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;The way to do this would be to create a list of those folders, then iterate that in a 'for loop' like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;folders = [outName,outName1,outName2,outName3'
for folder in folders:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CreateFolder_management("C:\\ETE_STATE",folder)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:00:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581653#M45587</guid>
      <dc:creator>ChristopherThompson</dc:creator>
      <dc:date>2021-12-12T01:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: I Need Your Help Please</title>
      <link>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581654#M45588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If it's any help, the way I got around this was to create a variable for the pathname and then another variable for the folder name. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;PATHNAME = "C:\\KWARA_STATE"

arcpy.CreateFolder_management(PATHNAME, Outname1{or whatever your folder name is})&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have found that when using entered or derived variables, it was easier to combine them first, then pass that onto the script. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For what it's worth. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:00:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581654#M45588</guid>
      <dc:creator>RobertStewart</dc:creator>
      <dc:date>2021-12-12T01:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: I Need Your Help Please</title>
      <link>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581655#M45589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank u clthompson for your suggestions, i've been able to create my folders by combining two variables at a time since the create folder function can only take 2 arguments at a time this is my code;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; outName6 = str(val) + "_LGA" + "(" + str(val1) + " _Area" + ")"
&amp;gt;&amp;gt;&amp;gt; outName1 = "Plot_" + str(val3) + "(" "Block_" + str(val3) + ")"
&amp;gt;&amp;gt;&amp;gt; arcpy.CreateFolder_management("C:\\ARA_STATE\\", outName6)
&amp;lt;Result 'C:\\ARA_STATE\\rin_South_LGA(GRA_Buo_Oho _Area)'&amp;gt;
&amp;gt;&amp;gt;&amp;gt; arcpy.CreateFolder_management("C:\\ARA_STATE\\"+ outName6,outName1)
&amp;lt;Result 'C:\\ARA_STATE\\rin_South_LGA(GRA_Buo_Oho _Area)\\Plot_9(Block_9)'&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My next problem is how to drop my pdf in the last folder, i used this code and got this errror message;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; outName2 = "TDP_FOR_" + "Block_" + str(val2) + "_Plot_" + str(val3) + "_" + str(val1) + "_Area_of_" + str(val) + "_LGA" + ".pdf"
&amp;gt;&amp;gt;&amp;gt; arcpy.mapping.ExportToPDF(mxd,"C:\\ARA_STATE\\" + outName6,outName1,outName2)
Runtime error 
Traceback (most recent call last):
&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;
&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\utils.py", line 181, in fn_
&amp;nbsp;&amp;nbsp;&amp;nbsp; return fn(*args, **kw)
&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\mapping.py", line 1133, in ExportToPDF
&amp;nbsp;&amp;nbsp;&amp;nbsp; assert isinstance(data_frame, DataFrame) or (isinstance(data_frame, basestring) and data_frame.lower() == 'page_layout')
AssertionError
&amp;gt;&amp;gt;&amp;gt; arcpy.mapping.ExportToPDF(mxd,"C:\\ARA_STATE\\" + outName6,outName1)
Runtime error 
Traceback (most recent call last):
&amp;nbsp; File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;
&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\utils.py", line 181, in fn_
&amp;nbsp;&amp;nbsp;&amp;nbsp; return fn(*args, **kw)
&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\mapping.py", line 1133, in ExportToPDF
&amp;nbsp;&amp;nbsp;&amp;nbsp; assert isinstance(data_frame, DataFrame) or (isinstance(data_frame, basestring) and data_frame.lower() == 'page_layout')
AssertionError&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What do you think please. Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:00:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581655#M45589</guid>
      <dc:creator>OLANIYANOLAKUNLE</dc:creator>
      <dc:date>2021-12-12T01:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: I Need Your Help Please</title>
      <link>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581656#M45590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Again, as with your initial example, it looks like you're trying to pass too many arguments into the function:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;arcpy.mapping.ExportToPDF(&lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;mxd&lt;/SPAN&gt;&lt;SPAN style="color:&amp;quot;#0000FF&amp;quot;;"&gt;,"C:\\ARA_STATE\\" + outName6&lt;/SPAN&gt;,&lt;SPAN style="color:&amp;quot;#00FF00&amp;quot;;"&gt;outName1&lt;/SPAN&gt;,&lt;SPAN style="color:&amp;quot;#FFA500&amp;quot;;"&gt;outName2&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;The help on this shows the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; ExportToPDF (&amp;nbsp; &lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;map_document&lt;/SPAN&gt;,&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:&amp;quot;#0000FF&amp;quot;;"&gt;out_pdf&lt;/SPAN&gt;,&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:&amp;quot;#00FF00&amp;quot;;"&gt;{data_frame}&lt;/SPAN&gt;,&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:&amp;quot;#FFA500&amp;quot;;"&gt;{df_export_width}&lt;/SPAN&gt; , {df_export_height}, {resolution}, {image_quality}, {colorspace}, {compress_vectors}, {image_compression}, {picture_symbol}, {convert_markers}, {embed_fonts}, {layers_attributes}, {georef_info}, {jpeg_compression_quality})&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the above examples i've color coded the matching elements - you can see that the items outname1 and outname2 would want to match up to the optional arguments that the tool accepts for specifying the data frame and export width. Its not clear to me what you are trying to do here. The tool wants you to supply a map document name (which you have as 'mxd') and the name of a pdf file to out put, which from your code would be 'C:\\ARA_STATE\\" + outName6' - but from your earlier work I think that is a folder.. so I'm left confused with what outname1 and outname2 are supposed to be.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2012 11:58:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-need-your-help-please/m-p/581656#M45590</guid>
      <dc:creator>ChristopherThompson</dc:creator>
      <dc:date>2012-08-29T11:58:05Z</dc:date>
    </item>
  </channel>
</rss>

