Michael Merickel
2018-10-16 8eed333343e4e9e7f11f3aee67299030d6bf2783
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
.. _index:
 
=========================
The Pyramid Web Framework
=========================
 
:app:`Pyramid` is a small, fast, down-to-earth Python web framework.  It is
developed as part of the `Pylons Project <https://pylonsproject.org>`_.
It is licensed under a `BSD-like license <http://repoze.org/license.html>`_.
 
Here is one of the simplest :app:`Pyramid` applications you can make:
 
.. literalinclude:: narr/helloworld.py
 
After you install :app:`Pyramid` and run this application, when you visit
`<http://localhost:6543/>`_ in a browser, you will see the text
``Hello World!`` See :ref:`firstapp_chapter` for a full explanation of how
this application works.
 
 
.. _getting_started:
 
Getting Started
===============
 
If you are new to Pyramid, we have a few resources that can help you get up to
speed right away.
 
.. toctree::
   :hidden:
 
   quick_tour
   quick_tutorial/index
 
* :doc:`quick_tour` gives an overview of the major features in Pyramid,
  covering a little about a lot.
 
* Like learning by example? Visit the official :ref:`html_tutorials` as well as
  the community-contributed :ref:`Pyramid Tutorials
  <tutorials:pyramid-tutorials>` and :ref:`Pyramid Community Cookbook
  <cookbook:pyramid-cookbook>`.
 
* For help getting Pyramid set up, try :ref:`installing_chapter`.
 
* Need help?  See :ref:`Support and Development <support-and-development>`.
 
 
.. _html_tutorials:
 
Tutorials
=========
 
Official tutorials provide a quick overview of :app:`Pyramid`'s features in more depth than the Quick Tour and with working code, explain how to use :app:`Pyramid` to build various types of applications, and how to deploy :app:`Pyramid` applications to various platforms.
 
.. toctree::
   :maxdepth: 1
 
   quick_tutorial/index
   tutorials/wiki2/index
   tutorials/wiki/index
   tutorials/modwsgi/index
 
 
.. _support-and-development:
 
Support and Development
=======================
 
The `Pyramid website <https://trypyramid.com/documentation.html>`_ is the main
entry point to :app:`Pyramid` web framework resources for support and
development information.
 
To report bugs, use the `issue tracker
<https://github.com/Pylons/pyramid/issues>`_.
 
If you've got questions that aren't answered by this documentation, contact the
`Pylons-discuss maillist
<https://groups.google.com/forum/#!forum/pylons-discuss>`_ or join the
`#pyramid IRC channel
<https://webchat.freenode.net/?channels=pyramid>`_.
 
Browse and check out tagged and trunk versions of :app:`Pyramid` via the
`Pyramid GitHub repository <https://github.com/Pylons/pyramid/>`_. To check out
the trunk via ``git``, use either command:
 
.. code-block:: text
 
    # If you have SSH keys configured on GitHub:
    git clone git@github.com:Pylons/pyramid.git
 
    # Otherwise, HTTPS will work, using your GitHub login:
    git clone https://github.com/Pylons/pyramid.git
 
To find out how to become a contributor to :app:`Pyramid`, please see `How to Contribute Source Code and Documentation <https://pylonsproject.org/community-how-to-contribute.html>`_.
 
 
.. _html_narrative_documentation:
 
Narrative Documentation
=======================
 
Narrative documentation in chapter form explaining how to use :app:`Pyramid`.
 
.. toctree::
   :maxdepth: 2
 
   narr/introduction
   narr/install
   narr/firstapp
   narr/configuration
   narr/project
   narr/startup
   narr/router
   narr/urldispatch
   narr/views
   narr/renderers
   narr/templates
   narr/viewconfig
   narr/assets
   narr/webob
   narr/sessions
   narr/events
   narr/environment
   narr/logging
   narr/paste
   narr/commandline
   narr/i18n
   narr/vhosting
   narr/testing
   narr/resources
   narr/hellotraversal
   narr/muchadoabouttraversal
   narr/traversal
   narr/security
   narr/hybrid
   narr/subrequest
   narr/hooks
   narr/introspector
   narr/extending
   narr/advconfig
   narr/extconfig
   narr/cookiecutters
   narr/scaffolding
   narr/upgrading
   narr/threadlocals
   narr/zca
 
 
API Documentation
=================
 
Comprehensive reference material for every public API exposed by
:app:`Pyramid`:
 
.. toctree::
   :maxdepth: 1
   :glob:
 
   api/index
   api/*
 
 
``p*`` Scripts Documentation
============================
 
``p*`` scripts included with :app:`Pyramid`.
 
.. toctree::
   :maxdepth: 1
   :glob:
 
   pscripts/index
   pscripts/*
 
 
Change History
==============
 
.. toctree::
   :maxdepth: 1
 
   whatsnew-1.10
   whatsnew-1.9
   whatsnew-1.8
   whatsnew-1.7
   whatsnew-1.6
   whatsnew-1.5
   whatsnew-1.4
   whatsnew-1.3
   whatsnew-1.2
   whatsnew-1.1
   whatsnew-1.0
   changes
 
 
Design Documents
================
 
.. toctree::
   :maxdepth: 1
 
   designdefense
 
 
Copyright, Trademarks, and Attributions
=======================================
 
.. toctree::
   :maxdepth: 1
 
   copyright
 
 
Typographical Conventions and Style Guide
=========================================
 
.. toctree::
   :maxdepth: 1
 
   typographical-conventions
 
 
Index and Glossary
==================
 
* :ref:`glossary`
* :ref:`genindex`
* :ref:`search`
 
 
.. toctree::
   :hidden:
 
   glossary