├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── Readme.rst ├── docs ├── .gitignore ├── Descriptor-HOW-TO-Guide.rst ├── GitHub-Repos-For-Pythoners.rst ├── Makefile ├── awesome-python-libraries.rst ├── conf.py ├── improving-your-python-productivity.rst ├── index.rst ├── make.bat ├── python-hidden-features.rst ├── python-idioms.rst ├── python-magic-methods-guide.rst ├── python-pandas.rst ├── python-questions-on-stackoverflow.rst ├── python-realtime.rst ├── python-setup-dot-py-vs-requirements-dot-txt.rst ├── python-the-dictionary-playbook.rst ├── single-line-command-with-python.rst └── the-python-yield-keyword-explained.rst ├── requirements.pip └── todo.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | doc: 2 | make -C docs html 3 | 4 | -------------------------------------------------------------------------------- /Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/Readme.rst -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | -------------------------------------------------------------------------------- /docs/Descriptor-HOW-TO-Guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/Descriptor-HOW-TO-Guide.rst -------------------------------------------------------------------------------- /docs/GitHub-Repos-For-Pythoners.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/GitHub-Repos-For-Pythoners.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/awesome-python-libraries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/awesome-python-libraries.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/improving-your-python-productivity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/improving-your-python-productivity.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/python-hidden-features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/python-hidden-features.rst -------------------------------------------------------------------------------- /docs/python-idioms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/python-idioms.rst -------------------------------------------------------------------------------- /docs/python-magic-methods-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/python-magic-methods-guide.rst -------------------------------------------------------------------------------- /docs/python-pandas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/python-pandas.rst -------------------------------------------------------------------------------- /docs/python-questions-on-stackoverflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/python-questions-on-stackoverflow.rst -------------------------------------------------------------------------------- /docs/python-realtime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/python-realtime.rst -------------------------------------------------------------------------------- /docs/python-setup-dot-py-vs-requirements-dot-txt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/python-setup-dot-py-vs-requirements-dot-txt.rst -------------------------------------------------------------------------------- /docs/python-the-dictionary-playbook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/python-the-dictionary-playbook.rst -------------------------------------------------------------------------------- /docs/single-line-command-with-python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/single-line-command-with-python.rst -------------------------------------------------------------------------------- /docs/the-python-yield-keyword-explained.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/docs/the-python-yield-keyword-explained.rst -------------------------------------------------------------------------------- /requirements.pip: -------------------------------------------------------------------------------- 1 | Sphinx==1.3.1 2 | -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKiven/PyZh/HEAD/todo.txt --------------------------------------------------------------------------------