diff --git a/feedly/api_client/stream.py b/feedly/api_client/stream.py index 5aa1777..a06d95d 100644 --- a/feedly/api_client/stream.py +++ b/feedly/api_client/stream.py @@ -110,9 +110,9 @@ class StreamOptions: to produce url parameters """ - def __init__(self, max_count: int = 100): + def __init__(self, max_count: int = 100, ranked: str = "newest"): self.count: int = 20 - self.ranked: str = "newest" + self.ranked: str = ranked self.unreadOnly: bool = False self.newerThan: int = None self._max_count = max_count diff --git a/setup.py b/setup.py index d76ac94..13d040b 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ EMAIL = "ml@feedly.com" AUTHOR = "Feedly" REQUIRES_PYTHON = ">=3.6.0" -VERSION = "0.24" +VERSION = "0.25" # What packages are required for this module to be executed? with open("requirements.txt") as f: