Skip to content

Commit bcc530c

Browse files
committed
📚 Update the indices of each topics
1 parent 7efdd26 commit bcc530c

File tree

1 file changed

+121
-3
lines changed

1 file changed

+121
-3
lines changed

README.md

+121-3
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,147 @@ It covers following topics and provides the explains and sample source code of e
66
* **Basic**: Basic python features including some advanced practices
77
* **Data Structure**: Introduces the data structures of Python
88
* **Standard Library**: Deep dive into standard libraries of Python
9+
* **Meta Programming**: How to meta programming in Python
910
* **Configuration**: How to handle the configuration in Python
1011
* **Design Patterns**: Introduces common design patterns for Python
1112
* **Testing**: Covers simple and practical testing practices
1213
* **Regex**: How to use regular expressions in Python
1314
* **Networking**: Network programming with Python
1415
* **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
1817
* **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
1922
* **CLI**: How to make a CLI with Python
2023
* **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
2127

2228
<br>
2329

2430
## Practices
2531

2632
* [basics](/basics)
2733
* [arguments (including `*args` and `**kwargs`)](/basics/arguments)
34+
* builtin functions
35+
* class
2836
* [comma](/basics/comma)
2937
* [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
3054
* [underscore](/basics/underscore)
3155
* [data structure](/data-structure)
3256
* [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
3389
* [configuration](/configuration)
3490
* [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

Comments
 (0)