Skip to content

1.7.0

Compare
Choose a tag to compare
@andrii-bodnar andrii-bodnar released this 02 Nov 15:31
· 115 commits to main since this release
5d06f5b

Added

  • Add with_fetch_all functionality in #55 by @ayatsyny

    This 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())