ProductInfo

This ArcGIS 2.8 documentation has been archived and is no longer updated. Content and links may be outdated. See the latest documentation.

Summary

Returns the current product license.

Syntax

ProductInfo ()
Return Value
Data TypeExplanation
String
  • NotInitializedNo license set
  • ArcViewArcGIS Desktop Basic product license set
  • ArcEditorArcGIS Desktop Standard product license set
  • ArcInfoArcGIS Desktop Advanced product license set
  • EngineEngine runtime license set
  • EngineGeoDBEngine Geodatabase Update license set
  • ArcServerServer license set

Code sample

ProductInfo example

Returns the current product license.

import arcview
import arcpy

print(arcpy.ProductInfo()) # prints ArcView

Related topics