equal
deleted
inserted
replaced
12 |
12 |
13 Byte compile .py and check for errors. |
13 Byte compile .py and check for errors. |
14 ====================================== |
14 ====================================== |
15 :: |
15 :: |
16 |
16 |
17 $ python -m compileall dir |
17 $ python -m compileall $dir |
18 |
18 |
19 Install python modules/packages. |
19 Install python modules/packages. |
20 ================================ |
20 ================================ |
21 |
21 |
22 http://wiki.python.org/moin/CheeseShopTutorial |
22 http://wiki.python.org/moin/CheeseShopTutorial |
31 $ rm `cat files.txt` |
31 $ rm `cat files.txt` |
32 |
32 |
33 http://peak.telecommunity.com/DevCenter/EasyInstall#uninstalling-packages |
33 http://peak.telecommunity.com/DevCenter/EasyInstall#uninstalling-packages |
34 Uninstalling Packages |
34 Uninstalling Packages |
35 |
35 |
|
36 Generate documentation from Python sources. |
|
37 =========================================== |
|
38 |
|
39 Generate documentation from Python sources by pydoc. |
|
40 ---------------------------------------------------- |
|
41 :: |
|
42 |
|
43 $ mkdir html |
|
44 $ cd html |
|
45 $ pydoc -w ../ |
|
46 |
|
47 Generate documentation from Python sources by epydoc. |
|
48 ----------------------------------------------------- |
|
49 |
|
50 Generate documentation from Python sources by Sphinx. |
|
51 ----------------------------------------------------- |
|
52 |
36 Code analyzers and style checkers. |
53 Code analyzers and style checkers. |
37 ================================== |
54 ================================== |
38 |
55 |
39 Pylint. |
56 Pylint. |
40 ------- |
57 ------- |