Saya memiliki skrip .pyt (python toolbox) yang besar dan sekarang saya mencoba membaginya menjadi banyak file (1 file - 1 alat).
Dalam satu file .pyt semuanya berfungsi dengan baik, tetapi ketika file dipisahkan saya mendapatkan pesan ini: AttributeError: objek 'modul' tidak memiliki atribut 'Parameter'.
Struktur file:
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
jelas.
Kesalahan saya:
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
sumber
sumber
Jawaban:
Ini mungkin bukan penyebab bagi semua orang, tetapi saya telah mengidentifikasi setidaknya satu set pemicu.
Jika semua di atas benar, alat Python toolbox akan menampilkan
AttributeError: 'module' object has no attribute 'Parameter'
pengecualian.Menghapus riwayat (atau tidak mencatatnya sama sekali) akan menghindari masalah, mungkin mengapa saya tidak melihat ini sebelumnya karena saya jarang menyimpan riwayat saya.
Mengklik kanan pada kotak alat dan menggunakan refresh akan menghapus kesalahan, tetapi itu akan muncul lagi di masa depan selama daftar di atas tetap benar. Namun, jika alat mengimpor kelas alat dari file alat terpisah (seperti kasus di atas) refresh tidak akan cukup. Untuk itu, saya harus memaksanya dengan memasukkan
reload
dalam .pyt, dan kemudian refresh pada toolbox akan menghapus kesalahan.sumber