forked from ethan-funny/explore-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresource_recommendation.md
More file actions
53 lines (26 loc) · 2.43 KB
/
Copy pathresource_recommendation.md
File metadata and controls
53 lines (26 loc) · 2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# 资源推荐
这里列出了 Python 相关的一些资源,欢迎读者补充。
- [vinta/awesome-python: A curated list of awesome Python frameworks, libraries, software and resources](https://github.com/vinta/awesome-python)
包含了 Python 框架、Python 库和软件的 awesome 列表。
- [aosabook/500lines: 500 Lines or Less](https://github.com/aosabook/500lines)
Python 神书,里面有若干个项目,每个项目都是由业内大神所写,每个项目代码在 500 行左右。
- [Python Module of the Week - PyMOTW 2](https://pymotw.com/2/)
自 2007 年以来,[Doug Hellmann](http://www.doughellmann.com/) 在他的博客上发表了颇受关注的「Python Module of the Week」系列,计划每周介绍一个 Python 标准库的使用。上面的链接是介绍 Python2 中的标准库,同样也有 Python3 的:[Python 3 Module of the Week — PyMOTW 3](https://pymotw.com/3/#python-3-module-of-the-week)。
- [Transforming Code into Beautiful, Idiomatic Python](https://gist.github.com/JeffPaine/6213790)
写出简洁的、优雅的 Python 代码。
- [jobbole/awesome-python-cn: Python资源大全中文版](https://github.com/jobbole/awesome-python-cn)
Python 资源大全,包含:Web 框架、网络爬虫、模板引擎和数据库等,由[伯乐在线](https://github.com/jobbole)更新。
- [Pycoder's Weekly | A Weekly Python E-Mail Newsletter](http://pycoders.com/)
优秀的免费邮件 Python 新闻周刊。
- [Python 初学者的最佳学习资源](http://python.jobbole.com/82399/)
伯乐在线翻译的 Python 学习资源。
- [Full Stack Python](http://www.fullstackpython.com/)
Python 资源汇总,从基础入门到各种 Web 开发框架,再到高级的 ORM,Docker 等等。
- [The Hitchhiker’s Guide to Python!](http://docs.python-guide.org/en/latest/)
[Requests](https://github.com/kennethreitz/requests) 作者 kennethreitz 的一本开源书籍,介绍 Python 的最佳实践。
- [Welcome to Python for you and me](http://pymbook.readthedocs.io/en/latest/)
介绍 Python 的基本语法,特点等。
- [District Data Labs - How to Develop Quality Python Code](https://districtdatalabs.silvrback.com/how-to-develop-quality-python-code)
开发高质量的 Python 代码。
- [A "Best of the Best Practices" (BOBP) guide to developing in Python.](https://gist.github.com/sloria/7001839)
Python 最佳实践。