mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 14:50:19 +00:00
@@ -169,3 +169,12 @@ This is Python's reference manual, it covers the syntax and the core semantics o
|
||||
language.
|
||||
|
||||
`The Python Language Reference <http://docs.python.org/reference/index.html>`_
|
||||
|
||||
Python Pocket Reference
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Python Pocket Reference, written by Mark Lutz, is an easy to use reference to the
|
||||
core language, with descriptions of commonly used modules and toolkits. It covers
|
||||
Python 3 and 2.6 versions.
|
||||
|
||||
`Python Pocket Reference <http://shop.oreilly.com/product/9780596158095.do>`_
|
||||
|
||||
@@ -6,11 +6,14 @@ Command Line Applications
|
||||
Clint
|
||||
-----
|
||||
|
||||
.. todo:: Write about Clint
|
||||
`clint <https://pypi.python.org/pypi/clint/>`_ is a python module which is
|
||||
filled with very useful tools for developing commandline applications.
|
||||
It supports features such as; CLI Colors and Indents, Simple and Powerful
|
||||
Column Printer, Iterator based progress bar and Implicit argument handling.
|
||||
|
||||
docopt
|
||||
------
|
||||
|
||||
`docopt <http://docopt.org/>`_ is a lightweight, highly Pythonic package that
|
||||
allows creating command line interfaces easily and intuitively, by parsing
|
||||
POSIX-style usage instructions.
|
||||
POSIX-style usage instructions.
|
||||
|
||||
@@ -94,7 +94,9 @@ Reference`_ should help you familiarize yourself with its syntax.
|
||||
Code Documentation Advice
|
||||
-------------------------
|
||||
|
||||
Comments clarify code and begin with a hash (``#``).
|
||||
Comments clarify the code and they are added with purpose of making the
|
||||
code easier to understand. In Python, comments begin with a hash
|
||||
(number sign) (``#``).
|
||||
|
||||
.. _docstring-ref:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user