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)