Skip to content

Commit 8c2d6b6

Browse files
committed
调整目录结构
1 parent 743da33 commit 8c2d6b6

File tree

3 files changed

+36
-23
lines changed

3 files changed

+36
-23
lines changed

README.md

+9-23
Original file line numberDiff line numberDiff line change
@@ -15,30 +15,9 @@
1515

1616
#### Python 系列
1717

18-
1. Python 命令行之旅
19-
- 1.1 [初探 argparse](contents/Python/cmdline/argparse-1.md)
20-
- 1.2 [深入 argparse(一)](contents/Python/cmdline/argparse-2.md)
21-
- 1.3 [深入 argparse(二)](contents/Python/cmdline/argparse-3.md)
22-
- 1.4 [使用 argparse 实现 git 命令](contents/Python/cmdline/argparse-4.md)
23-
- 2.1 [初探 docopt](contents/Python/cmdline/docopt-1.md)
24-
- 2.2 [深入 docopt](contents/Python/cmdline/docopt-2.md)
25-
- 2.3 [使用 docopt 实现 git 命令](contents/Python/cmdline/docopt-3.md)
26-
- 3.1 [初探 click](contents/Python/cmdline/click-1.md)
27-
- 3.2 [深入 click(一)](contents/Python/cmdline/click-2.md)
28-
- 3.3 [深入 click(二)](contents/Python/cmdline/click-3.md)
29-
- 3.4 [深入 click(三)](contents/Python/cmdline/click-4.md)
30-
- 3.5 [深入 click(四)](contents/Python/cmdline/click-5.md)
31-
- 3.6 [使用 click 实现 git 命令](contents/Python/cmdline/click-6.md)
32-
- 4.1 [初探 fire](contents/Python/cmdline/fire-1.md)
33-
- 4.2 [Python 命令行之旅:深入 fire(一)](contents/Python/cmdline/fire-2.md)
34-
- 4.3 [Python 命令行之旅:深入 fire(二)](contents/Python/cmdline/fire-3.md)
35-
- 4.4 [Python 命令行之旅:使用 fire 实现 git 命令](contents/Python/cmdline/fire-4.md)
36-
- 5 [Python 命令行之旅:argparse、docopt、click 和 fire 总结篇](contents/Python/cmdline/summary.md)
18+
1. [Python 命令行之旅](contents/Python/cmdline/catalog.md)
3719
2. [用 Python 生成有"灵魂"的二维码:QRcode](contents/Python/QRcode/content.md)
38-
3. 聊聊 Python 的单元测试框架
39-
- 3.1 [unittest](contents/Python/unittest/unittest.md)
40-
- 3.2 [nose 和它的继任者 nose2](contents/Python/unittest/nose.md)
41-
- 3.3 [pytest](contents/Python/unittest/pytest.md)
20+
3. [聊聊 Python 的单元测试框架](contents/Python/unittest/catalog.md)
4221

4322
#### Java 系列
4423

@@ -93,6 +72,13 @@
9372
<img src="https://avatars1.githubusercontent.com/u/45623023?s=50&v=4" style="width: 50px;"><br>
9473
<sub>LITTLECHIEH</sub>
9574
</a><br>
75+
</th>
76+
<th align="center" style="width: 80px;">
77+
<a href="https://github.com/KFCFans">
78+
<img src="https://avatars3.githubusercontent.com/u/9402086?s=50&v=4" style="width: 50px;"><br>
79+
<sub>Yukino</sub>
80+
</a><br>
81+
</th>
9682
</tr>
9783
</tbody>
9884
</table>

contents/Python/cmdline/catalog.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Python 命令行之旅
2+
3+
![](cover.jpg)
4+
5+
- 1.1 [初探 argparse](argparse-1.md)
6+
- 1.2 [深入 argparse(一)](argparse-2.md)
7+
- 1.3 [深入 argparse(二)](argparse-3.md)
8+
- 1.4 [使用 argparse 实现 git 命令](argparse-4.md)
9+
- 2.1 [初探 docopt](docopt-1.md)
10+
- 2.2 [深入 docopt](docopt-2.md)
11+
- 2.3 [使用 docopt 实现 git 命令](docopt-3.md)
12+
- 3.1 [初探 click](click-1.md)
13+
- 3.2 [深入 click(一)](click-2.md)
14+
- 3.3 [深入 click(二)](click-3.md)
15+
- 3.4 [深入 click(三)](click-4.md)
16+
- 3.5 [深入 click(四)](click-5.md)
17+
- 3.6 [使用 click 实现 git 命令](click-6.md)
18+
- 4.1 [初探 fire](fire-1.md)
19+
- 4.2 [Python 命令行之旅:深入 fire(一)](fire-2.md)
20+
- 4.3 [Python 命令行之旅:深入 fire(二)](fire-3.md)
21+
- 4.4 [Python 命令行之旅:使用 fire 实现 git 命令](fire-4.md)
22+
- 5 [Python 命令行之旅:argparse、docopt、click 和 fire 总结篇](summary.md)

contents/Python/unittest/catalog.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# 聊聊 Python 的单元测试框架
2+
3+
- 3.1 [unittest](unittest.md)
4+
- 3.2 [nose 和它的继任者 nose2](nose.md)
5+
- 3.3 [pytest](pytest.md)

0 commit comments

Comments
 (0)