import arcpy out_folder_path = "C:/output" out_name = "fGDB.gdb" arcpy.CreateFileGDB_management(out_folder_path, out_name) print("Job Finished")
When running the translation, FME hangs indefinitely at this point :
Using user-specified Python interpreter from C:\WINDOWS\system32\python27.dll Python version 2.7 successfully loaded FME_BEGIN_PYTHON: evaluating python script from string...
If I remove the arcpy CreateFileGDB_management function but leave the arcpy import, everything is fine and I see the "Job Finished" string in the console. I tried just setting up arcpy.env.workspace instead of creating a new fgdb, but it hangs there as well.
Anyone knows what's going on? Thanks a lot!