|
1 | 1 | site_name: Python by Example |
| 2 | +repo_url: https://github.com/braboj/tutorial-python |
| 3 | +site_dir: site |
2 | 4 | docs_dir: docs |
3 | 5 |
|
4 | 6 | theme: |
|
8 | 10 | plugins: |
9 | 11 | - search |
10 | 12 | - awesome-pages |
| 13 | + |
| 14 | +nav: |
| 15 | + - Project: |
| 16 | + - Home: project/index.md |
| 17 | + |
| 18 | + - Examples: |
| 19 | + - Introduction: examples/01_hello_world.md |
| 20 | + - Variables: examples/02_variables.md |
| 21 | + - Comments: examples/03_comments.md |
| 22 | + - Operators: examples/04_operators.md |
| 23 | + - User Input: examples/05_user_input.md |
| 24 | + - Control Flow: examples/06_control_flow.md |
| 25 | + - Functions: examples/07_functions.md |
| 26 | + - Classes: examples/08_classes.md |
| 27 | + - Docstrings: examples/09_docstrings.md |
| 28 | + - Debugging: examples/10_debugging.md |
| 29 | + - Logging: examples/13_logging.md |
| 30 | + - OOP Pillars: examples/11_oop_pillars.md |
| 31 | + - SOLID Principles: examples/12_solid_principles.md |
| 32 | + - Design Patterns: examples/21_design_patterns.md |
| 33 | + - Exceptions: examples/14_exceptions.md |
| 34 | + - Dunder Methods: examples/15_dunder_methods.md |
| 35 | + - Import System: examples/17_import_system.md |
| 36 | + - Lintinig Tools: examples/18_linting_tools.md |
| 37 | + - Test Frameworks: examples/19_test_frameworks.md |
| 38 | + - Package Managers: examples/20_package_managers.md |
| 39 | + - Data Structures: examples/16_data_structures.md |
| 40 | + - Concurrency: examples/22_concurrency.md |
| 41 | + - Meta Classes: examples/23_meta_classes.md |
| 42 | + - Generators: examples/24_generators.md |
| 43 | + - Coroutines: examples/25_coroutines.md |
| 44 | + - Garbage Collection: examples/26_garbage_collector.md |
| 45 | + - Weakref: examples/27_weakref.md |
| 46 | + - Optimization: examples/28_optimization.md |
| 47 | + - Packaging: examples/29_packaging.md |
| 48 | + - Compatibility: examples/30_compatibility.md |
| 49 | + - Tracing: examples/31_tracing.md |
| 50 | + - Profiling: examples/32_profiling.md |
| 51 | + - Inspections: examples/33_inspections.md |
| 52 | + - Extensions: examples/34_extensions.md |
| 53 | + - Security: examples/35_secure_desing.md |
0 commit comments