From adbbc9b60da2fe925cebd813d0bdd871db8b3cd6 Mon Sep 17 00:00:00 2001 From: Dan McKinley Date: Wed, 29 May 2019 18:02:33 -0700 Subject: [PATCH] adding pugsql --- docs/scenarios/db.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/scenarios/db.rst b/docs/scenarios/db.rst index ecdb830..2121747 100644 --- a/docs/scenarios/db.rst +++ b/docs/scenarios/db.rst @@ -48,6 +48,19 @@ programmatically or exported to a number of useful data formats. Also included is a command-line tool for exporting SQL data. +****** +PugSQL +****** + +`PugSQL `_ is a simple Python interface for organizing +and using parameterized, handwritten SQL. It is an anti-ORM that is +philosophically lo-fi, but it still presents a clean interface in Python. + +.. code-block:: console + + $ pip install pugsql + + ********** Django ORM **********