Python 3.5.1 urllib has no attribute request

According to this, you have to use the following:

import urllib.request

The reason is:

With packages, like this, you sometimes need to explicitly import the piece you want. That way, the urllib module doesn’t have to load everything up just because you wanted one small part.

Leave a Comment