|
75 | 75 | <div class="row"> |
76 | 76 | <div class="col-md-8"> |
77 | 77 | <h1>Introduction</h1> |
78 | | - <p>You're knee deep in learning the <a class="reference external" href="http://www.python.org/">Python</a> |
| 78 | +<p>You're knee deep in learning the <a href="http://www.python.org/">Python</a> |
79 | 79 | programming language. The syntax is starting to make sense. The first |
80 | | -few "AHA!" moments are hitting you as you're building applications with |
81 | | -a web framework.</p> |
| 80 | +few "AHA!" moments are hitting you as you're building applications with |
| 81 | +a web framework. </p> |
82 | 82 | <p>Now you want to know how to take your web application code and make it |
83 | 83 | live on the Web. That's where this guide comes in. If you want to gain |
84 | 84 | an understanding of everything you need to deploy and run a production Python |
85 | | -web application, you've come to the right place.</p> |
86 | | -<p>If you're not yet ready to deploy your application there are a few other |
87 | | -fantastic Python guides that you can read first:</p> |
88 | | -<ul class="simple"> |
89 | | -<li>For general Python learning, read Kenneth Reitz's |
90 | | -<a class="reference external" href="http://docs.python-guide.org/en/latest/">The Hitchhiker’s Guide to Python</a>.</li> |
91 | | -<li>To get an introduction to both Python and Django at the same time, read |
92 | | -<a class="reference external" href="http://www.realpython.com/">Real Python</a> by Fletcher, Michael, and Jeremy.</li> |
93 | | -<li>If you're not coming in with any software development background, |
94 | | -you may find my post on |
95 | | -<a class="reference external" href="http://www.mattmakai.com/learning-python-for-non-developers.html">Learning Python</a> |
96 | | -useful.</li> |
| 85 | +web application, you've come to the right place. </p> |
| 86 | +<p>If you're not yet ready to deploy your application there are a few other |
| 87 | +fantastic Python guides that you can read first: </p> |
| 88 | +<ul> |
| 89 | +<li> |
| 90 | +<p>For general Python learning, read Kenneth Reitz's |
| 91 | + <a href="http://docs.python-guide.org/en/latest/">The Hitchhiker’s Guide to Python</a>.</p> |
| 92 | +</li> |
| 93 | +<li> |
| 94 | +<p>To get an introduction to both Python and Django at the same time, read |
| 95 | + <a href="http://www.realpython.com/">Real Python</a> by Fletcher, Michael, and Jeremy.</p> |
| 96 | +</li> |
| 97 | +<li> |
| 98 | +<p>If you're not coming in with any software development background, |
| 99 | + you may find my post on |
| 100 | + <a href="http://www.mattmakai.com/learning-python-for-non-developers.html">Learning Python</a> |
| 101 | + useful.</p> |
| 102 | +</li> |
97 | 103 | </ul> |
98 | | -<p>This guide has a different focus from the above resources. Here you will |
99 | | -learn what server options exist, which operating system to use, what the |
100 | | -Web Server Gateway Interface (WSGI) standard is, and so on up through the |
| 104 | +<p>This guide has a different focus from the above resources. Here you will |
| 105 | +learn what server options exist, which operating system to use, what the |
| 106 | +Web Server Gateway Interface (WSGI) standard is, and so on up through the |
101 | 107 | action that takes place in the user's browser.</p> |
102 | | -<p>Read on once you have a basic Python understanding and are ready to |
| 108 | +<p>Read on once you have a basic Python understanding and are ready to |
103 | 109 | learn more about the full Python web stack.</p> |
104 | | - |
105 | 110 | <br/> |
106 | 111 | Next read the |
107 | 112 | <a href="/servers.html">servers</a> section. |
|
0 commit comments