I have a hello1 package that contains good.py module.
hello1 ├── __init__.py └── good.py
The init module has a variable
From Python: import the containing package:
Importing __init__ seems to work fine.
__init__
import __init__ class Good(object): def __init__(self): print hello1.A