python_modules_and_packages

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
python_modules_and_packages [2017/10/19 18:57] mguptonpython_modules_and_packages [2017/10/25 12:33] (current) – [Example] mgupton
Line 12: Line 12:
 hello() hello()
 </code> </code>
 +
 +Directory named //foo// contains empty file named //__init.py__// and file named //bar.py//. The file contains the function //hello//.
 +
 +General scheme
 +<code>
 +from <package>.<sub package>.<module> import <function/class>
 +</code>
 +
 +The //__init__.py// could contain the following import statement.
 +
 +<code>
 +from <package>.<module> import <function/class>
 +</code>
 +
 +Which would allow the module to be imported into other modules with the following import statement that imports directly from the package and not the module.
 +
 +<code>
 +from <package> import <function/class>
 +</code>
 +
  • python_modules_and_packages.1508439457.txt.gz
  • Last modified: 2017/10/19 18:57
  • by mgupton