from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: res = latitudesh.regions.list(page_size=20, page_number=1) while res is not None: # Handle items res = res.next()
from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: res = latitudesh.regions.list(page_size=20, page_number=1) while res is not None: # Handle items res = res.next()