-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
129 lines (121 loc) · 4.49 KB
/
index.html
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<title>
Introduction to Tornado by Mike Dory, Allison Parrish, and Brendan Berg
</title>
<link rel="stylesheet" href="stylesheets/styles.css" />
<link rel="stylesheet" href="stylesheets/pygment_trac.css" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<h1>Introduction to Tornado</h1>
<p>
This is the sample code for the Introduction to Tornado book,
published by O'Reilly Media.
</p>
<p class="view">
<a
href="https://github.com/Introduction-to-Tornado/Introduction-to-Tornado"
>View the Project on GitHub
<small>Introduction-to-Tornado/Introduction-to-Tornado</small></a
>
</p>
<ul>
<li>
<a
href="https://github.com/Introduction-to-Tornado/Introduction-to-Tornado/zipball/master"
>Download <strong>ZIP File</strong></a
>
</li>
<li>
<a
href="https://github.com/Introduction-to-Tornado/Introduction-to-Tornado/tarball/master"
>Download <strong>TAR Ball</strong></a
>
</li>
<li>
<a
href="https://github.com/Introduction-to-Tornado/Introduction-to-Tornado"
>Fork On <strong>GitHub</strong></a
>
</li>
</ul>
</header>
<section>
<h1>
<a href="http://shop.oreilly.com/product/0636920021292.do"
>Introduction to Tornado</a
>
</h1>
<p><em>by Michael Dory, Allison Parrish, and Brendan Berg</em></p>
<p>
<a href="http://shop.oreilly.com/product/0636920021292.do"
><img
src="https://learning.oreilly.com/library/cover/9781449312787/512w/"
alt="Book cover"
title="Book cover"
/></a>
</p>
<p>
Tornado is a scalable, non-blocking web server and web application
framework written in Python. It is also light-weight to deploy, fun to
write for, and incredibly powerful. Tornado was written with
performance in mind, aiming to solve the C10k problem, so by design
it’s an extremely high-performance framework. It’s also packed with
handy tools for dealing with social networks, user authentication, and
all sorts of asynchronous fun. In this book, we’ll cover the basics of
the Tornado framework, starting with the features that make it so
great, and working our way towards some real-life examples. We’ll
cover the best practices for implementation and deployment, as well as
a sampling of uses for the technology.
</p>
<h2>Sample code for the book</h2>
<p>
These are the complete code examples for the chapters in the
<a href="http://shop.oreilly.com/product/0636920021292.do"
>O'Reilly book</a
>
of the same name, with complete application examples that you can run
on your own. These shouldn't require anything beyond the basic install
of Tornado and Python 2.6+, except for the MongoDB examples (which
obviously require MongoDB, as well as pymongo).
</p>
<h2>Contact</h2>
<p>
If you've got thoughts or questions, hit us up here or on social media
at <a href="http://twitter.com/aparrish">@aparrish</a>,
<a href="https://bsky.app/profile/gnuaesthetic.bsky.social"
>@gnuaesthatic.bsky.social</a
>, and <a href="http://twitter.com/mike_dory">@mike_dory</a>, or open
a pull request here.
</p>
</section>
<footer>
<p>
This project is maintained by
<a href="https://github.com/Introduction-to-Tornado"
>Introduction-to-Tornado</a
>
</p>
<p>
<small
>Hosted on GitHub Pages — Theme by
<a href="https://github.com/orderedlist">orderedlist</a></small
>
</p>
</footer>
</div>
<script src="javascripts/scale.fix.js"></script>
</body>
</html>