Files
python3-cookbook/README.rst

53 lines
2.9 KiB
ReStructuredText
Raw Normal View History

2014-08-19 15:24:33 +08:00
=========================================================
2014-08-20 20:06:48 +08:00
《Python Cookbook》 3rd Edition 翻译
2014-08-19 15:24:33 +08:00
=========================================================
2014-08-19 14:58:15 +08:00
2014-08-20 20:06:48 +08:00
-----------------
作者的话
-----------------
人生苦短我爱Python
2014-08-19 14:58:15 +08:00
2014-08-20 20:26:10 +08:00
笔者一直坚持使用Python3因为它代表了Python的未来。虽然向后兼容是它的硬伤但是这个局面迟早会改变的
而且Python3的未来需要每个人的帮助和支持。
目前市面上的教程书籍网上的手册大部分基本都是2.x系列的专门基于3.x系列的书籍少的可怜。
最近看到一本《Python Cookbook》3rd Edition完全基于Python3写的也很不错。
为了Python3的普及我也不自量力想做点什么事情。于是乎就有了翻译这本书的冲动了
2014-08-20 20:06:48 +08:00
这不是一项轻松的工作,却是一件值得做的工作:不仅方便了别人,而且对自己翻译能力也是一种锻炼和提升。
2014-08-19 15:24:33 +08:00
2014-08-20 20:06:48 +08:00
后来想了下一个人毕竟力量有限。如果能放到github上面来大家一起合作翻译那效果就完全不一样了。
希望热爱python的有志之士可以一起合作把这本书翻译完成。通过fork/pull request方式。体验一把合作的魅力。
翻译这本书的前提是对python基础要有相当深入的研究请不要使用google翻译这样的工具
需要能把原文作者的意思完全表达出来,不需要逐字翻译,但表意一定要准确!
2014-08-19 14:58:15 +08:00
2014-08-20 20:06:48 +08:00
目前已经将项目的文件都已经新建好了如果想参与进来只需要更新对应的文件内容然后pull request给我就行
其他一切事情都由我来负责,也希望想参与进来的可以认真对待自己每一句的翻译,力求高质量。
2014-08-19 14:58:15 +08:00
2014-08-20 20:06:48 +08:00
译文中有什么错漏的地方请大家见谅,也欢迎大家指正: yidao620@gmail.com
2014-08-19 15:07:15 +08:00
--------------------------------------------------------------
2014-08-20 20:06:48 +08:00
++++++++
备注
++++++++
1. 所有文档均使用reStructuredText编辑参考 reStructuredText_
2. 当前文档生成托管在 readthedocs_ 上
2014-08-20 20:21:08 +08:00
#. 生成的文档预览地址: python3-cookbook_
#. 使用了python官方文档主题 sphinx-rtd-theme_ 也是默认的主题default.
2014-08-19 15:07:15 +08:00
2014-08-19 16:36:13 +08:00
::
2014-08-19 16:43:20 +08:00
# on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
2014-08-19 16:36:13 +08:00
2014-08-19 16:43:20 +08:00
if not on_rtd: # only import and set the theme if we're building docs locally
import sphinx_rtd_theme
html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
2014-08-19 16:36:13 +08:00
2014-08-19 16:43:20 +08:00
# otherwise, readthedocs.org uses their theme by default, so no need to specify it
2014-08-19 16:36:13 +08:00
2014-08-19 15:07:15 +08:00
.. _readthedocs: https://readthedocs.org/
2014-08-19 15:13:37 +08:00
.. _sphinx-rtd-theme: https://github.com/snide/sphinx_rtd_theme
2014-08-20 20:21:08 +08:00
.. _reStructuredText: http://docutils.sourceforge.net/docs/user/rst/quickref.html
.. _python3-cookbook: http://python3-cookbook.readthedocs.org/zh_CN/latest/