關于譯者
姓名:熊能
Email:yidao620@gmail.com
博客:http://yidao620c.github.io/
GitHub:https://github.com/yidao620c
項目主頁
https://github.com/yidao620c/python3-cookbook
《Python Cookbook》3rd 中文版2.0.0正式發布啦 ^_^! ——2016/03/31
譯者的話
人生苦短,我用Python!
譯者一直堅持使用Python3,因為它代表了Python的未來。雖然向后兼容是它的硬傷,但是這個局面遲早會改變的, 而且Python3的未來需要每個人的幫助和支持。 目前市面上的教程書籍,網上的手冊大部分基本都是2.x系列的,專門基于3.x系列的書籍少的可憐。
最近看到一本《Python Cookbook》3rd Edition,完全基于Python3,寫的也很不錯。 為了Python3的普及,我也不自量力,想做點什么事情。于是乎,就有了翻譯這本書的沖動了! 這不是一項輕松的工作,卻是一件值得做的工作:不僅方便了別人,而且對自己翻譯能力也是一種鍛煉和提升。
譯者會堅持對自己每一句的翻譯負責,力求高質量。但受能力限制,也難免有疏漏或者表意不當的地方。 如果譯文中有什么錯漏的地方請大家見諒,也歡迎大家隨時指正: yidao620@gmail.com
目前已經正式完成了整本書的翻譯工作,歷時1年多,不管怎樣還是堅持下來了。現在共享給python社區。
項目說明
- 英文原版PDF下載地址: http://pan.baidu.com/s/1dDhByJv
- 所有文檔均使用reStructuredText編輯,參考 reStructuredText
- 當前文檔生成托管在 readthedocs 上
- 生成的文檔預覽地址: python3-cookbook
- 使用了python官方文檔主題 sphinx-rtd-theme ,也是默認的主題default.
- 書中所有代碼均在python 3.4版本下面運行通過,所有源碼放在cookbook包下面
# 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' 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()] # otherwise, readthedocs.org uses their theme by default, so no need to specify it
其他貢獻者
- Tony Yang (liuliu036@gmail.com)
- Yu Longjun (https://github.com/yulongjun)
- LxMit (https://github.com/LxMit)
How to Contribute
You are welcome to contribute to the project as follow
- fork project and commit pull requests
- add/edit wiki
- report/fix issue
- code review
- commit new feature
- add testcase
Meanwhile you'd better follow the rules below
- It's NOT recommended to submit a pull request directly to master branch. develop branch is more appropriate
- Follow common Python coding conventions
- Add the following [license] in each source file
License
(The Apache License)
Copyright (c) 2014-2015 Xiong Neng and other contributors
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
posted on 2016-09-22 08:52
思月行云 閱讀(337)
評論(0) 編輯 收藏 引用 所屬分類:
Python