We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45b179f commit 9553340Copy full SHA for 9553340
twint/url.py
@@ -67,7 +67,7 @@ async def MobileProfile(username, init):
67
async def Search(config, init):
68
logme.debug(__name__ + ':Search')
69
url = base
70
- tweet_count = 100
+ tweet_count = 100 if not config.Limit else config.Limit
71
q = ""
72
params = [
73
# ('include_blocking', '1'),
@@ -89,7 +89,7 @@ async def Search(config, init):
89
('send_error_codes', 'true'),
90
('simple_quoted_tweet', 'true'),
91
('count', tweet_count),
92
- # ('query_source', 'typed_query'),
+ ('query_source', 'typed_query'),
93
# ('pc', '1'),
94
('cursor', str(init)),
95
('spelling_corrections', '1'),
0 commit comments