@@ -174,23 +174,48 @@ more minimal and may be easier to comprehend off the bat.
174174Sessions 5 & 6 - Flask
175175----------------------
176176
177- * `Web Application Frameworks
178- <http://en.wikipedia.org/wiki/Web_application_framework> `_
177+ In order to properly prepare for class, you *must * work through the three
178+ tutorials linked below. You will be expected to know this material before
179+ session 5 begins. The documentation readings associated with these tutorials
180+ are there for further reference, and to help you find answers to questions that
181+ arise while you do the tutorials themselves.
182+
183+ Jinja2
184+ ++++++
185+
186+ * `Jinja2 Template Tutorial <presentations/template_tutorial-plain.html >`_
179187
180188* `Jinja2 - Python page templates <http://jinja.pocoo.org/docs/ >`_ - We'll
181189 learn something about templating in Python, starting with the Jinja2
182190 templating language. Focus primarily on the `templating documentation
183191 <http://jinja.pocoo.org/docs/templates/> `_, which provides a reasonable,
184192 non-technical introduction to the language and how it is used.
185193
194+ SQLite3
195+ +++++++
196+
197+ * `SQL Persistence Tutorial <presentations/sql_persistence_tutorial-plain.html >`_
198+
186199* `sqlite3 - DB API for sqlite3 <http://pymotw.com/2/sqlite3/index.html >`_ -
187200 We'll need a bit of familiarity with the sqlite3 module. How to open
188201 connections, execute queries, and read the results from a cursor. Just read
189202 the first two sections ('Creating a Database' and 'Retrieving Data').
190203
204+ Flask
205+ +++++
206+
207+ * `Flask Walkthrough <presentations/lask_walkthrough-plain.html >`_
208+
191209* `Flask Documentation <http://flask.pocoo.org/docs/ >`_ - Read the Foreward,
192210 Installation and Quickstart sections.
193211
212+
213+ Additional Readings
214+ +++++++++++++++++++
215+
216+ * `Web Application Frameworks
217+ <http://en.wikipedia.org/wiki/Web_application_framework> `_
218+
194219* `Unittest - Unit Testing Framework
195220 <http://docs.python.org/2/library/unittest.html> `_ - Starting in this module
196221 we'll begin writing tests to cover our code. Start learning how. For more,
0 commit comments