Skip to content

Commit 2bddc2c

Browse files
author
zhwei
committed
update python
1 parent eb0f7c8 commit 2bddc2c

File tree

1 file changed

+45
-3
lines changed

1 file changed

+45
-3
lines changed

language/python.rst

+45-3
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,61 @@
22
python 语言
33
====================
44

5+
QuickStart
6+
----------------
7+
8+
* HelloWorld
9+
10+
.. code-block:: python
11+
12+
print 'Hello World!'
13+
14+
#result: Hello World!
15+
16+
* The Zen of Python
17+
18+
.. code-block:: python
19+
20+
import this
521
622
教程资源
723
------------------
824

9-
* `python documentation <http://docs.python.org/>`_
25+
* `Python Doc. <http://docs.python.org/>`_
1026
* `简明python教程 <http://woodpecker.org.cn/abyteofpython_cn/chinese/>`_
27+
* `Learn Python The Hard Way <http://learnpythonthehardway.org/book/>`_
28+
29+
30+
社区资源
31+
-------------------
1132

33+
* `python-cn(华蟒用户组,CPyUG 邮件列表) <https://groups.google.com/forum/?hl=zh-CN>`_
34+
* `啄木鸟社区 <http://woodpecker.org.cn/>`_
35+
* `Python中国社区 <http://pychina.org/>`_
36+
* `Pycoder's Weekly <http://www.pycoders.com/>`_
1237

13-
框架
38+
39+
Web框架
1440
------------------
1541

42+
web.py
43+
^^^^^^^^^^^^^^^^^
44+
web.py is a web framework for python that is as simple as it is powerful.
45+
46+
* `官网 <http://webpy.org/>`_
47+
* `github <https://github.com/webpy/webpy/>`_
48+
1649
Django
1750
^^^^^^^^^^^^^^^^^^
51+
Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
1852

19-
* `django documentation <https://docs.djangoproject.com/en/1.4/>`_
53+
* `django documentation <https://docs.djangoproject.com/>`_
2054
* `django book <http://djangobook.py3k.cn/2.0/>`_
55+
56+
57+
Bottle
58+
^^^^^^^^^^^^^^^^^^
59+
60+
Bottle is a fast, simple and lightweight WSGI micro web-framework for Python. It is distributed as a single file module and has no dependencies other than the Python Standard Library.
61+
62+
* http://bottlepy.org/docs/dev/index.html

0 commit comments

Comments
 (0)