Control license behavior

The isLicensed method is an optional method that can be used to check if a script tool is licensed to execute. It can be used to restrict the tool from being run if the appropriate licenses and extensions required to run other geoprocessing tools used by the script tool are not available.

Si la méthode isLicensed renvoie False, l'outil ne peut pas être exécuté. Si la méthode renvoie True ou qu'elle n'est pas utilisée, l'outil peut être exécuté.

def isLicensed(self):
    """Allow the tool to execute, only if the ArcGIS 3D Analyst extension 
    is available."""
    try:
        if arcpy.CheckExtension("3D") != "Available":
            raise Exception
    except Exception:
        return False  # tool cannot be executed

    return True  # tool can be executed

Rubriques connexes