scratchattach
scratchattach copied to clipboard
Issue with crashing while running on iPad
I have to use scratchattach on a mobile device for school use and this issue impacts my use case severely. I hope the scratchattach team can help me find some solution on the issue, preferably free. Python iOS app used: Juno Device used: iPad Pro 9.7' (2016) How to reproduce: Open Juno on iPad and create a new .py file Input and run the following code segment
import scratchattach as sa
import time
cloud = sa.get_tw_cloud('my_project_id')
i = 0
while True:
cloud.set_var('test', i)
i += 1
time.sleep(0.1)
The application should crash after some time (within a minute in my case)