CheckProduct
Zusammenfassung
Checks to see if the requested license is available.
Syntax
CheckProduct(product)
| Parameter | Erläuterung | Datentyp |
|---|---|---|
|
product |
Product code for the product being checked.
|
String |
Rückgabewert
| Datentyp | Erläuterung |
|---|---|
|
String |
There are five possible return values for
|
Codebeispiel
Check to see if an ArcGIS Desktop Advanced license is available.
import sys
import arcpy
arcpy.env.workspace = "c:/data/world.gdb"
if arcpy.CheckProduct("ArcInfo") == "Available":
arcpy.management.PolygonToLine("Lakes", "LakeLines")
else:
msg = 'ArcGIS for Desktop Advanced license not available'
print(msg)
sys.exit(msg)