I am using PyDev to develop some Python software.
My environment is Anacondas, Python 3.3
Just now, I wanted to use the cookiejar module.
The online tutorials state that I need to import the module using
import cookiejar
However, that did not work. After searching through my files, I discovered that I needed to use:
import http.cookiejar
I am pretty sure that I am not supposed to have to search through my file system in order to find a module. What is the correct way to do this?