December 2015
Beginner to intermediate
350 pages
6h 49m
English
When we create a new Python project using the PyDev plugin for the Eclipse IDE, it automatically creates a __init__.py module. We can also create it ourselves manually when not using Eclipse.
The __init__.py module is usually empty and then has a size of 0 kilobytes.
We can use this usually empty module to connect different Python modules by entering code into it. This recipe will show how to do this.
We will create a new GUI similar to the one we created in the previous recipe.
As our project becomes larger and larger, we naturally break it out into several Python modules. Using a modern IDE such as Eclipse, it is surprisingly complicated to find modules that are located in different ...