<?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: Python toolbox - check for nested group layers, and 2 more ?'s in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135586#M10638</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greg, for what it's worth, check out my &lt;A href="https://community.esri.com/migration-blogpost/55043"&gt;Python addin for data inventory and “broken-link” repair.&lt;/A&gt; &lt;/P&gt;&lt;P&gt;I've had to deal with a lot of the same issues you had with groups, etc.&amp;nbsp; To keep my files unique, I append the name with a datetime.&amp;nbsp; I also write out to a .csv and a report, with an option for a FGDB (but never found a reason for it for my broken-link list).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had some other tools on this toolbar, but decided to simplify is for sharing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Oct 2015 17:06:10 GMT</pubDate>
    <dc:creator>RebeccaStrauch__GISP</dc:creator>
    <dc:date>2015-10-07T17:06:10Z</dc:date>
    <item>
      <title>Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135585#M10637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a python toolbox which crawls directories, or optionally a single mxd, and writes out various properties of the layers in them to a csv file, mostly interested in the data source. This works great, except...,.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I check for group layers to skip those. The tool does skip top level group layers, but not group layers nested in other group layers. How can I skip those?&lt;/LI&gt;&lt;LI&gt; I originally set a default location and file name for the output csv file, which the user can change. This works if the file doesn't already exist, but if it does, that parameter gets a big red X when the tool is run. The file is set to 'w', so I assumed it would just overwrite the existing file. Is it possible to do what I thought would happen?&lt;/LI&gt;&lt;LI&gt; In the self.description in the __init__ function, I'd like to break the text on different lines and paragraphs. But no matter how many \n's I add, the tool ignores them when run, and collapses the text into one block. Is there a way to accomplish this?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Thanks, relevant code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;for mxd_path in mxd_list:
&amp;nbsp;&amp;nbsp;&amp;nbsp; try:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd = arcpy.mapping.MapDocument(mxd_path)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dflist = arcpy.mapping.ListDataFrames(mxd)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for df in dflist:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for lyr in arcpy.mapping.ListLayers(mxd, '', df):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if not lyr.isGroupLayer:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; nm = lyr.name
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ds = '-- X --'
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.supports('dataSource'):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ds = lyr.dataSource
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr_attributes = [mxd_path, nm, ds]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; writer.writerow(lyr_attributes)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if not lyr.isGroupLayer:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage('\nLayer {0} does not support the dataSource property'.format(nm))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; unsupported.append(nm)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lngnm = lyr.longName
&amp;nbsp;&amp;nbsp;&amp;nbsp; except Exception as e:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddError('EXCEPTION: {0}\t{1}\t{2}'.format(mxd_path, lngnm, e))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; continue
&amp;nbsp;&amp;nbsp;&amp;nbsp; writer.writerow([''])
&amp;nbsp;&amp;nbsp;&amp;nbsp; del mxd&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:33:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135585#M10637</guid>
      <dc:creator>Zeke</dc:creator>
      <dc:date>2021-12-11T07:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135586#M10638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greg, for what it's worth, check out my &lt;A href="https://community.esri.com/migration-blogpost/55043"&gt;Python addin for data inventory and “broken-link” repair.&lt;/A&gt; &lt;/P&gt;&lt;P&gt;I've had to deal with a lot of the same issues you had with groups, etc.&amp;nbsp; To keep my files unique, I append the name with a datetime.&amp;nbsp; I also write out to a .csv and a report, with an option for a FGDB (but never found a reason for it for my broken-link list).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had some other tools on this toolbar, but decided to simplify is for sharing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2015 17:06:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135586#M10638</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-10-07T17:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135587#M10639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rebecca, will take a look after lunch!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2015 17:34:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135587#M10639</guid>
      <dc:creator>Zeke</dc:creator>
      <dc:date>2015-10-07T17:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135588#M10640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rebecca,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm able to use the tools from the toolbox, but the toolbar doesn't appear properly (image below). The tools themselves don't from there either, so it doesn't seem like links to the icon images being broken is the problem. Any ideas? Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Oct 2015 20:09:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135588#M10640</guid>
      <dc:creator>Zeke</dc:creator>
      <dc:date>2015-10-08T20:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135589#M10641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greg, you didn't attach an image to your last reply.&lt;/P&gt;&lt;P&gt;Are you missing the tool buttons on my addin or on yours? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW - I'm working on a new version on my addin that exits cleaner if no mxd's are in the olders/subfolders, has better status checking thru procesing (x of y remaining message), now handles FGDB-standalone-tables, and fixes a flukey isCoverage test for my arctic_circle.shp (false positive with "\arc" as part of the name).&amp;nbsp; Just an fyi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Oct 2015 20:20:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135589#M10641</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-10-08T20:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135590#M10642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rebecca. The icons are showing up today (??), I'll check them out. When you update the addin, you may want to check the tooltip for 2 - Inventory. There are a couple of typos.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2015 12:40:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135590#M10642</guid>
      <dc:creator>Zeke</dc:creator>
      <dc:date>2015-10-09T12:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135591#M10643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Greg. It doesn't surprise me that there are typos In the help/tooltips, etc.&amp;nbsp; I throw quick notes in and I'm forget to go back and clean things up. I need to go thru to clean things up and add more details.&amp;nbsp; I'm also kind of a hack (vs a hacker) when it comes to scripts....that is, not always pretty, but I just try to get it to work.&amp;nbsp; However, I do try to include many comments&amp;nbsp; (typos and all &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/laugh.png" /&gt;).&amp;nbsp; [note...many Geonet typos by me can be blamed on the iPad trying to second guess me....or just bad typing]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had another tool the was that allowed a global drive change (e.g. &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; to F:, or &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; to a UNC) and then ran the broken link list again, but, although this worked, I decided that was a bit too broad a change and could creat new issues. I decided to only include a more controlled version with the fix links (4) script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure how far along with you script, but I had already been thinking about doing a complete mxd TOC inventor (not just broken links), and don't think it would be hard to change 3a to do this.&amp;nbsp; I thought that would be a good addition to the toolbar.&amp;nbsp; Not sure how detailed you were planning to get with your tool, but I'm hoping to add additional functionality to the addin, so if it something you want to share for that, let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(note for those wondering what the 3a, 4, etc that I refer to....that is part on my script name In my addin...make it convenient for me 1) for me to know the order I usually run, and 2) sorts nice in my file-explorer and Wing projects.)&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2015 15:38:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135591#M10643</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-10-09T15:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135592#M10644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure, I'll share my script. I have two versions, one as a plain script tool, one as a python toolbox. I'm not sure how to post or send it, though, other than as an attachment to a post here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2015 19:02:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135592#M10644</guid>
      <dc:creator>Zeke</dc:creator>
      <dc:date>2015-10-09T19:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135593#M10645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I followed you, so you can send me a direct message with the attachment if you would like, or post it here.&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2015 22:34:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135593#M10645</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-10-09T22:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135594#M10646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't see a way to upload files, either in this box or thr message box. Only options are images or video. I suppose I could copy and paste the code, might be a little long though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 12:34:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135594#M10646</guid>
      <dc:creator>Zeke</dc:creator>
      <dc:date>2015-10-12T12:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135595#M10647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;​you need to be outside of the Geonet inbox...just open the message in a new tab.&amp;nbsp; When you reply, in the upper right, there should be a "used advanced editor". Select that, and then there should be an attach icon in lower right corner .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to do a direct message, if we follow each other, then there will be a message option for you if you view my profile. There is a pull down version usually if you hover over my avatar too, but I do t see that right now on my device.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 14:12:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135595#M10647</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-10-12T14:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135596#M10648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here you go.Didn't see an Advanced Editor on the direct message box.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 15:16:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135596#M10648</guid>
      <dc:creator>Zeke</dc:creator>
      <dc:date>2015-10-12T15:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135597#M10649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&amp;nbsp; I'll take a look at it later this week.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the confusion in the last message.&amp;nbsp; There isn't an attach on the DM.&amp;nbsp; That was if we needed to take it offline with direct emails.&amp;nbsp; (not enough coffee yet for a Monday morning)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Oct 2015 15:24:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135597#M10649</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-10-12T15:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Python toolbox - check for nested group layers, and 2 more ?'s</title>
      <link>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135598#M10650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;Unfortunately, I didn't have much luck with your tools. After I fixed the source tot he python script, I ran it thru the Utilities toolbox and it said it ran successfully, but the .csv was never created. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The PyUtilities tool created the .csv file, but never seemed to finish, so I ended up cancelling it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So unfortunately, I can't use either tool directly, but I do like some of your streamlined coding.&amp;nbsp; Mine tends to get long, so I'm going to look to see if I can swipe any of your code to merge into mine.&amp;nbsp; Thanks for sharing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Oct 2015 21:43:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-toolbox-check-for-nested-group-layers-and-2/m-p/135598#M10650</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-10-20T21:43:18Z</dc:date>
    </item>
  </channel>
</rss>

