All Projects → yidao620c → Python3 Cookbook

yidao620c / Python3 Cookbook

《Python Cookbook》 3rd Edition Translation

Programming Languages

python
139335 projects - #7 most used programming language
Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to Python3 Cookbook

Fashionnet
Fashion recommender system using deep learning
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Music Generation
An RNN implementation to generate music
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Dsrl
Dual Super-Resolution Learning for Semantic Segmentation
Stars: ✭ 91 (-99.06%)
Mutual labels:  jupyter-notebook
Starcraft2 Replay Analysis
A jupyter notebook that provides analysis for StarCraft 2 replays
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Sci Pype
A Machine Learning API with native redis caching and export + import using S3. Analyze entire datasets using an API for building, training, testing, analyzing, extracting, importing, and archiving. This repository can run from a docker container or from the repository.
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Allenai
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Ai Dl Enthusiasts Meetup
AI & Deep Learning Enthusiasts Meetup Project & Study Sessions
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Benchmarking Gnns
Repository for benchmarking graph neural networks
Stars: ✭ 1,297 (-86.61%)
Mutual labels:  jupyter-notebook
Kafka Sparkstreaming Cassandra
Docker container for Kafka - Spark Streaming - Cassandra
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Encoder4editing
Official implementation of "Desinging an Encoder for StyleGAN Image Manipulation" https://arxiv.org/abs/2102.02766
Stars: ✭ 91 (-99.06%)
Mutual labels:  jupyter-notebook
Beauty.torch
Understanding facial beauty with deep learning.
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Kaggle House Prices Advanced Regression Techniques
Udacity capstone project: Kaggle competition on house prices prediction using advanced regression techniques
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Nbinclude.jl
import code from IJulia Jupyter notebooks into Julia programs
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Appliedml python coursera
Material and note of the course of Applied ML in Python
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Fast Scnn
Implementation of Fast-SCNN using Tensorflow 2.0
Stars: ✭ 91 (-99.06%)
Mutual labels:  jupyter-notebook
Deep learning
비전공생도 한눈에 이해하는 딥러닝 자료모음
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
Deep Learning Tutorial Pydata
Deep learning tutorial for PyData
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook
H2o Tutorials
Tutorials and training material for the H2O Machine Learning Platform
Stars: ✭ 1,305 (-86.53%)
Mutual labels:  jupyter-notebook
Autoencoder classifier
Autoencoder model for rare event classification
Stars: ✭ 91 (-99.06%)
Mutual labels:  jupyter-notebook
Courses
Python courses for the scientific researcher
Stars: ✭ 90 (-99.07%)
Mutual labels:  jupyter-notebook

GitHub issues License Github downloads GitHub release

《Python Cookbook》 3rd Edition 翻译

《Python Cookbook》3rd 中文版3.0.0正式发布啦 ^_^! ——2017/12/07

在线阅读地址:http://python3-cookbook.readthedocs.org/zh_CN/latest/

最新版(3.0.0)下载

关于作者David Beazley

本书作者是David Beazley大神,一位独立的计算机科学家、教育家,以及有着35年开发经验的软件开发者。 他在Python社区一直都很活跃,编写了很多的python包, 发表了很多的公开演讲视频 以及 编程教程。 同时还是Python Essential Reference 以及 Python Cookbook (O'Reilly Media)的作者。

David Beazley大神的博客地址:http://www.dabeaz.com/

译者的话

人生苦短,我用Python!

译者一直坚持使用Python3,因为它代表了Python的未来。虽然向后兼容是它的硬伤,但是这个局面迟早会改变的, 而且Python3的未来需要每个人的帮助和支持。 目前市面上的教程书籍,网上的手册大部分基本都是2.x系列的,专门基于3.x系列的书籍少的可怜。

最近看到一本《Python Cookbook》3rd Edition,完全基于Python3,写的也很不错。 为了Python3的普及,我也不自量力,想做点什么事情。于是乎,就有了翻译这本书的冲动了! 这不是一项轻松的工作,却是一件值得做的工作:不仅方便了别人,而且对自己翻译能力也是一种锻炼和提升。

译者会坚持对自己每一句的翻译负责,力求高质量。但受能力限制,也难免有疏漏或者表意不当的地方。 如果译文中有什么错漏的地方请大家见谅,也欢迎大家随时指正。

目前已经正式完成了整本书的翻译工作,历时2年,不管怎样还是坚持下来了。现在共享给python社区。

欢迎关注我的个人公众号“飞污熊”,我会定期分享一些自己的Python学习笔记和心得。

公众号

项目说明

  • 所有文档均使用reStructuredText编辑,参考 reStructuredText
  • 当前文档生成托管在 readthedocs
  • 生成的文档预览地址: python3-cookbook
  • 使用了python官方文档主题 sphinx-rtd-theme ,也是默认的主题default.
  • 书中所有代码均在python 3.6版本下面运行通过,所有源码放在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

其他贡献者

排名不分先后:

  1. Yu Longjun (https://github.com/yulongjun)
  2. tylinux (https://github.com/tylinux)
  3. Kevin Guan (https://github.com/K-Guan)
  4. littlezz (https://github.com/littlezz)
  5. cclauss (https://github.com/cclauss)
  6. Yan Zhang (https://github.com/Eskibear)
  7. xiuyanduan (https://github.com/xiuyanduan)
  8. FPlust (https://github.com/fplust)
  9. lambdaplus (https://github.com/lambdaplus)
  10. Tony Yang ([email protected])

更多贡献者


关于源码生成PDF文件

有网友提问怎样通过源码生成PDF文件,由于这个步骤介绍有点长,不适合放在README里面, 我专门写了篇博客专门介绍怎样通过ReadtheDocs托管文档,怎样自己生成PDF文件,大家可以参考一下。

https://www.xncoding.com/2017/01/22/fullstack/readthedoc.html

另外关于生成的PDF文件中会自动生成标题编号的问题,有热心网友 CarlKing5019提出了解决方案, 请参考issues108:

https://github.com/yidao620c/python3-cookbook/issues/108

再次感谢每一位贡献者。


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-2018 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].