Finding Modules Python looks for modules on a module search path Default path includes Python library location and current directory Path can be modified: When Python is started (command line arg, env var) Dynamically by the script itself (sys.path) Related modules can be grouped into directory structured packages from OpenGL.GL import * from OpenGL.GLUT import *