1.7.0
Added
-
Add
with_fetch_all
functionality in #55 by @ayatsynyThis feature allows fetching all records from paginatable methods (where we have a limit and offset in arguments).
Example:
from crowdin_api import CrowdinClient client = CrowdinClient(token='__token__') # get all projects print(client.projects.with_fetch_all().list_projects()) # get projects but not more than 1000 print(client.projects.with_fetch_all(1000).list_projects())