Instead of importing entire modules everywhere: import foo Import specific things from each module: from foo import SpecificFoo This makes the code shorter and easier to read later on: instead of "foo.SpecificFoo" we can just use "SpecificFoo"