from notte_sdk import NotteClient
notte = NotteClient()
# Create a new browser profile with a name
profile = notte.profiles.create(name="my-profile")
print(f"Created profile: {profile.profile_id}")
# Cleanup
_ = notte.profiles.delete(profile.profile_id)
from notte_sdk import NotteClient
notte = NotteClient()
# Create a new browser profile with a name
profile = notte.profiles.create(name="my-profile")
print(f"Created profile: {profile.profile_id}")
# Cleanup
_ = notte.profiles.delete(profile.profile_id)