<?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: Help - Exporting Multiple Map Documents to PDF using Python in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404907#M31889</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With much appreciation for you - I got it!&lt;/P&gt;&lt;P&gt;See below code that worked (i.e. inserted 'r' and changed mxd_files to mxd_list).&lt;/P&gt;&lt;P&gt;The original code on the ESRI help link should be adjusted. When I tried 'print pdf_name' I got an empty 'test1.pdf'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; &lt;SPAN style="color: #004da8;"&gt;import&lt;/SPAN&gt; arcpy, os&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;... arcpy.env.workspace = ws = r"C:\Users\00177153\Desktop\ArcPy"&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;... mxd_list = arcpy.ListFiles("*.mxd")&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;... &lt;SPAN style="color: #004da8;"&gt;for&lt;/SPAN&gt; mxd &lt;SPAN style="color: #004da8;"&gt;in&lt;/SPAN&gt; mxd_list:&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; current_mxd = arcpy.mapping.MapDocument(os.path.join(ws, mxd))&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pdf_name = mxd[:-4] + ".pdf"&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(current_mxd, pdf_name)&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;... &lt;SPAN style="color: #004da8;"&gt;del&lt;/SPAN&gt; mxd_list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My next challenge will be to export the PDFs to another location than the MXDs. I will put in another question for that. Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Aug 2015 15:51:33 GMT</pubDate>
    <dc:creator>anayoung</dc:creator>
    <dc:date>2015-08-06T15:51:33Z</dc:date>
    <item>
      <title>Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404899#M31881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to coding. I am trying to write a script that will allow me to export multiple map documents to PDF using Python. I found some code to do just that at the following ESRI help link &lt;A href="http://support.esri.com/ru/knowledgebase/techarticles/detail/44242" title="http://support.esri.com/ru/knowledgebase/techarticles/detail/44242"&gt;44242 - Export map documents to PDF using Python&lt;/A&gt; . However when I try to run it I get the below Runtime Error message. The only thing I changed from the original code was the workspace pathway. Thank you very much, Ana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; &lt;SPAN style="color: #004da8;"&gt;import&lt;/SPAN&gt; arcpy, os&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;... arcpy.env.workspace = ws = "C:\Users\00177153\Desktop\ArcPy"&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;... mxd_list = arcpy.ListFiles("*.mxd")&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;... &lt;SPAN style="color: #004da8;"&gt;for&lt;/SPAN&gt; mxd &lt;SPAN style="color: #004da8;"&gt;in&lt;/SPAN&gt; mxd_files:&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; current_mxd = arcpy.mapping.MapDocument(os.path.join(ws, mxd))&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pdf_name = mxd[:-4] + ".pdf"&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(current_mxd, pdf_name)&lt;/P&gt;&lt;P&gt;...&amp;nbsp; &lt;/P&gt;&lt;P&gt;... &lt;SPAN style="color: #004da8;"&gt;del&lt;/SPAN&gt; mxd_files&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime Error&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 7, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;NameError: name 'mxd_files' is not defined&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 15:06:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404899#M31881</guid>
      <dc:creator>anayoung</dc:creator>
      <dc:date>2015-08-06T15:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404900#M31882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try changing "&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;mxd_files" to "&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;mxd_list"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 15:09:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404900#M31882</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2015-08-06T15:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404901#M31883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried that but reieved the following error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime error&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 7, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;TypeError: 'NoneType' object is not iterable&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 15:13:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404901#M31883</guid>
      <dc:creator>anayoung</dc:creator>
      <dc:date>2015-08-06T15:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404902#M31884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That would mean that there are no map documents in the filepath you gave. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;arcpy.env.workspace = ws = "C:\Users\00177153\Desktop\ArcPy"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Should just be:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;arcpy.env.workspace = "C:\Users\00177153\Desktop\ArcPy"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;However, if there are no mxds in that directory, then you will have no items in your list to export, hence the error.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 15:18:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404902#M31884</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-08-06T15:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404903#M31885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tested this code, try this&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os


arcpy.env.workspace = ws = r"C:\Users\00177153\Desktop\ArcPy"


mxd_list = arcpy.ListFiles("*.mxd")


for mxd in mxd_list:
&amp;nbsp;&amp;nbsp;&amp;nbsp; current_mxd = arcpy.mapping.MapDocument(os.path.join(ws, mxd))
&amp;nbsp;&amp;nbsp;&amp;nbsp; pdf_name = os.path.join(ws,mxd[:-4]) + ".pdf"
&amp;nbsp;&amp;nbsp;&amp;nbsp; print pdf_name
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(current_mxd, pdf_name)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:26:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404903#M31885</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2021-12-11T18:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404904#M31886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/people/iamurray"&gt;Ian Murray&lt;/A&gt;​he is using ws on line 9 for readability he should do &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;arcpy.env.workspace = r"C:\Users\00177153\Desktop\ArcPy"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;ws = r"C:\Users\00177153\Desktop\ArcPy"&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 15:27:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404904#M31886</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2015-08-06T15:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404905#M31887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yea missed that &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 15:31:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404905#M31887</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-08-06T15:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404906#M31888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Me too i didn't see it till i reconfigured the code &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/silly.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 15:41:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404906#M31888</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2015-08-06T15:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404907#M31889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With much appreciation for you - I got it!&lt;/P&gt;&lt;P&gt;See below code that worked (i.e. inserted 'r' and changed mxd_files to mxd_list).&lt;/P&gt;&lt;P&gt;The original code on the ESRI help link should be adjusted. When I tried 'print pdf_name' I got an empty 'test1.pdf'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; &lt;SPAN style="color: #004da8;"&gt;import&lt;/SPAN&gt; arcpy, os&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;... arcpy.env.workspace = ws = r"C:\Users\00177153\Desktop\ArcPy"&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;... mxd_list = arcpy.ListFiles("*.mxd")&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;... &lt;SPAN style="color: #004da8;"&gt;for&lt;/SPAN&gt; mxd &lt;SPAN style="color: #004da8;"&gt;in&lt;/SPAN&gt; mxd_list:&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; current_mxd = arcpy.mapping.MapDocument(os.path.join(ws, mxd))&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pdf_name = mxd[:-4] + ".pdf"&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(current_mxd, pdf_name)&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;... &lt;SPAN style="color: #004da8;"&gt;del&lt;/SPAN&gt; mxd_list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My next challenge will be to export the PDFs to another location than the MXDs. I will put in another question for that. Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 15:51:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404907#M31889</guid>
      <dc:creator>anayoung</dc:creator>
      <dc:date>2015-08-06T15:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404908#M31890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;See the adjusted code below&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;gt;&amp;gt;&amp;gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #004da8;"&gt;import&lt;/SPAN&gt; arcpy, os&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;...&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;... arcpy.env.workspace = ws = r"C:\Users\00177153\Desktop\ArcPy"&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;... pdfws = r"some\other\path&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;... mxd_list = arcpy.ListFiles("*.mxd")&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;...&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;... &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #004da8;"&gt;for&lt;/SPAN&gt; mxd &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #004da8;"&gt;in&lt;/SPAN&gt; mxd_list:&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; current_mxd = arcpy.mapping.MapDocument(os.path.join(ws, mxd))&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pdf_name = &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f6f6f6;"&gt;os.path.join(&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;pdfws&lt;/SPAN&gt;,mxd[:-&lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green; background-color: #f6f6f6;"&gt;4&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt;]) + &lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue; background-color: #f6f6f6;"&gt;".pdf"&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000; background-color: #f6f6f6;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(current_mxd, pdf_name)&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;...&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;... &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #004da8;"&gt;del&lt;/SPAN&gt; mxd_list&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 15:56:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404908#M31890</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2015-08-06T15:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404909#M31891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, Wes.&lt;/P&gt;&lt;P&gt;That worked very well except that I had to leave off the "del mxd_list" this time. Doing that the code created another empty "test1" PDF along with the other ones I wanted. Any thoughts as to why leaving off the "del mxd_list" and the empty "test1" PDF happened?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 16:48:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404909#M31891</guid>
      <dc:creator>anayoung</dc:creator>
      <dc:date>2015-08-06T16:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404910#M31892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure unless you ran it one time and it failed, then the "test1" may have been still in the list. I would try closing python completely down then reopening and adding back the &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;"del mxd_list" to see if it clears it up you may also want ti delete the already created set or add to the top of your code under the imports&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 17:13:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404910#M31892</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2015-08-06T17:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404911#M31893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay - it worked after I closed it down a few times and added the 'del mxd_list' back in.&lt;/P&gt;&lt;P&gt;Whew! Thanks again, Wes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 18:41:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404911#M31893</guid>
      <dc:creator>anayoung</dc:creator>
      <dc:date>2015-08-06T18:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Exporting Multiple Map Documents to PDF using Python</title>
      <link>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404912#M31894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Rebecca. That worked out well. Your help was much appreciated by this beginner.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 19:28:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/help-exporting-multiple-map-documents-to-pdf-using/m-p/404912#M31894</guid>
      <dc:creator>anayoung</dc:creator>
      <dc:date>2015-08-06T19:28:07Z</dc:date>
    </item>
  </channel>
</rss>

