pipe
Jun 04, 2020 - 16:11
Is it possible to ask for input with the IOS input thing?
Like the window that shows when you enter the WiFi password for example, can I make that input window in Pythonista ?
Is it possible to ask for input with the IOS input thing?
Like the window that shows when you enter the WiFi password for example, can I make that input window in Pythonista ?
@pipe:
import dialogs
value = dialogs.input_alert('Input')
print(value)
Lol thanks