We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e55789 commit 8ba32faCopy full SHA for 8ba32fa
1 file changed
newsapi/newsapi_client.py
@@ -229,6 +229,14 @@ def get_everything( # noqa: C901
229
See :data:`newsapi.const.sort_method` for the set of allowed values.
230
:type sort_by: str or None
231
232
+ :param page: The number of results to return per page (request).
233
+ 20 is the default, 100 is the maximum.
234
+ :type page: int or None
235
+
236
+ :param page_size: Use this to page through the results if the total results found is
237
+ greater than the page size.
238
+ :type page_size: int or None
239
240
:return: JSON response as nested Python dictionary.
241
:rtype: dict
242
:raises NewsAPIException: If the ``"status"`` value of the response is ``"error"`` rather than ``"ok"``.
0 commit comments