Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
d60 authored Mar 30, 2024
1 parent 899d7c1 commit 4794c59
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion twikit/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def search_tweet(
...
...
>>> latest_tweets = tweets.next() # Retrieve latest tweets
>>> previous_tweets = tweets.previous() # Retrieve previous tweets
"""
product = product.capitalize()

Expand Down Expand Up @@ -1518,6 +1518,8 @@ def get_user_tweets(
...
...
>>> previous_tweets = tweets.previous() # Retrieve previous tweets
See Also
--------
.get_user_by_screen_name
Expand Down
6 changes: 5 additions & 1 deletion twikit/twikit_async/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,8 @@ async def search_tweet(
...
...
>>> latest_tweets = await tweets.next() # Retrieve latest tweets
>>> # Retrieve previous tweets
>>> previous_tweets = await tweets.previous()
"""
product = product.capitalize()

Expand Down Expand Up @@ -1552,6 +1553,9 @@ async def get_user_tweets(
...
...
>>> # Retrieve previous tweets
>>> previous_tweets = await tweets.previous()
See Also
--------
.get_user_by_screen_name
Expand Down

0 comments on commit 4794c59

Please sign in to comment.