-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
50 lines (45 loc) · 1.42 KB
/
mkdocs.yml
File metadata and controls
50 lines (45 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
site_name: Python by Example
repo_url: https://github.com/braboj/tutorial-python
site_dir: site
docs_dir: docs
theme:
name: readthedocs
collapse_navigation: true
plugins:
- search
- awesome-pages
nav:
- Language:
- Introduction: A01_introduction.md
- Variables: A02_variables.md
- Comments: A03_comments.md
- Operators: A04_operators.md
- User Input: A05_user_input.md
- Strings: A06_strings.md
- Control Flow: A07_control_flow.md
- Functions: A08_functions.md
- Classes: A09_classes.md
- Modules: A10_modules.md
# - Exceptions: A11_exceptions.md
# - Decorators: A12_decorators.md
# - Iterators: A13_iterators.md
# - Context Managers: A14_context_managers.md
# - Dunder Methods: A15_dunder_methods.md
# - Lambda Functions: A16_lambda_functions.md
# - Generators: A17_generators.md
# - Coroutines: A18_coroutines.md
# - Comprehensions: A19_comprehensions.md
# - Type Hints: A20_type_hints.md
# - Metaclasses: A21_meta_classes.md
- Design:
- OOP Basics: B01_oop_pillars.md
- SOLID Principles: B02_solid_principles.md
- Design Patterns: B03_design_patterns.md
- Secure Design: B04_secure_design.md
- Libraries:
- Logging: C01_logging.md
- Threading: C02_threading.md
- Miltiprocessing: C03_multiprocessing.md
- concurrent: C04_concurrent.md
- Serialization: C12_serialization.md
- Data Structures: C13_data_structures.md