-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (73 loc) · 4.14 KB
/
index.html
File metadata and controls
96 lines (73 loc) · 4.14 KB
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
<!doctype html>
<!--[if lt IE 7 ]> <html class="no-js ie6 ie" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="no-js ie7 ie" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="no-js ie8 ie" lang="en"> <![endif]-->
<!--[if IE 9 ]> <html class="no-js ie9 ie" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html class="no-js no-ie" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Pecan</title>
<meta name="description" content="A WSGI object-dispatch Python web framework, designed to be lean and fast, with few dependencies.">
<meta name="author" content="Jonathan LaCour">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon-72x72.png" sizes="72x72" />
<link rel="apple-touch-icon" href="/apple-touch-icon-114x114.png" sizes="114x114" />
<link rel="stylesheet" type="text/css" href="stylesheets/style.css?v=2" />
<script src="javascripts/libs/modernizr-2.0.6.min.js"></script>
</head>
<body>
<header>
<img src="images/logo.png" alt="Pecan" />
<nav>
<ul>
<li><a href="http://pecan.readthedocs.org/en/latest/installation.html">Download</a></li>
<li><a href="http://pecan.readthedocs.org">Documentation</a></li>
<li><a href="https://groups.google.com/forum/#!forum/pecan-dev">Mailing List</a></li>
<li><a href="http://github.com/pecan/pecan">Source</a></li>
</ul>
</nav>
</header>
<section id="main">
<p class="big">Welcome to Pecan, a lean Python web framework inspired by CherryPy, TurboGears, and Pylons. Pecan was originally created by the developers of <a href="http://shootq.com" target="window">ShootQ</a> while working at <a href="https://www.slrlounge.com/pictage-finally-closes-its-doors/" target="window">Pictage</a>.</p>
<p class="screenshot">
<img src="images/preview.png" alt="A sample project utilizing Pecan" />
</p>
<p>Pecan was created to fill a void in the Python web-framework world – a very lightweight framework that provides object-dispatch style routing. Pecan does not aim to be a "full stack" framework, and therefore includes no out of the box support for things like sessions or databases. Pecan instead focuses on HTTP itself.</p>
<p>Although it is lightweight, Pecan does offer an extensive feature set for building HTTP-based applications, including:</p>
<ul>
<li>Object-dispatch for easy routing</li>
<li>Full support for REST-style controllers</li>
<li>Extensible security framework</li>
<li>Extensible template language support</li>
<li>Extensible JSON support</li>
<li>Easy Python-based configuration</li>
</ul>
<p>While Pecan doesn't provide support for sessions or databases out of the box, tutorials are included for integrating these yourself in just a few lines of code.</p>
</section>
<div class="notice">
<p><a href="http://pecan.readthedocs.org">Check out our documentation</a> or <a href="http://github.com/pecan/pecan/">view our project on github</a></p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="/javascripts/libs/jquery.1.6.2.min.js"%3E%3C/script%3E'))</script>
<script src="javascripts/plugins.js"></script>
<script src="javascripts/script.js"></script>
<!--[if lt IE 7 ]>
<script src="/javascripts/libs/dd_belatedpng.js"></script>
<script> DD_belatedPNG.fix('img, .png_bg'); </script>
<![endif]-->
<!-- change the UA-XXXXX-X to be your site's ID -->
<script>
var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
(function(d, t) {
var g = d.createElement(t),
s = d.getElementsByTagName(t)[0];
g.async = true;
g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
s.parentNode.insertBefore(g, s);
})(document, 'script');
</script>
</body>
</html>