File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
Structuring Your Project
2
2
========================
3
3
4
- Structuring your project properly is extremely important.
4
+ When we say structure we mean the decisions you make concerning
5
+ how your project best meets its objective. We need to consider how to
6
+ best leverage Python's features to create clean, effective code.
7
+ In practical terms structure means the actual files and folders that
8
+ comprise your project as well as the way dependencies are handled within
9
+ the code itself.
10
+
11
+ How does data flow through the project? What features and functions
12
+ can be grouped together and isolated? By answering questions like these
13
+ you can begin to plan, in a broad sense, what your finished product will
14
+ look like.
15
+
16
+ In this section we take a closer look at Python's module and import
17
+ systems as they are the central element to enforcing structure in your
18
+ project.
5
19
6
- .. todo :: Fill in "Structuring Your Project" stub
7
20
8
21
Structure is Key
9
22
----------------
You can’t perform that action at this time.
0 commit comments