@@ -6,29 +6,147 @@ It covers following topics and provides the explains and sample source code of e
6
6
* ** Basic** : Basic python features including some advanced practices
7
7
* ** Data Structure** : Introduces the data structures of Python
8
8
* ** Standard Library** : Deep dive into standard libraries of Python
9
+ * ** Meta Programming** : How to meta programming in Python
9
10
* ** Configuration** : How to handle the configuration in Python
10
11
* ** Design Patterns** : Introduces common design patterns for Python
11
12
* ** Testing** : Covers simple and practical testing practices
12
13
* ** Regex** : How to use regular expressions in Python
13
14
* ** Networking** : Network programming with Python
14
15
* ** Database** : How to handle the database in Python
15
- * ** Data Format** : Introduce the ways for handling the json, xml and base64 with Python
16
- * ** Concurrency** : How to process the multithread/multiprocess in Python
17
- * ** Cryptography** : Introduce some ways to handle the encryption with common crypto functions in Python
16
+ * ** Data Handling** : Introduces the ways for handling the json, xml and base64 with Python
18
17
* ** Data Processing** : Introduce the Numpy, Scipy to handle the dataset efficiently
18
+ * ** Concurrency** : How to handle the concurrent and parallel jobs in Python
19
+ * ** API Programming** : How to API programming for several API architectures with Python
20
+ * ** Cryptography** : Introduces some ways to handle the encryption with common crypto functions in Python
21
+ * ** Functional Programming** : Functional programming with Python
19
22
* ** CLI** : How to make a CLI with Python
20
23
* ** C Extensions** : How to use the C modules in Python
24
+ * ** Debugging** : How to debug Python programs
25
+ * ** Profiling** : How to profile the Python programs
26
+ * ** Easter Egg** : Funny easter eggs of Python
21
27
22
28
<br >
23
29
24
30
## Practices
25
31
26
32
* [ basics] ( /basics )
27
33
* [ arguments (including ` *args ` and ` **kwargs ` )] ( /basics/arguments )
34
+ * builtin functions
35
+ * class
28
36
* [ comma] ( /basics/comma )
29
37
* [ comprehension] ( /basics/comprehension )
38
+ * decorator
39
+ * documentation
40
+ * exceptions handling
41
+ * file/dir handling
42
+ * functions
43
+ * import
44
+ * interface
45
+ * iterator and generator
46
+ * lambda
47
+ * logging
48
+ * map, filter and reduce
49
+ * method
50
+ * oop
51
+ * string formatting
52
+ * string operations
53
+ * type hinting
30
54
* [ underscore] ( /basics/underscore )
31
55
* [ data structure] ( /data-structure )
32
56
* [ list] ( /data-structure/list )
57
+ * tuple
58
+ * set
59
+ * dict
60
+ * fronzenset
61
+ * string
62
+ * stack
63
+ * * array
64
+ * linked list
65
+ * queue
66
+ * * array
67
+ * linked list
68
+ * linked list
69
+ * heap
70
+ * tree
71
+ * graph
72
+ * standard library
73
+ * abc
74
+ * array
75
+ * collections
76
+ * ctypes
77
+ * datetime
78
+ * decimals
79
+ * functools
80
+ * future
81
+ * itertools
82
+ * math
83
+ * os
84
+ * pickle
85
+ * queue
86
+ * random
87
+ * meta programming
88
+ * metaclass
33
89
* [ configuration] ( /configuration )
34
90
* [ management] ( /configuration/management )
91
+ * design patterns
92
+ * singleton
93
+ * factory
94
+ * adapter
95
+ * observer
96
+ * testing
97
+ * unittest
98
+ * pytest
99
+ * doctest
100
+ * coverage
101
+ * regex
102
+ * basic
103
+ * complex practices
104
+ * networking
105
+ * http
106
+ * tcp
107
+ * udp
108
+ * smtp
109
+ * ftp
110
+ * socket
111
+ * database
112
+ * sqlite3
113
+ * mysql
114
+ * postgresql
115
+ * redis
116
+ * mongodb
117
+ * orm
118
+ * sqlalchemy
119
+ * django orm
120
+ * data handling
121
+ * json
122
+ * xml
123
+ * base64
124
+ * proto buffer
125
+ * data processing
126
+ * numpy
127
+ * scipy
128
+ * concurrency
129
+ * multiprocessing
130
+ * multithreading
131
+ * asyncio
132
+ * celery
133
+ * api programming
134
+ * restful api
135
+ * graphql
136
+ * rpc
137
+ * cryptography
138
+ * sha
139
+ * md5
140
+ * hmac
141
+ * functional programming
142
+ * reactive python
143
+ * cli
144
+ * simple cli
145
+ * complex cli
146
+ * c extensions
147
+ * linking C modules
148
+ * debugging
149
+ * pdb
150
+ * profiling
151
+ * benchmark
152
+ * easter egg
0 commit comments