summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorÉtienne BERSAC <bersace03@gmail.com>2018-12-04 12:04:02 +0100
committerSviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>2018-12-04 21:43:47 +0100
commit54e15a5d2c91b11ab535fe4026e909fb01082e4c (patch)
tree1dcce4b1eefd627eed468df09b5c35782099515a /docs
parent2b665235e8ab5c910896c24a042f76b77fa778dc (diff)
downloadcherrypy-git-54e15a5d2c91b11ab535fe4026e909fb01082e4c.tar.gz
docs: Fix link to wikipedia
Diffstat (limited to 'docs')
-rw-r--r--docs/advanced.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/advanced.rst b/docs/advanced.rst
index 3def3437..41f8cef6 100644
--- a/docs/advanced.rst
+++ b/docs/advanced.rst
@@ -561,12 +561,12 @@ is provided by an external library called
Database support
################
-CherryPy does not bundle any database access but its architecture
-makes it easy to integrate common database interfaces such as
-the DB-API specified in :pep:`249`. Alternatively, you can also
-use an `ORM <en.wikipedia.org/wiki/Object-relational_mapping>`_
-such as `SQLAlchemy <http://sqlalchemy.readthedocs.org>`_
-or `SQLObject <https://pypi.python.org/pypi/SQLObject/>`_.
+CherryPy does not bundle any database access but its architecture makes it easy
+to integrate common database interfaces such as the DB-API specified in
+:pep:`249`. Alternatively, you can also use an `ORM
+<https://en.wikipedia.org/wiki/Object-relational_mapping>`_ such as `SQLAlchemy
+<http://sqlalchemy.readthedocs.org>`_ or `SQLObject
+<https://pypi.python.org/pypi/SQLObject/>`_.
You will find `here <https://bitbucket.org/Lawouach/cherrypy-recipes/src/tip/web/database/sql_alchemy/>`_
a recipe on how integrating SQLAlchemy using a mix of