summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLawouach <sh@defuze.org>2014-05-20 22:22:28 +0200
committerLawouach <sh@defuze.org>2014-05-20 22:22:28 +0200
commit8f2500e93cd7a945ab59ff141b1969a7562bc6d3 (patch)
treebd6ad55a6eef0f368360d8a39173b9c4a7a85ddb
parent8c2e562c0f9e3b4b05d55d5a2d2375238d212d09 (diff)
downloadcherrypy-8f2500e93cd7a945ab59ff141b1969a7562bc6d3.tar.gz
a little more intro
-rw-r--r--sphinx/source/index.rst17
1 files changed, 14 insertions, 3 deletions
diff --git a/sphinx/source/index.rst b/sphinx/source/index.rst
index ed3c9970..0ccc48aa 100644
--- a/sphinx/source/index.rst
+++ b/sphinx/source/index.rst
@@ -16,14 +16,14 @@ CherryPy - A Minimalist Python Web Framework
contribute.rst
glossary.rst
-CherryPy is a pythonic, object-oriented web framework.
+`CherryPy <http://www.cherrypy.org>`_ is a pythonic, object-oriented web framework.
CherryPy allows developers to build web applications in much the
same way they would build any other object-oriented Python program.
This results in smaller source code developed in less time.
-CherryPy is now more than seven years old and it is has proven to
-be very fast and stable. It is being used in production by many
+CherryPy is now more than ten years old and it is has proven to
+be fast and reliable. It is being used in production by many
sites, from the simplest to the most demanding.
A CherryPy application typically looks like this:
@@ -38,3 +38,14 @@ A CherryPy application typically looks like this:
return "Hello World!"
cherrypy.quickstart(HelloWorld())
+
+In order to make the most of CherryPy, you should start
+with the :ref:`tutorials <tutorials>` that will lead you through the most common
+aspects of the framework. Once done, you will probably want to
+browse through the :ref:`basics <basics>` and :ref:`advanced <advanced>`
+sections that will demonstrate how to implement certain operations.
+Finally, you will want to carefully read the configuration and
+:ref:`extend <extend>` sections that go in-depth regarding the
+powerful features provided by the framework.
+
+Above all, have fun with your application!