Pyto has some modules that allows your scripts to interact with the app.
Pyto supports iOS and macOS (in the future). If you want to check for platform, use the global __platform__
variable.
Example:
if __platform__ is iOS: print("Running on iOS") elif __platform__ is macOS: print("Running on Mac") else: print("Unknown platform")
You can install other pure Python modules from PyPi. For that, press the "pip" button on the main screen and write arguments you want to pass. For example, for installing a package, type "install 'package_name'".