Skip to content

Commit bdcebe5

Browse files
committed
feat(docsify)
1 parent d4b4d78 commit bdcebe5

File tree

16,434 files changed

+248
-1574013
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

16,434 files changed

+248
-1574013
lines changed

.travis.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

SUMMARY.md

Lines changed: 0 additions & 70 deletions
This file was deleted.

book.json

Lines changed: 0 additions & 82 deletions
This file was deleted.

deploy.sh

Lines changed: 0 additions & 26 deletions
This file was deleted.

docs/README.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Attack on Python 🐍
2+
3+
[![Build Status](https://travis-ci.com/attack-on-backend/Python.svg?branch=master)](https://travis-ci.com/github/attack-on-backend/Python) [![lang](https://img.shields.io/badge/lang-python-blue)](https://www.python.org/) [![lang](https://img.shields.io/badge/github-%E4%BB%93%E5%BA%93-%2342b983)](https://github.com/attack-on-backend/python)
4+
5+
## 介绍 🐙
6+
7+
致力构建一个高质量的后端技术图谱 ![octocat](https://github.githubassets.com/images/icons/emoji/octocat.png)
8+
9+
这是一个有深度的 `Python` 系列博客 , [在线阅读](https://attack-on-backend.github.io/python/) 体验更丝滑哟
10+
11+
## 目录 🚀
12+
13+
* **开始**
14+
* [介绍](/README.md)
15+
* **基础篇**
16+
* [语言基础](/basic/language-basic.md)
17+
* [数字](/basic/number.md)
18+
* [字符串](/basic/string.md)
19+
* [元组](/basic/tuple.md)
20+
* [列表](/basic/list.md)
21+
* [字典](/basic/dict.md)
22+
* [集合](/basic/set.md)
23+
* [字符编码](/basic/character-code.md)
24+
* [文件](/basic/io.md)
25+
* **函数篇**
26+
* [函数](/function/function-basic.md)
27+
* [匿名函数](/function/lambda.md)
28+
* [函数进阶](/function/function-advanced.md)
29+
* [内置函数](/function/built-in-function.md)
30+
* [迭代器](/function/iterator.md)
31+
* [生成器](/function/generator.md)
32+
* [递归](/function/recursion.md)
33+
* **对象篇**
34+
* [面向对象](/objects/oop.md)
35+
* [继承](/objects/inherit.md)
36+
* [多态](/objects/polymorphic.md)
37+
* [封装](/objects/encapsulation.md)
38+
* [方法转换](/objects/method-conversion.md)
39+
* [魔术方法](/objects/magic-method.md)
40+
* [反射](/objects/reflex.md)
41+
* [异常处理](/objects/exception.md)
42+
* **模块篇**
43+
* [模块](/module/module.md)
44+
* [](/module/package.md)
45+
* [正则表达式](/module/re.md)
46+
* [序列化](/module/serialize.md)
47+
* [os模块](/module/os.md)
48+
* [random模块](/module/random.md)
49+
* [sys模块](/module/sys.md)
50+
* [wsgiref模块](/module/wsgiref.md)
51+
* **网络篇**
52+
* [网络编程](/network/network.md)
53+
* [Socket](/network/socket.md)
54+
* [Socket实现QQ聊天](/network/socket-qq.md)
55+
* [Socket实现远程执行命令](/network/socket-remote-command-execution.md)
56+
* [粘包](/network/packet-splicing.md)
57+
* [Socketserver实现多并发](/network/socketserver.md)
58+
* **并发篇**
59+
* [进程与线程](/concurrent/process-and-thread.md)
60+
* [多线程](/concurrent/threading.md)
61+
* [多进程](/concurrent/multiprocessing.md)
62+
* [多进程与回调函数](/concurrent/multiprocessing-and-callback.md)
63+
* [协程](/concurrent/coroutine.md)
64+
* [IO多路复用](/concurrent/io-select.md)
65+
* [实现线程池](/concurrent/thread-pool.md)
66+
* **内存篇**
67+
* [对象机制](/memory/object.md)
68+
* [对象的创建](/memory/object-create.md)
69+
* [整数](/memory/int.md)
70+
* [字符串](/memory/str.md)
71+
* [列表](/memory/list.md)
72+
* [字典](/memory/dict.md)
73+
* [元组](/memory/tuple.md)
74+
* [垃圾回收](/memory/gc.md)
75+
* [元类](/memory/metaclass.md)
76+
* **番外篇**
77+
* [PyMySQL](/expand/object.md)
78+
* [MySQLdb](/expand/object-create.md)
79+
* [SQLAlchemy](/expand/int.md)
80+
* **电子书**
81+
* [书单](/book/book-list.md)
82+
83+
84+
## 关于我 ​​🤩
85+
86+
我是一个热衷于后端技术的程序员 , 拥有四年的 `Python` 开发经验 , 喜欢在开源社区活动 , 很希望能与大家一起交流学习 , 也希望能和大家一起够构建出一个完善的后端技术知识图谱 , 你可以通过 `QQ:547903993` 找到我 , 与我交流 ❤️ 🚀
87+

docs/_sidebar.md

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
<!-- docs/_sidebar.md -->
2+
3+
* 开始
4+
5+
* [介绍](/README.md)
6+
7+
* 基础篇
8+
9+
* [语言基础](/basic/language-basic.md)
10+
* [数字](/basic/number.md)
11+
* [字符串](/basic/string.md)
12+
* [元组](/basic/tuple.md)
13+
* [列表](/basic/list.md)
14+
* [字典](/basic/dict.md)
15+
* [集合](/basic/set.md)
16+
* [字符编码](/basic/character-code.md)
17+
* [文件](/basic/io.md)
18+
19+
* 函数篇
20+
21+
* [函数](/function/function-basic.md)
22+
* [匿名函数](/function/lambda.md)
23+
* [函数进阶](/function/function-advanced.md)
24+
* [内置函数](/function/built-in-function.md)
25+
* [迭代器](/function/iterator.md)
26+
* [生成器](/function/generator.md)
27+
* [递归](/function/recursion.md)
28+
29+
* 对象篇
30+
31+
* [面向对象](/objects/oop.md)
32+
* [继承](/objects/inherit.md)
33+
* [多态](/objects/polymorphic.md)
34+
* [封装](/objects/encapsulation.md)
35+
* [方法转换](/objects/method-conversion.md)
36+
* [魔术方法](/objects/magic-method.md)
37+
* [反射](/objects/reflex.md)
38+
* [异常处理](/objects/exception.md)
39+
40+
* 模块篇
41+
42+
* [模块](/module/module.md)
43+
* [](/module/package.md)
44+
* [正则表达式](/module/re.md)
45+
* [序列化](/module/serialize.md)
46+
* [os模块](/module/os.md)
47+
* [random模块](/module/random.md)
48+
* [sys模块](/module/sys.md)
49+
* [wsgiref模块](/module/wsgiref.md)
50+
51+
* 网络篇
52+
53+
* [网络编程](/network/network.md)
54+
* [Socket](/network/socket.md)
55+
* [Socket实现QQ聊天](/network/socket-qq.md)
56+
* [Socket实现远程执行命令](/network/socket-remote-command-execution.md)
57+
* [粘包](/network/packet-splicing.md)
58+
* [Socketserver实现多并发](/network/socketserver.md)
59+
60+
* 并发篇
61+
62+
* [进程与线程](/concurrent/process-and-thread.md)
63+
* [多线程](/concurrent/threading.md)
64+
* [多进程](/concurrent/multiprocessing.md)
65+
* [多进程与回调函数](/concurrent/multiprocessing-and-callback.md)
66+
* [协程](/concurrent/coroutine.md)
67+
* [IO多路复用](/concurrent/io-select.md)
68+
* [实现线程池](/concurrent/thread-pool.md)
69+
70+
* 内存篇
71+
72+
* [对象机制](/memory/object.md)
73+
* [对象的创建](/memory/object-create.md)
74+
* [整数](/memory/int.md)
75+
* [字符串](/memory/str.md)
76+
* [列表](/memory/list.md)
77+
* [字典](/memory/dict.md)
78+
* [元组](/memory/tuple.md)
79+
* [垃圾回收](/memory/gc.md)
80+
* [元类](/memory/metaclass.md)
81+
82+
* 番外篇
83+
84+
* [PyMySQL](/expand/object.md)
85+
* [MySQLdb](/expand/object-create.md)
86+
* [SQLAlchemy](/expand/int.md)
87+
88+
* 电子书
89+
90+
* [书单](/book/book-list.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy