__init__.py - what in the world is it for?
It’s very common when looking into python code, to see some inti.py files around. Most of the times you will see them empty, many times you will se imports or more generic stuff and sometimes a bunch of code in there. If you for example check some django code, say models, you’ll see more than you would initially expect. So, what exactly is init.py for? Let’s check the docs: The init....