diff options
| author | Paul Everitt <paul@agendaless.com> | 2013-06-11 14:54:58 -0400 |
|---|---|---|
| committer | Paul Everitt <paul@agendaless.com> | 2013-06-11 14:54:58 -0400 |
| commit | 47eaa189e115936a86357380accd8d472e4d9a6c (patch) | |
| tree | 5fecfd689405242e49d442c1dfaf29cd19fdce99 /docs/getting_started/index.rst | |
| parent | 5832ca31ecd9bea02f32ff90c56bab52114541da (diff) | |
| download | pyramid-47eaa189e115936a86357380accd8d472e4d9a6c.tar.gz pyramid-47eaa189e115936a86357380accd8d472e4d9a6c.tar.bz2 pyramid-47eaa189e115936a86357380accd8d472e4d9a6c.zip | |
About half of the first pass is done.
Diffstat (limited to 'docs/getting_started/index.rst')
| -rw-r--r-- | docs/getting_started/index.rst | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/docs/getting_started/index.rst b/docs/getting_started/index.rst new file mode 100644 index 000000000..6396a8e6c --- /dev/null +++ b/docs/getting_started/index.rst @@ -0,0 +1,104 @@ +============================ +Getting Started With Pyramid +============================ + +Welcome to Pyramid, the Python web framework that lets you start small +and finish big. Whether you are new to Python web development or you're +an experienced developer that wants a quick look at the major +features, this guide provides a convenient entry point with independent +chapters for each topic. + +:doc:`quick_glance` +=================== + +Python web development is a very big topic. Wouldn't it be great to +have a quick overview, end-to-end, just to get oriented? This chapter +shows "a little about a lot", full of short code snippets and links to +deeper treatment of topics. Additionally, we showcase some facilities +that make Pyramid unique for "applications with ambition." + +:doc:`about_guide` +================== + +Now that we have set the scene, we explain the purpose of this guide +(and non-purpose), showing how it is organized. + + +:doc:`scaffolds` +================ + +Pyramid projects are organized using normal Python facilities for +projects. Normal, though, is in the eye of the beholder. This chapter +shows how to use scaffolds to automate the boilerplate and quickly +start development of a new project. + +Topics: scaffolds, packaging, virtual environments + +:doc:`configuration` +==================== + + +:doc:`routes` +============= + +:doc:`views` +============ + +:doc:`templates` +================ + +:doc:`static_assets` +==================== + +:doc:`testing` +============== + +:doc:`forms` +============ + +:doc:`databases` +================ + +:doc:`security` +=============== + +:doc:`json` +=========== + + +:doc:`sessions` +=============== + +:doc:`internationalization` +=========================== + + +:doc:`special_views` +==================== + +:doc:`top_ten` +============== + +Contents +======== + +.. toctree:: + :maxdepth: 2 + + quick_glance + about_guide + scaffolds + configuration + routes + views + templates + static_assets + testing + forms + databases + security + json + sessions + internationalization + special_views + top_ten
\ No newline at end of file |
