If I do this:
import lxml
in python, lxml.html is not imported. For instance, I cannot call the lxml.html.parse() function. Why is this so?
|
If I do this:
in python,
| |||
|
feedback
|
|
Importing a module or package in Python is a conceptually simple operation:
If none of those steps imported sub-packages, then those sub-packages aren't available. If they did import sub-packages, then they are available. Package authors can do as they wish. | |||
|
feedback
|
|
| |||
|
feedback
|
|
It's by design. The package has the option to import the nested package in its | |||
|
feedback
|
|
This is to allow only the minimum amount of code to have to be loaded for multi-part libraries that you may not use the entirety of. For instance, you might not be using the | |||
|
feedback
|
|
As to why this is, well, that's a question for the BDFL. I think it's probably because packages are generally quite large, and importing all the submodules would be an excessive performance penalty. | |||
|
feedback
|
import osallows you to useos.path.whateverin your code. So, it's up to the module author. – Greg Hewgill Feb 15 at 23:34