I have two files. SysDump.py which does from libApi import _SysDump
and in the other file libApi.py I have many classes and one of them is
class _SysDump():
import cPickle as _cPickle
import math as _math
from zipfile import ZipFile as _ZipFile
import re as _re
the problem is the import in SysDump not only sees the _SysDump in libApi.py but other classes too!! How can I prevent it from seeing inside the other classes?
Python 2.6. Yes I do have a __init__.py
. Can it in any way help bring the privacy I am hoping for?