console
console copied to clipboard
Exported utils module in __init__.py
The utils module of console is mentioned in a stackoverflow answer about waiting for key presses, but it's actually not exported outside the package so it's unusable :P
Probably this article here.
Huh? Modules don't need to be exported in Python, init imports are usually just done for convenience of importing without the (sub)module name.
>>> import console.utils
>>>
>>> from console import utils
>>>
>>> utils.wait_key()
'y'
Does this not work for you? Would like to see the error, maybe in an issue/bug.
Thanks for your interest.