GetInstallInfo (arcpy)
Zusammenfassung
The GetInstallInfo function returns a Python dictionary that contains information on the installation type properties.
Syntax
GetInstallInfo ()
Datentyp | Erläuterung | ||||||||||||||||||||||||
Dictionary |
The function returns a Python dictionary containing the properties of the installation.
|
Codebeispiel
GetInstallInfo example
Return installation information on the ArcGIS for Desktop installation.
import arcpy
# Use the dictionary iteritems to iterate through
# the key/value pairs from GetInstallInfo
for key, value in arcpy.GetInstallInfo("desktop").iteritems:
# Print a formatted string of the install key and its value
#
print "%-13s: %s" % (key, value)
Verwandte Themen
9/11/2013