Python "from [dot]package import ..." syntax
Possible duplicate: What does a . in an import statement in Python mean?
The .
is a shortcut that tells it to search in the current package before the rest of the PYTHONPATH
. So, if a same-named module Recipe
exists somewhere else in your PYTHONPATH
, it won't be loaded.