python geoprocessing and licenses

664
3
09-26-2011 07:33 AM
FrankVignati
Occasional Contributor II
currently our office uses an arcinfo license on users workstations primarily as we are constantly editing sde data, but to add more users we want to use arcview licenses more
is there a reference for what geoprocesssing tools can be accessed with python using an arcview license? are there any issues to using an arcview license to run python geprocessing tools?
Tags (2)
0 Kudos
3 Replies
KevinHibma
Esri Regular Contributor
Tools follow the same license level regardless of where you execute them (ArcMap or Python).

Within the help if you look just inside each toolbox, there is a breakdown of how the tools are licensed.
For example, see the Data Management toolbox.
http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Data_management_toolbox_licensing/0017...
0 Kudos
FrankVignati
Occasional Contributor II
thank you
is it necessary to call the product in all scripts; import arcview or import acinfo?

if arcpy.ProductInfo() == "ArcView":
  import arcview
elif arcpy.ProductInfo() == "ArcInfo":
  import arcinfo
0 Kudos
KevinHibma
Esri Regular Contributor
I'd give a quick read of this topic:
http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Accessing_licenses_and_extensions_in_P...

Basically it states that unless you explicitly set the license level in the script, it will try to obtain/use the highest license level available.
0 Kudos