Forum Archive

iOS input window

pipe

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 ?

mikael

@pipe:

import dialogs

value = dialogs.input_alert('Input')

print(value)
pipe

Lol thanks