From eb902b6941c17fd6d61fcb0546b2e593d972245d Mon Sep 17 00:00:00 2001 From: trevor hobenshield Date: Sat, 15 Apr 2023 11:33:32 -0700 Subject: [PATCH] updated search, add `limit` param, don't just dump to disk --- readme.md | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 7d571af..6d98476 100644 --- a/readme.md +++ b/readme.md @@ -196,6 +196,7 @@ search( 'skateboarding baseball guitar', 'cheese bread butter', 'ios android', + # limit=1000, # optional limit ) ``` diff --git a/setup.py b/setup.py index cce3c2f..3ceb96c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ install_requires = [ setup( name="twitter-api-client", - version="0.6.2", + version="0.6.3", python_requires=">=3.11.0", description="Twitter API", long_description=dedent(''' @@ -204,6 +204,7 @@ setup( 'skateboarding baseball guitar', 'cheese bread butter', 'ios android', + # limit=1000, # optional limit ) ``` '''),