You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ The ``--endpoint`` flag will specify the full URL of your connection, e.g.:
53
53
54
54
You can find this url in your developer console.
55
55
56
-
Note that the ``--max-results`` flag specifies an argument to the API call (results returned per CALL), not as a hard max to number of results returned from this program. use ``--max-tweets`` for that for now.
56
+
Note that the ``--results-per-call`` flag specifies an argument to the API call ( ``maxResults``, results returned per CALL), not as a hard max to number of results returned from this program. use ``--max-results`` for that for now.
57
57
58
58
59
59
@@ -64,8 +64,8 @@ Note that the ``--max-results`` flag specifies an argument to the API call (resu
64
64
python twitter_search.py \
65
65
--bearer-token <BEARER_TOKEN> \
66
66
--endpoint <MY_ENDPOINT> \
67
-
--max-tweets 1000 \
68
-
--max-results 100 \
67
+
--max-results 1000 \
68
+
--results-per-call 100 \
69
69
--filter-rule "beyonce has:hashtags" \
70
70
--print-stream
71
71
@@ -78,8 +78,8 @@ Note that the ``--max-results`` flag specifies an argument to the API call (resu
78
78
--user-name <USERNAME> \
79
79
--password <PW> \
80
80
--endpoint <MY_ENDPOINT> \
81
-
--max-tweets 1000 \
82
-
--max-results 100 \
81
+
--max-results 1000 \
82
+
--results-per-call 100 \
83
83
--filter-rule "beyonce has:hashtags" \
84
84
--filename-prefix beyonce_geo \
85
85
--print-stream
@@ -93,8 +93,8 @@ Note that the ``--max-results`` flag specifies an argument to the API call (resu
93
93
--user-name <USERNAME> \
94
94
--password <PW> \
95
95
--endpoint <MY_ENDPOINT> \
96
-
--max-tweets 100 \
97
96
--max-results 100 \
97
+
--results-per-call 100 \
98
98
--filter-rule "beyonce has:hashtags" \
99
99
--filename-prefix beyonce_geo \
100
100
--no-print-stream
@@ -122,7 +122,7 @@ It can be far easier to specify your information in a configuration file. An exa
0 commit comments