From ff980b2ad4e2dfb533aaeaf4a2dfd240b7e69e33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20G=C3=B3mez=20Maitret?= <32964490+PoshoDev@users.noreply.github.com> Date: Tue, 19 Oct 2021 02:17:34 -0500 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 76e8069..9faab81 100644 --- a/README.md +++ b/README.md @@ -19,18 +19,18 @@ $ pip install loaf import loaf # Setup your credentials with a single line. -Loaf.bake(port=6969, db="pizzeria") +loaf.bake(port=6969, db="pizzeria") # Make a query easily. -result = Loaf.query("SELECT * from toppings") +result = loaf.query("SELECT * from toppings") print(result) # Not lazy enough? Try some of the pre-built queires. -result = Loaf.all("toppings") +result = loaf.all("toppings") print(result) # Got stored procedures? No problemo! -result = Loaf.call("ProcedureFindClient", 1) +result = loaf.call("ProcedureFindClient", 1) print(result) ```