@@ -24,39 +24,125 @@ tu disposición, podrás convertirte en un Pythonista aún más competente y
2424versátil en tu campo. ¡Explora y aprende para crecer como desarrollador de
2525Python!
2626
27+
28+ ## Python Básico
29+
2730``` {sketchviz}
2831digraph G {
2932 graph [fontname="Handlee"];
3033 node [fontname="Handlee"];
3134 edge [fontname="Handlee"];
32-
33- bgcolor=transparent;
35+ rankdir=LR;
3436
35- p_1 [
36- label="Python Básico",
37- href="/learning-path/python-developer/#python-basico",
38- target="_top"
39- ]
40- p_2 [
41- label="Python Avanzado",
42- href="/learning-path/python-developer/#python-avanzado",
43- target="_top"
44- ]
45-
46- subgraph cluster_python {
37+ subgraph cluster_basic_python {
4738 node [style=filled, color=pink];
4839 style=filled;
4940 color=lightgrey;
5041 fontsize = 20;
51- label = "*Desarrollador Python*";
52- href="/learning-path/python-developer/";
53- target="_top";
54- p_1 -> p_2;
42+
43+ t12 [label="Tópico 12", href=""];
44+ t11 [label="Tópico 11", href=""];
45+ t10 [label="Tópico 10", href=""];
46+ t9 [label="Tópico 9", href=""];
47+ t8 [label="Tópico 8", href=""];
48+ t7 [label="Tópico 7", href=""];
49+ t6 [label="Tópico 6", href=""];
50+ t5 [label="Tópico 5", href=""];
51+ t4 [label="Tópico 4", href=""];
52+ t3 [label="Tópico 3", href=""];
53+ t2 [label="Tópico 2", href=""];
54+ t1 [label="Tópico 1", href=""];
55+ basic_python [id="basic-python", label="Python Básico"];
56+ algostruct [label="Estructura de Datos\ny\nAlgoritmos Básicos"];
57+ basic_arch [label="Arquitectura\nBásica"];
58+ clean_code [label="Clean Code"];
59+ fundamentals [label="Fundamentos\nBásicos de Python"];
60+ basic_python -> algostruct;
61+ basic_python -> basic_arch;
62+ basic_python -> clean_code;
63+ basic_python -> fundamentals;
64+ fundamentals -> t3;
65+ fundamentals -> t2;
66+ fundamentals -> t1;
67+ clean_code -> t6;
68+ clean_code -> t5;
69+ clean_code -> t4;
70+ basic_arch -> t9;
71+ basic_arch -> t8;
72+ basic_arch -> t7;
73+ algostruct -> t12;
74+ algostruct -> t11;
75+ algostruct -> t10;
5576 }
5677}
5778```
5879
59- ## Python Básico
60-
6180
6281## Python Avanzado
82+
83+ ``` {sketchviz}
84+ digraph G {
85+ graph [fontname="Handlee"];
86+ node [fontname="Handlee"];
87+ edge [fontname="Handlee"];
88+ rankdir=LR;
89+
90+ bgcolor=transparent;
91+ subgraph cluster_advanced_python {
92+ node [style=filled, color=pink];
93+ style=filled;
94+ color=lightblue;
95+ fontsize = 20;
96+
97+ t18 [label="Tópico 18", href=""];
98+ t17 [label="Tópico 17", href=""];
99+ t16 [label="Tópico 16", href=""];
100+ t15 [label="Tópico 15", href=""];
101+ t14 [label="Tópico 14", href=""];
102+ t13 [label="Tópico 13", href=""];
103+ t12 [label="Tópico 12", href=""];
104+ t11 [label="Tópico 11", href=""];
105+ t10 [label="Tópico 10", href=""];
106+ t9 [label="Tópico 9", href=""];
107+ t8 [label="Tópico 8", href=""];
108+ t7 [label="Tópico 7", href=""];
109+ t6 [label="Tópico 6", href=""];
110+ t5 [label="Tópico 5", href=""];
111+ t4 [label="Tópico 4", href=""];
112+ t3 [label="Tópico 3", href=""];
113+ t2 [label="Tópico 1", href=""];
114+ t1 [label="Tópico 1", href=""];
115+ advanced_python [id="advanced-python", label="Python Avanzado"];
116+ leetcode [label="Leetcode"];
117+ db [label="Bases de Datos"];
118+ python_projects [label="Proyectos en Python"];
119+ command_line [label="Línea de Comandos\nen Python"];
120+ design_patterns [label="Patrones de Diseño\nen Python"];
121+ advanced_algostruct [label="Estructurad de Datos\ny\nAlgoritmos Avanzados"];
122+ advanced_python -> leetcode;
123+ advanced_python -> db;
124+ advanced_python -> python_projects;
125+ advanced_python -> command_line;
126+ advanced_python -> design_patterns;
127+ advanced_python -> advanced_algostruct;
128+ advanced_algostruct -> t3;
129+ advanced_algostruct -> t2;
130+ advanced_algostruct -> t1;
131+ design_patterns -> t6;
132+ design_patterns -> t5;
133+ design_patterns -> t4;
134+ command_line -> t9;
135+ command_line -> t8;
136+ command_line -> t7;
137+ python_projects -> t12;
138+ python_projects -> t11;
139+ python_projects -> t10;
140+ db -> t15;
141+ db -> t14;
142+ db -> t13;
143+ leetcode -> t18;
144+ leetcode -> t17;
145+ leetcode -> t16;
146+ }
147+ }
148+ ```
0 commit comments