from notte_sdk import NotteClientnotte = NotteClient()# List all profiles with paginationprofiles = notte.profiles.list(page=1, page_size=10)for profile in profiles: print(f"Profile: {profile.profile_id}, name: {profile.name}")
from notte_sdk import NotteClientnotte = NotteClient()# List all profiles with paginationprofiles = notte.profiles.list(page=1, page_size=10)for profile in profiles: print(f"Profile: {profile.profile_id}, name: {profile.name}")