Skip to content

Commit 42f6588

Browse files
author
Kenneth Reitz
committed
better skeleton
1 parent 8c93e77 commit 42f6588

6 files changed

Lines changed: 133 additions & 18 deletions

File tree

docs/contents.rst.inc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@ instructions for web development with Flask.
1010

1111
foreword
1212
installation
13+
which-python
14+
dev-env
1315
useful-tools
1416
tutorial/index
1517
project-structure
18+
documentation
19+
testing
1620
packaging
1721
templating
1822
testing

docs/dev-env.rst

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
Your Development Environment
2+
============================
3+
4+
Testing your code is very important.
5+
6+
7+
Editors
8+
:::::::
9+
10+
11+
Text Editors
12+
-------------
13+
14+
15+
16+
IDEs
17+
----
18+
19+
20+
21+
Interpreter Tools
22+
:::::::::::::::::
23+
24+
25+
virtualenv
26+
----------
27+
28+
29+
virtualenvwrapper
30+
-----------------
31+
32+
33+
34+
Other Tools
35+
:::::::::::
36+
37+
IPython
38+
-------
39+
40+
::
41+
42+
$ pip install ipython
43+
44+
45+
46+
BPython
47+
-------
48+
49+
::
50+
51+
$ pip install bpython
52+
53+

docs/documentation.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Documenting Your Code
2+
=====================
3+
4+
Documenting your code is extremely important. It is debatebly even
5+
more important than testing.
6+
7+
8+
The Basics
9+
::::::::::
10+
11+
12+
Code Comments
13+
-------------
14+
15+
16+
17+
Doc Strings
18+
-----------
19+
20+

docs/testing.rst

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Testing Your Code
2+
=====================
3+
4+
Testing your code is very important.
5+
6+
7+
The Basics
8+
::::::::::
9+
10+
11+
Code Comments
12+
-------------
13+
14+
15+
16+
Doc Strings
17+
-----------
18+
19+
20+
Tools
21+
:::::
22+
23+
24+
Unittest2
25+
---------
26+
27+
28+
tox
29+
---
30+
31+

docs/useful-tools.rst

Lines changed: 0 additions & 18 deletions
This file was deleted.

docs/which-python.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Picking an Interpreter
2+
======================
3+
4+
Which Python to use?
5+
6+
7+
2.x vs 3.x
8+
::::::::::
9+
10+
11+
12+
History
13+
-------
14+
15+
16+
17+
Today
18+
-----
19+
20+
Use 2.7.
21+
22+
23+
24+
Which Python to Support?
25+
::::::::::::::::::::::::

0 commit comments

Comments
 (0)