From f1c866452897dcfc5bda3e4d8f9ba8654c27c0d3 Mon Sep 17 00:00:00 2001 From: Igor Brigadir Date: Sat, 3 Jul 2021 01:01:12 +0100 Subject: [PATCH] temp fix for #504 --- twarc/client2.py | 2 +- twarc/command2.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/twarc/client2.py b/twarc/client2.py index 28bb357c..8eaae33c 100644 --- a/twarc/client2.py +++ b/twarc/client2.py @@ -200,7 +200,7 @@ def search_all( until_id=None, start_time=None, end_time=None, - max_results=500, + max_results=100, # temp fix for #504 ): """ Search Twitter for the given query in the full archive, diff --git a/twarc/command2.py b/twarc/command2.py index 692dbe4f..73761331 100644 --- a/twarc/command2.py +++ b/twarc/command2.py @@ -246,7 +246,7 @@ def search( # default number of tweets per response 500 when not set otherwise if max_results == 0: - max_results = 500 + max_results = 100, # temp fix for #504 else: if max_results == 0: max_results = 100