I am trying to import a module from a package set up as per instructions from Modules Python Tutorial. My directory tree is:
$ pwd
/home/me/lib/python/pygplib
$ ls *
__init__.py
atcf:
atcf.py __init__.py
I am able to import pygplib but pygplib.atcf does not seem to exist:
In [1]: import pygplib
In [2]: dir(pygplib)
Out[2]: ['__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__']
What am I doing wrong? All my __init__.py files are blank. Thank you.
atcf is not imported automatically into the pygplib namespace, but you can arrange for this to happen by putting
import atcf
in pygplib/__init__.py.
Submodules don't get imported when you import the top package, and thus don't appear in dir. Instead, do
from pygplib import atcf
Or
from pygplib.atcf import atcf
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With