Early versions of eutils required importing submodules (e.g., import eutils.client). 0.4 introduced a single interface (import eutils or from eutils import ...), and included a warning in the release notes that submodule imports would be removed in 0.5.
For this issue, move all submodules to _internal and update existing imports appropriately.
Early versions of eutils required importing submodules (e.g.,
import eutils.client
). 0.4 introduced a single interface (import eutils
orfrom eutils import ...
), and included a warning in the release notes that submodule imports would be removed in 0.5.For this issue, move all submodules to
_internal
and update existing imports appropriately.