Python searches module files as follows:
PYTHONPATH=c:\pycode\utilities;d:\pycode\package1
Or you might instead create a text file called C:\Python33\pydirs.pth, which looks like this:
c:\pycode\utilities d:\pycode\package1
To see how your Python configures the module search path on your platform, you can always inspect sys.path.
import sys print( sys.path )