<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Spatial ETL Tools won't run &amp;quot;AttributeError: 'module' object has no attribute, etc.&amp;quot; in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567803#M44490</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problems automating when we run the FME workspaces via .bat file on Task Scheduler.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Mar 2020 14:23:14 GMT</pubDate>
    <dc:creator>ChrisRado</dc:creator>
    <dc:date>2020-03-19T14:23:14Z</dc:date>
    <item>
      <title>Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567788#M44475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a python script that runs 5 Spatial ETL tools that I wish to run as a scheduled task.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Each of the tools will run successfully from ArcCatalog and also from the ArcCatalog Command line.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I try to run the tools from the DOS window, as would be done via python script for a scheduled task, arcpy cannot find the tools, although it does load the toolbox.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the attached screenshot: 1) I open a cmd.exe window; 2) start python; 3) import arcpy; 4) Import my toolbox, which is verified as loaded on the next line; 5) Use arcpy.ListTools to see what tools are loaded. the result is "[]", meaning no tools are recognized from this tool box; 6) I use the same ListTools to show the Spatial Analyst tools that were loaded by import arcpy; 7) I attempt to execute one of the tools from my toolbox and forget a " (my mistake!); &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; I attempt to execute one of the tools from my toolbox and receive the message "AttributeError: 'module' object has no attribute 'CopyFeatureClass_newgpetl'".&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is preventing my tools from being recognized from the DOS CMD.EXE window while ArcCatalog and ArcCatalog Command Line can run them?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/legacyfs/online/2047_ToolsNotLoaded.PNG"&gt;&lt;IMG alt="ToolsNotLoaded.PNG" class="image-1 jive-image" height="502" src="https://community.esri.com/legacyfs/online/2047_ToolsNotLoaded.PNG" style="width: 620px; height: 344px;" width="904" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 15:45:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567788#M44475</guid>
      <dc:creator>ChrisRado</dc:creator>
      <dc:date>2014-07-15T15:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567789#M44476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just for anyone who comes across this same problem and searches out this discussion:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The key thing that I am missing (in this case) that causes the "AttributeError: 'module' object has no attribute..." is that I forgot to check out the Data Interoperability extension, with this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;arcpy.CheckOutExtension("DataInteroperability")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This fixed the problem on my local machine, but it did not fix the problem on our server. When I figure that out, I'll add a note about what it was to this discussion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2014 14:07:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567789#M44476</guid>
      <dc:creator>ChrisRado</dc:creator>
      <dc:date>2014-07-16T14:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567790#M44477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please share any results you may have.&amp;nbsp; I am not able to make this work even after executing (and verifying) the arcpy.CheckOutExtension("DataInteroperability") has checked out the extension.&amp;nbsp; We are getting the same AttributeError everyone else seems to be seeing on this problem.&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Kristi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2014 18:02:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567790#M44477</guid>
      <dc:creator>KristiBarry</dc:creator>
      <dc:date>2014-07-18T18:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567791#M44478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kristi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is why Spatial ETL Tools are NOT being recognized on the server- in our particular case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NIM09073:&lt;/P&gt;&lt;P&gt;"When calling a model with Python that contains a Data Interoperability Spatial ETL tool, the script will not run successfully from IDLE when Esri Production Mapping 10.1 is installed."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Spatial ETL Tools will not run if you have Workflow Manager (aka Esri Production Mapping) installed on the same machine. If I uninstall Workflow Manager and try the tools again, they become visible at the Windows command line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm assuming you have already been through:&lt;/P&gt;&lt;P&gt;1) Proper names for Toolbox Name (no spaces) and Toolbox Label (any crazy thing you want).&lt;/P&gt;&lt;P&gt;2) Adding an all lower case Toolbox Alias&lt;/P&gt;&lt;P&gt;3) Proper names for Tool Name (no spaces) and Tool Label (any crazy thing you want).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2014 18:10:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567791#M44478</guid>
      <dc:creator>ChrisRado</dc:creator>
      <dc:date>2014-07-22T18:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567792#M44479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting the same attribute error, even after adding the arcpy.CheckOutExtension("DataInteroperability") into the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error message.&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "G:\....\Scripts\ETL_mb_test5.py", line 21, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SpatialETLTool_test("G:\\....\\Source42015.gdb")&lt;/P&gt;&lt;P&gt;AttributeError: 'module' object has no attribute 'SpatialETLTool_test'&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the python script:&lt;/P&gt;&lt;P&gt;# Import arcpy module&lt;BR /&gt;import arcpy&lt;/P&gt;&lt;P&gt;# Load required toolboxes&lt;BR /&gt;arcpy.ImportToolbox("G:/..../testETLtool.tbx")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Check out extension&lt;/P&gt;&lt;P&gt;arcpy.CheckOutExtension("DataInteroperability")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Local variables:&lt;BR /&gt;Source42015_gdb = "G:\\.....\\Source42015.gdb"&lt;/P&gt;&lt;P&gt;# Process: SpatialETLTool&lt;BR /&gt;arcpy.SpatialETLTool_test("G:\\.......\\Source42015.gdb")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 16:20:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567792#M44479</guid>
      <dc:creator>SrijanaTuladhar</dc:creator>
      <dc:date>2015-05-18T16:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567793#M44480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have the Workflow Manager extension installed?&amp;nbsp; There is a known incompatibility fixed in 10.3.1 that results in Data Interoperability tools not being licensed when Workflow Manager is present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 16:31:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567793#M44480</guid>
      <dc:creator>BruceHarold</dc:creator>
      <dc:date>2015-05-18T16:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567794#M44481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bruce,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, I do not have Workflow Manager extension installed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 16:36:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567794#M44481</guid>
      <dc:creator>SrijanaTuladhar</dc:creator>
      <dc:date>2015-05-18T16:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567795#M44482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check you have an alias 'test' set for the Toolbox containing your ETL tool - that is the value indicated by your Python code.&amp;nbsp; If you do then you need to log a support call because something else is wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 16:43:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567795#M44482</guid>
      <dc:creator>BruceHarold</dc:creator>
      <dc:date>2015-05-18T16:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567796#M44483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok thanks. Yes, I just double checked, I have an alias 'test' for the Toolbox that contains the ETL tool. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 16:57:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567796#M44483</guid>
      <dc:creator>SrijanaTuladhar</dc:creator>
      <dc:date>2015-05-18T16:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567797#M44484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also having this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Workflow Manager and Production Mapping are not installed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Checked out extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Toolbox has alias, and model has name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runs from ModelBuilder and from python console in ArcCatalog 10.2.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;# Import arcpy module
&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;import &lt;/SPAN&gt;arcpy

&lt;SPAN style="color: #000080; font-weight: bold;"&gt;class &lt;/SPAN&gt;LicenseError(&lt;SPAN style="color: #000080;"&gt;Exception&lt;/SPAN&gt;):
&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000080; font-weight: bold;"&gt;pass
&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;
&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;try&lt;/SPAN&gt;:
&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000080; font-weight: bold;"&gt;if &lt;/SPAN&gt;arcpy.CheckExtension(&lt;SPAN style="color: #008000; font-weight: bold;"&gt;"DataInteroperability"&lt;/SPAN&gt;) == &lt;SPAN style="color: #008000; font-weight: bold;"&gt;"Available"&lt;/SPAN&gt;:
&amp;nbsp; arcpy.CheckOutExtension(&lt;SPAN style="color: #008000; font-weight: bold;"&gt;"DataInteroperability"&lt;/SPAN&gt;)
&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000080; font-weight: bold;"&gt;print &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;"Checked out &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;\"&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;DataInteroperability&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;\"&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt; Extension"
&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;else&lt;/SPAN&gt;:
&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000080; font-weight: bold;"&gt;raise &lt;/SPAN&gt;LicenseError
&lt;SPAN style="color: #000080; font-weight: bold;"&gt;except &lt;/SPAN&gt;LicenseError:
&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000080; font-weight: bold;"&gt;print &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;"Data Interoperability license is unavailable"
&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;except&lt;/SPAN&gt;:
&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000080; font-weight: bold;"&gt;print &lt;/SPAN&gt;arcpy.GetMessages(&lt;SPAN style="color: #0000ff;"&gt;2&lt;/SPAN&gt;)

&lt;SPAN style="color: #808080; font-style: italic;"&gt;# Load required toolboxes
&lt;/SPAN&gt;arcpy.ImportToolbox(&lt;SPAN style="color: #008000; font-weight: bold;"&gt;"C:/.../ETL.tbx"&lt;/SPAN&gt;)

&lt;SPAN style="color: #808080; font-style: italic;"&gt;# Script arguments
&lt;/SPAN&gt;Source = arcpy.GetParameterAsText(&lt;SPAN style="color: #0000ff;"&gt;0&lt;/SPAN&gt;)
&lt;SPAN style="color: #000080; font-weight: bold;"&gt;if &lt;/SPAN&gt;Source == &lt;SPAN style="color: #008000; font-weight: bold;"&gt;'#' &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;or not &lt;/SPAN&gt;Source:
&amp;nbsp; Source = &lt;SPAN style="color: #008000; font-weight: bold;"&gt;"C:&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;\\&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;...&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;\\&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;Source.gdb" &lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;# provide a default value if unspecified
&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;
&lt;/SPAN&gt;Destination = arcpy.GetParameterAsText(&lt;SPAN style="color: #0000ff;"&gt;1&lt;/SPAN&gt;)
&lt;SPAN style="color: #000080; font-weight: bold;"&gt;if &lt;/SPAN&gt;Destination == &lt;SPAN style="color: #008000; font-weight: bold;"&gt;'#' &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;or not &lt;/SPAN&gt;Destination:
&amp;nbsp; Destination = &lt;SPAN style="color: #008000; font-weight: bold;"&gt;"C:&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;\\&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;...&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;\\&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-weight: bold;"&gt;Destination.gdb" &lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;# provide a default value if unspecified
&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;
&lt;/SPAN&gt;FeatureTypes = arcpy.GetParameterAsText(&lt;SPAN style="color: #0000ff;"&gt;2&lt;/SPAN&gt;)
&lt;SPAN style="color: #000080; font-weight: bold;"&gt;if &lt;/SPAN&gt;FeatureTypes == &lt;SPAN style="color: #008000; font-weight: bold;"&gt;'#' &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;or not &lt;/SPAN&gt;FeatureTypes:
&amp;nbsp; FeatureTypes = &lt;SPAN style="color: #008000; font-weight: bold;"&gt;"Parcel_Project" &lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;# provide a default value if unspecified
&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;
&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;# Local variables:
&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;
&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;# Process: WalworthETL
&lt;/SPAN&gt;arcpy.WalworthETL_ETL(Destination, Source, FeatureTypes)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:27:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567797#M44484</guid>
      <dc:creator>ChrisBlinn1</dc:creator>
      <dc:date>2021-12-12T00:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567798#M44485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It turned out 64 bit background processing was installed. &amp;nbsp;Uninstalling this fixed the issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2017 22:39:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567798#M44485</guid>
      <dc:creator>ChrisBlinn1</dc:creator>
      <dc:date>2017-02-02T22:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567799#M44486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the same issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proper extensions are checked out and the correct toolbox is imported.&lt;/P&gt;&lt;P&gt;None of the problematic extensions are installed.&lt;/P&gt;&lt;P&gt;64 bit background processing is not installed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My command looks like this:&lt;/P&gt;&lt;P&gt;arcpy.SpatialETLTool_cdwdev(Driving_Distance_gdb, Destination_ODBC_3_x_Dataset_)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error message:&lt;/P&gt;&lt;P&gt;AttributeError: 'module' object has no attribute, 'SpatialETLTool_cdwdev'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My alias of cdwdev is set correctly.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 May 2017 14:31:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567799#M44486</guid>
      <dc:creator>Jim_Gay</dc:creator>
      <dc:date>2017-05-18T14:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567800#M44487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;did you evey figure this out? I have the same issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2020 19:41:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567800#M44487</guid>
      <dc:creator>StephanieRinguet2</dc:creator>
      <dc:date>2020-03-18T19:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567801#M44488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephanie,&lt;/P&gt;&lt;P&gt;This was the first thing that helped, which may or may not solve your problem:&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;EM&gt;The key thing that I am missing (in this case) that causes the "AttributeError: 'module' object has no attribute..." is that I forgot to check out the Data Interoperability extension, with this:&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;EM&gt;&lt;STRONG style="border: 0px; font-weight: bold;"&gt;arcpy.CheckOutExtension("DataInteroperability")&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;The other was that &lt;STRONG&gt;Workflow Manager could not be installed on the same server&lt;/STRONG&gt;.&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;We ended up just &lt;STRONG&gt;getting an upgrade to the full version of FME desktop ESRI Edition&lt;/STRONG&gt;. If you have the Data Interop extension you can get the upgrade for $800 from Safe Software:&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;A class="link-titled" href="https://www.safe.com/esri/arcgis-data-interoperability-extension/" title="https://www.safe.com/esri/arcgis-data-interoperability-extension/"&gt;ArcGIS Data Interoperability &amp;amp; FME Desktop Comparison&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Hope one of those options works out for you!&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2020 19:56:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567801#M44488</guid>
      <dc:creator>ChrisRado</dc:creator>
      <dc:date>2020-03-18T19:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567802#M44489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Chris for your answer!&lt;/P&gt;&lt;P&gt;Yes Data Interop extension is checked out, we don't have Workflow Manager installed on that server, and I am using the toolbos aliases in my script. Who knows what's going on, and apparently ESRI Tech Support is backed up during this coronavirus time, so I guess I may just have to launch my Spatial ETL toll manually for teh time being. Thanks for sharing the upgrade option, I'll bring this up to my manager! I'm taking that you haven't had any issues automating tools with the full FME version?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 14:14:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567802#M44489</guid>
      <dc:creator>StephanieRinguet2</dc:creator>
      <dc:date>2020-03-19T14:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567803#M44490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problems automating when we run the FME workspaces via .bat file on Task Scheduler.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 14:23:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567803#M44490</guid>
      <dc:creator>ChrisRado</dc:creator>
      <dc:date>2020-03-19T14:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567804#M44491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Convincing argument! Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 14:27:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/567804#M44491</guid>
      <dc:creator>StephanieRinguet2</dc:creator>
      <dc:date>2020-03-19T14:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: Spatial ETL Tools won't run "AttributeError: 'module' object has no attribute, etc."</title>
      <link>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/1331131#M68718</link>
      <description>&lt;P&gt;Has anyone been able to get this to work? Works fine when runnining is VS Code and ArcGIS Pro, but cannot get it working on ArcGIS Enterprise (10.8.1).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2023 16:09:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-etl-tools-won-t-run-quot-attributeerror/m-p/1331131#M68718</guid>
      <dc:creator>HalilSiddique</dc:creator>
      <dc:date>2023-09-21T16:09:17Z</dc:date>
    </item>
  </channel>
</rss>

