You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importlocalstorage# Create localstorage file if doesnt existiflocalstorage.LocalstorageFileExists('example.localstorage'):
localstorage.load('example.localstorage')
else:
localstorage.load(localstorage.CreateLocalstorageFile('example.localstorage'))
# Set Itemlocalstorage.setItem('Example',"123")
# Get itemprint(localstorage.getItem('Example'))
# Clear all items in storagelocalstorage.clear()
# Debugginglocalstorage.LocalStorageSettings(debugging=True) # set this before other functions to debug correctly