@@ -1866,21 +1866,29 @@ <h2>Open source Flask example projects</h2>
18661866</ li >
18671867</ ul >
18681868< h2 > Flask framework learning checklist</ h2 >
1869- < p > < i class ="fa fa-check-square-o "> </ i >
1870- < a href ="http://flask.pocoo.org/docs/installation/ "> Install Flask</ a > on
1871- your local development machine.</ p >
1872- < p > < i class ="fa fa-check-square-o "> </ i >
1873- Work through the 18-part Flask tutorial listed first under "Flask resources"
1874- below.</ p >
1875- < p > < i class ="fa fa-check-square-o "> </ i >
1876- Read through < a href ="http://flask.pocoo.org/extensions/ "> Flask Extensions Registry</ a >
1877- to find out what extensions you'll need to build your project.</ p >
1878- < p > < i class ="fa fa-check-square-o "> </ i >
1879- Start coding your Flask app based on what you learned from the 18 part
1880- Flask tutorial plus open source example applications found below. </ p >
1881- < p > < i class ="fa fa-check-square-o "> </ i >
1882- Move on to the < a href ="/deployment.html "> deployment section</ a > to get your initial
1883- Flask project on the web.</ p >
1869+ < ol >
1870+ < li >
1871+ < p > < a href ="http://flask.pocoo.org/docs/installation/ "> Install Flask</ a > on
1872+ your local development machine.</ p >
1873+ </ li >
1874+ < li >
1875+ < p > Work through the 18-part Flask tutorial listed first under "Flask
1876+ resources" above.</ p >
1877+ </ li >
1878+ < li >
1879+ < p > Read through
1880+ < a href ="http://flask.pocoo.org/extensions/ "> Flask Extensions Registry</ a > to find
1881+ out what extensions you'll need to build your project.</ p >
1882+ </ li >
1883+ < li >
1884+ < p > Start coding your Flask app based on what you learned from the 18 part
1885+ Flask tutorial plus open source example applications found below. </ p >
1886+ </ li >
1887+ < li >
1888+ < p > Move on to the < a href ="/deployment.html "> deployment section</ a > to get your initial
1889+ Flask project on the web.</ p >
1890+ </ li >
1891+ </ ol >
18841892 < h1 > Bottle</ h1 >
18851893< p > < a href ="http://bottlepy.org/docs/dev/index.html "> Bottle</ a > is a WSGI-compliant
18861894< a href ="https://github.com/defnull/bottle/blob/master/bottle.py "> single source file</ a >
@@ -1930,19 +1938,25 @@ <h2>Open source Bottle example projects</h2>
19301938</ li >
19311939</ ul >
19321940< h2 > Bottle framework learning checklist</ h2 >
1933- < p > < i class ="fa fa-check-square-o "> </ i >
1934- < a href ="https://github.com/defnull/bottle/raw/master/bottle.py "> Download Bottle</ a > or
1935- install via pip with < code > pip install bottle</ code > on your local development machine.</ p >
1936- < p > < i class ="fa fa-check-square-o "> </ i >
1937- Work through the official
1938- < a href ="http://bottlepy.org/docs/dev/tutorial.html "> Bottle tutorial</ a > .</ p >
1939- < p > < i class ="fa fa-check-square-o "> </ i >
1940- Start coding your Bottle app based on what you learned in the official
1941- tutorial plus reading open source example applications found below. </ p >
1942- < p > < i class ="fa fa-check-square-o "> </ i >
1943- Move on to the < a href ="/deployment.html "> deployment section</ a > to get your initial
1944- Bottle application on the web.</ p >
1945- < h3 > What do you need to learn next?</ h3 >
1941+ < ol >
1942+ < li >
1943+ < p > < a href ="https://github.com/defnull/bottle/raw/master/bottle.py "> Download Bottle</ a >
1944+ or install via pip with < code > pip install bottle</ code > on your local development
1945+ machine.</ p >
1946+ </ li >
1947+ < li >
1948+ < p > Work through the official
1949+ < a href ="http://bottlepy.org/docs/dev/tutorial.html "> Bottle tutorial</ a > .</ p >
1950+ </ li >
1951+ < li >
1952+ < p > Start coding your Bottle app based on what you learned in the official
1953+ tutorial plus reading open source example applications found below. </ p >
1954+ </ li >
1955+ < li >
1956+ < p > Move on to the < a href ="/deployment.html "> deployment section</ a > to get your initial
1957+ Bottle application on the web.</ p >
1958+ </ li >
1959+ </ ol >
19461960 < h1 > Pyramid</ h1 >
19471961< p > < a href ="http://www.pylonsproject.org/projects/pyramid/about "> Pyramid</ a > is an open
19481962source < a href ="/wsgi-servers.html "> WSGI</ a > web framework based on the
@@ -1979,7 +1993,6 @@ <h2>Pyramid resources</h2>
19791993 modern frameworks.</ p >
19801994</ li >
19811995</ ul >
1982- < h3 > Learn more about frameworks or continue building your Pyramid app?</ h3 >
19831996 < h2 > Morepath</ h2 >
19841997< p > < a href ="http://morepath.readthedocs.org/en/latest/ "> Morepath</ a > is a micro web
19851998framework with a model-driven approach to creating web applications and web
@@ -2011,7 +2024,6 @@ <h3>Morepath resources</h3>
20112024 at EuroPython 2014.</ p >
20122025</ li >
20132026</ ul >
2014- < h3 > Do you want to learn more about frameworks or web APIs?</ h3 >
20152027 < h1 > Other Web Frameworks</ h1 >
20162028< p > Python has a significant number of web frameworks outside the usual Django,
20172029Flask, Pyramid and Bottle suspects.</ p >
@@ -2070,16 +2082,19 @@ <h2>Other web framework resources</h2>
20702082</ li >
20712083</ ul >
20722084< h2 > Other frameworks learning checklist</ h2 >
2073- < p > < i class ="fa fa-check-square-o "> </ i >
2074- Read through the web frameworks listed above and check out their project
2075- websites. </ p >
2076- < p > < i class ="fa fa-check-square-o "> </ i >
2077- It's useful to know what other web frameworks exist besides Django and Flask.
2078- However, when you're just starting to learn to program there are significantly
2079- more tutorials and resources for < a href ="/django.html "> Django</ a > and
2080- < a href ="/flask.html "> Flask</ a > on the web. My recommendation is to start with one of
2081- those two frameworks then expand your knowledge from there.</ p >
2082- < h3 > What do you need to learn next?</ h3 >
2085+ < ol >
2086+ < li >
2087+ < p > Read through the web frameworks listed above and check out their project
2088+ websites. </ p >
2089+ </ li >
2090+ < li >
2091+ < p > It's useful to know what other web frameworks exist besides Django and
2092+ Flask. However, when you're just starting to learn to program there are
2093+ significantly more tutorials and resources for < a href ="/django.html "> Django</ a > and
2094+ < a href ="/flask.html "> Flask</ a > on the web. My recommendation is to start with one of
2095+ those two frameworks then expand your knowledge from there.</ p >
2096+ </ li >
2097+ </ ol >
20832098 < h1 > Web Design</ h1 >
20842099< p > Web design is the creation of a web application's style and user interaction
20852100using CSS and JavaScript.</ p >
0 commit comments