Python Forum
Organizing tips - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Organizing tips (/thread-8213.html)



Organizing tips - Demini - Feb-10-2018

Does anyone have a reference for proficient organizing?


RE: Organizing tips - metulburr - Feb-10-2018

What exactly are you asking for?

packages?
https://docs.python.org/3/tutorial/modules.html
https://docs.python.org/3/tutorial/modules.html#packages

use docstrings in everything, modules, classes, methods/functions, etc. Program for re-usability, etc.

tutorials on this forum related to organization are my pygame tutorials whihc start from a simple window creation to organizing different moduels/classes, etc. Part 1-8. But its more geared toward the person interested in making a game, not organization.