Solved
Forum Discussion
Colin_McCrae
9 years agoCommunity Hero
urllib and urllib2 are standard libraries aren't they? Should come bundled with Python.
Assuming you mean install rather than import ....
- Colin_McCrae9 years agoCommunity Hero
Ah.
Sorry.
Python 2.7 guy here.
Apparently those libraries have changed in Python 3 ...
http://stackoverflow.com/questions/2792650/python3-error-import-error-no-module-name-urllib2
- vikram_u_k9 years agoContributor
yes.. i meant to Install additional packages.
Thank you for the Inputs.
- baxatob9 years agoCommunity Hero
No need to install anything in this case.
As Colin_McCrae said just use
from urllib.request import what_you_need
urllib.request and urllib.error libraries are native also for Python 3