J'ai un gros script .pyt (boîte à outils python) et maintenant j'essaie de le diviser en plusieurs fichiers (1 fichier - 1 outil).
Dans un seul fichier .pyt, tout fonctionne parfaitement, mais lorsque le fichier est divisé, je reçois ce message: AttributeError: l'objet 'module' n'a pas d'attribut 'Parameter'.
Structure des fichiers:
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 clair.
Mon erreur:
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'