from truefoundry import TrueFoundryclient = TrueFoundry( api_key="YOUR_API_KEY", base_url="https://yourhost.com/path/to/api",)client.list( limit=10, offset=10,)# Iterate through resultsfor item in response: print(item.name)# Or paginate page by pagefor page in response.iter_pages(): for item in page: print(item.name)