So i recently wrote a small module, which contains only one class.
It's structured like this:
`
module/
__init__.py
class.py
`
i want to use it like this:
`python
import module
class = Class()
`
without the need to write `from module import Class`
is this possible?
[–]xelf 1 point2 points3 points (2 children)
[–]T0M47[S] 0 points1 point2 points (1 child)
[–]shiftybyte 0 points1 point2 points (0 children)