I have a Bottle webserver module with the following line:
from foobar.formtools import auto_process_form_insert
And the foobar.formto
foobar.formto
Don't do from ... import .... Just do import ... and reference its objects using the module name.
from ... import ...
import ...