Skip to content

Commit

Permalink
merged twintproject#1307 to master
Browse files Browse the repository at this point in the history
  • Loading branch information
utkarsh512 authored Mar 4, 2022
1 parent e7c8a0c commit 4bf099d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions twint/url.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async def MobileProfile(username, init):
async def Search(config, init):
logme.debug(__name__ + ':Search')
url = base
tweet_count = 100
tweet_count = 100 if not config.Limit else config.Limit
q = ""
params = [
# ('include_blocking', '1'),
Expand All @@ -89,7 +89,7 @@ async def Search(config, init):
('send_error_codes', 'true'),
('simple_quoted_tweet', 'true'),
('count', tweet_count),
# ('query_source', 'typed_query'),
('query_source', 'typed_query'),
# ('pc', '1'),
('cursor', str(init)),
('spelling_corrections', '1'),
Expand Down

0 comments on commit 4bf099d

Please sign in to comment.