Is there a way of importing arcpy during the launch of my custom built application so that any usage of arcpy methods after the fact won't require the 3-4 seconds that it takes to import the arcpy module?
I am using wxPython for my GUI library if that helps. Preferably, the import would be done right after the MainLoop() launch of my GUI. This would lock up the GUI for a few seconds, but I can mitigate user experience issues with a busyinfo message or the like.