arcpy.ListTools - label, description

2364
2
01-06-2016 07:35 AM
MiroslavVálek
New Contributor

I can't find solution for print label or decription of tools from tbx toolboxes.

I need a copy list of tool's labels to documation (I have got a 84 tools) and in ArcCatalog is impossible a select all of them and copy labels. If I try use python I can print only name of tool, which is different in my case.

Thank you for tips

Mira

Tags (2)
0 Kudos
2 Replies
DanPatterson_Retired
MVP Emeritus

There is limited information other than

arcpy.Useage Usage—Help | ArcGIS for Desktop

and some of the examples therein

import arcpy
print(arcpy.Buffer_analysis.__doc__)

curtvprice
MVP Esteemed Contributor
0 Kudos