Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Another fairly common request from Python programmers is the ability to import modules and module attributes into your program using names other than their original given names. One common workaround is to assign the module name to a variable:
>>> import longmodulename >>> short = longmodulename >>> del longmodulename