FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
fullstackpython.github.com/index.html at gh-pages · hypertexthero/fullstackpython.github.com · GitHub
hypertexthero
/
fullstackpython.github.com
Public
forked from
mattmakai/fullstackpython.com
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
fullstackpython.github.com
/
index.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
113 lines (111 loc) · 6.04 KB
Breadcrumbs
fullstackpython.github.com
/
index.html
Copy path
File metadata and controls
113 lines (111 loc) · 6.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html
>
<
html
lang
="
en
"
>
<
head
>
<
meta
http-equiv
="
Content-Type
"
content
="
text/html; charset=UTF-8
"
>
<
meta
charset
="
utf-8
"
>
<
meta
http-equiv
="
X-UA-Compatible
"
content
="
IE=edge
"
>
<
meta
name
="
viewport
"
content
="
width=device-width, initial-scale=1.0
"
>
<
meta
name
="
author
"
content
="
Matt Makai
"
>
<
meta
name
="
description
"
content
="
Full Stack Python explains each layer of the web application stack, from the server up through the rendering in a user's browser.
"
>
<
link
rel
="
shortcut icon
"
href
="
theme/img/fsp-fav.png
"
>
<
title
>
Full Stack Python
</
title
>
<
link
href
="
theme/css/fsp.css
"
rel
="
stylesheet
"
>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<
link
href
="
//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css
"
rel
="
stylesheet
"
>
<
script
type
="
text/javascript
"
>
var
_gaq
=
_gaq
||
[
]
;
_gaq
.
push
(
[
'_setAccount'
,
'UA-19910497-7'
]
)
;
_gaq
.
push
(
[
'_trackPageview'
]
)
;
(
function
(
)
{
var
ga
=
document
.
createElement
(
'script'
)
;
ga
.
type
=
'text/javascript'
;
ga
.
async
=
true
;
ga
.
src
=
(
'https:'
==
document
.
location
.
protocol
?
'https://ssl'
:
'http://www'
)
+
'.google-analytics.com/ga.js'
;
var
s
=
document
.
getElementsByTagName
(
'script'
)
[
0
]
;
s
.
parentNode
.
insertBefore
(
ga
,
s
)
;
}
)
(
)
;
</
script
>
</
head
>
<
body
>
<
a
href
="
https://github.com/makaimc/fullstackpython.github.com
"
class
="
github
"
>
<
img
style
="
position: absolute; top: 0; right: 0; border: 0;
"
src
="
http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png
"
alt
="
Fork me on GitHub
"
/>
</
a
>
<
div
class
="
container
"
>
<
div
class
="
row
"
>
<
div
class
="
col-md-12
"
>
<
div
class
="
logo-header-section
"
>
<
a
href
="
/
"
style
="
text-decoration: none; border: none;
"
>
<
img
src
="
theme/img/fsp-logo.png
"
height
="
52
"
width
="
52
"
class
="
logo-image
"
style
="
padding-top: 1px;
"
/>
</
a
>
<
span
class
="
logo-title
"
>
<
a
href
="
/
"
>
Full Stack Python
</
a
>
</
span
>
</
div
>
</
div
>
</
div
>
<
div
class
="
row
"
>
<
div
class
="
col-md-8
"
>
<
h1
>
Introduction
</
h1
>
<
p
>
You're knee deep in learning the
<
a
href
="
http://www.python.org/
"
>
Python
</
a
>
programming language. The syntax is starting to make sense. The first
few "
<
em
>
ahh-ha
</
em
>
!" moments are hitting you as you're learning conditional
statements, for loops and classes while playing around with the open source
libraries that make Python such an amazing language.
</
p
>
<
p
>
Now you want to take your initial Python knowledge and make something real.
A real web application that's available on the web which you can show off or
sell as a service to other people. That's where Full Stack Python comes in.
You've come to the right place to learn everything you need to deploy and
run a production Python web application.
</
p
>
<
p
>
This guide branches out on topic because your learning needs depend on what
you're currently trying to do.
</
p
>
<
h3
>
Let's get started. What do you need to do right now?
</
h3
>
<
div
class
="
row
"
>
<
div
class
="
col-md-4
"
>
<
div
class
="
well select-next
"
>
<
a
href
="
/web-frameworks.html
"
class
="
btn btn-success btn-full
"
>
<
i
class
="
fa fa-code fa-inverse fa-2x
"
>
</
i
>
</
a
>
<
p
class
="
under-btn
"
>
I want to learn how to code a web application with Python.
</
p
>
</
div
>
</
div
>
<
div
class
="
col-md-4
"
>
<
div
class
="
well select-next
"
>
<
a
href
="
/deployment.html
"
class
="
btn btn-success btn-full
"
>
<
i
class
="
fa fa-share fa-2x
"
>
</
i
>
</
a
>
</
a
>
<
p
class
="
under-btn
"
>
I've already built a Python web application. I need to deploy it.
</
p
>
</
div
>
</
div
>
<
div
class
="
col-md-4
"
>
<
div
class
="
well select-next
"
>
<
a
href
="
/best-python-resources.html
"
class
="
btn btn-success btn-full
"
>
<
i
class
="
fa fa-book fa-inverse fa-2x
"
>
</
i
>
</
a
>
</
a
>
<
p
class
="
under-btn
"
>
I need to prepare myself with more basic Python resources first.
</
p
>
</
div
>
</
div
>
</
div
>
</
div
>
<
div
class
="
col-md-offset-1 col-md-3
"
id
="
sidebar
"
>
<
div
class
="
panel panel-success
"
>
<
div
class
="
panel-heading
"
>
<
h3
class
="
panel-head
"
>
Full Stack Python
</
h3
>
</
div
>
<
div
class
="
panel-body
"
>
<
a
href
="
/
"
>
Full Stack Python
</
a
>
is an open book that explains
each Python web application stack layer and provides the
best web resources for those topics.
<
hr
/>
<
a
href
="
http://twitter.com/mattmakai
"
>
Matt Makai
</
a
>
designed and
wrote this site with assistance from community pull
requests. If you're on GitHub you can
<
a
href
="
https://github.com/makaimc
"
>
follow him
</
a
>
to see what daily changes are made or
<
a
href
="
https://github.com/makaimc/fullstackpython.github.com
"
>
star the repository
</
a
>
for future reference.
<
hr
/>
Looking for a specific topic? Check out the
<
a
href
="
/table-of-contents.html
"
>
table of contents
</
a
>
.
</
div
>
</
div
>
</
div
>
</
div
>
<
hr
/>
<
div
class
="
footer pull-right
"
>
<
a
href
="
http://www.mattmakai.com/
"
class
="
underline
"
>
Matt Makai
</
a
>
2014
</
div
>
</
div
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL