I want to avoid a long import like this:
from a.b.c.d.e import 1
from a.b.c.d.e import 2
Is it possible to create an alias of a.b.c.d.e ? or can we make it shorter ?
I have tried something which is not working:
import a.b.c.d.e as x
import x.1
import x.2