From f3578e1038f0d45d7930f7aa0032307467674561 Mon Sep 17 00:00:00 2001 From: JaZahn Date: Fri, 14 Jul 2023 12:32:00 -0400 Subject: [PATCH] updating typo in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2e663e3..32ab132 100644 --- a/README.md +++ b/README.md @@ -78,14 +78,14 @@ Next is probably the reason you're using this library. This helps simplify pagin import pds pds_api = pds.People(apikey-'12345', batch=50) -response = pds_api(query={ +response = pds_api.search(query={ "fields": [ "univid" ], "conditions": { "names.name": "jazahn" } -}) +}, pagination=True) total_results = response['total_results'] results = response['results']