From ff71b2443e2ecbd89ad4668dc49715b1d63443a4 Mon Sep 17 00:00:00 2001 From: ljurk Date: Mon, 19 Nov 2018 12:36:42 +0000 Subject: [PATCH] correct example call in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6365b2..4ba0c8c 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Reading data from the Northwind service. from odata import ODataService url = 'http://services.odata.org/V4/Northwind/Northwind.svc/' Service = ODataService(url, reflect_entities=True) -Supplier = Service.entities['Supplier'] +Supplier = Service.entities['Suppliers'] query = Service.query(Supplier) query = query.limit(2)