Difference between ‘Directory’ and ‘Python Package’ in PyCharm
When to use Directory over Python Package? You can use “Python Package” when you want to put some modules in there which should be importable. PyCharm will automatically create an __init__.py for the directory. Why not create everything as a Python Package? Not every subdirectory in a project should necessarily be a package. For example … Read more