ListToolboxes (arcpy)

Resumen

Lists the geoprocessing toolboxes, limited by name.

Sintaxis

ListToolboxes ({wild_card})
ParámetroExplicaciónTipo de datos
wild_card

The wild_card limits the results returned. If no wild_card is specified, all values are returned.

String
Valor de retorno
Tipo de datosExplicación
String

The list returned from the function containing geoprocessing toolbox names, limited by the optional wild card.

Ejemplo de código

ListToolboxes example

Lists specified toolboxes.

import arcpy

# Get and print a list of all toolboxes.
toolboxes = arcpy.ListToolboxes()

for toolbox in toolboxes:
    print(toolbox)

Temas relacionados

4/26/2014