File Structure:
device
   device.py
   __init__.py
__init__.py contains just one line:
from device import *
device.py just has a bunch of functions, and I want to include all of them with
from device import *, except I have to use from device.device import * after pip installing. 
How can I get rid of the extra scope so it's just from device import *?
 
     
    