-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix broken image and update social media link
- Loading branch information
1 parent
5384c97
commit 26b1188
Showing
1 changed file
with
103 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,129 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="chrome=1"> | ||
<title>Introduction to Tornado by Mike Dory, Adam 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"> | ||
<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> | ||
<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> | ||
<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> | ||
<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> | ||
<h1> | ||
<a href="http://shop.oreilly.com/product/0636920021292.do" | ||
>Introduction to Tornado</a | ||
> | ||
</h1> | ||
|
||
<p><em>by Michael Dory, Adam Parrish, and Brendan Berg</em></p> | ||
<p><em>by Michael Dory, Allison Parrish, and Brendan Berg</em></p> | ||
|
||
<p><a href="http://shop.oreilly.com/product/0636920021292.do"><img src="http://akamaicovers.oreilly.com/images/0636920021292/cat.gif" alt="Book cover" title="Book cover"></a></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> | ||
<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> | ||
<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> | ||
<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> | ||
<h2>Contact</h2> | ||
|
||
<p>If you've got thoughts or questions, hit us up here or on Twitter at <a href="http://twitter.com/aparrish">@aparrish</a>, <a href="http://twitter.com/brendn">@brendn</a>, and <a href="http://twitter.com/mike_dory">@mike_dory</a>, or open a pull request here.</p> | ||
<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> | ||
<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> | ||
</html> |