I have an incorrectly packaged Python module. It has only a __init__.pyfile in a directory. This file defines the class that I want to use. What would be the best way to use it as a module in my script?
** EDIT **
The folder name had a period (.). Therefore, the methods proposed here did not work. It works fine if I rename the folder to have a valid name.
source
share