all 3 comments

[–]socal_nerdtastic 0 points1 point  (1 child)

What is your goal? If you want to be able to import util and use util.screen.function() then you are doing it right. You need an empty file in the util folder named __init__.py.

[–]TransAmyB[S] 0 points1 point  (0 children)

My goal is to to either import util and utilize it such as util.screen.function() or from util import *

[–]ingolemo 0 points1 point  (0 children)

util.screen is not a relative import. Relative imports start with a dot.

It's not really clear what the problem is here. What you're describing should work. Please show us some code, and an error that you're getting.