Eu tenho um grande script .pyt (python toolbox) e agora estou tentando dividi-lo em muitos arquivos (1 arquivo - 1 ferramenta).
No único arquivo .pyt tudo funciona perfeitamente, mas quando o arquivo é dividido, recebo a seguinte mensagem: AttributeError: o objeto 'module' não tem atributo 'Parameter'.
Estrutura dos arquivos:
My Catalog:
-- toolbox.pyt
-- toolpackage:
---- configurator.py
---- __init__.py
toolbox.pyt:
# This Python file uses the following encoding: utf-8
import arcpy
from toolpackage.configurator import ToolboxConfigurator
class Toolbox(object):
def __init__(self):
"""Define the toolbox (the name of the toolbox is the name of the .pyt file)."""
self.label = "label"
self.alias = "Tools"
# List of tool classes associated with this toolbox
self.tools = [ToolboxConfigurator]
configurator.py:
# This Python file uses the following encoding: utf-8
import arcpy
class ToolboxConfigurator(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = u"config"
self.description = u""
self.canRunInBackground = False
def getParameterInfo(self):
"""Define parameter definitions"""
new_config_file = arcpy.Parameter(
displayName = u"?",
name = "new_config_file",
datatype = "GPBoolean",
parameterType = "Optional",
direction = "Input")
parameters = [new_config_file]
return parameters
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation
is performed. This method is called whenever a parameter has been changed."""
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool
parameter. This method is called after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
__init__.py
está claro.
Meu erro:
Traceback (most recent call last):
File "C:\tools_v4\toolpackage\configurator.py", line 15, in getParameterInfo
new_config_file = arcpy.Parameter(
AttributeError: 'module' object has no attribute 'Parameter'
arcpy
python-toolbox
attributeerror
Vladimir Ivanov
fonte
fonte
Respostas:
Isso pode não ser a causa de todos, mas identifiquei pelo menos um conjunto de gatilhos.
Se tudo isso for verdade, a ferramenta Python toolbox mostrará a
AttributeError: 'module' object has no attribute 'Parameter'
exceção.Limpar o histórico (ou não registrá-lo) evitará o problema, provavelmente por que eu não vi isso antes, pois raramente guardo meu histórico.
Clicar com o botão direito do mouse na caixa de ferramentas e usar a atualização limpará o erro, mas ele será exibido novamente no futuro enquanto a lista acima permanecer verdadeira. No entanto, se a ferramenta estiver importando a classe de ferramenta de um arquivo de ferramenta separado (como no caso acima), uma atualização não será suficiente. Para isso, precisei forçar a inclusão de um
reload
no .pyt e, em seguida, uma atualização na caixa de ferramentas limpará o erro.fonte