Documentation

Pyto Library

Pyto has some modules that allows your scripts to interact with the app.

Platforms

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")
    

Third party modules

Pyto has some bundled modules:
Including three compiled C extensions:

This library is used internally for accessing Objective-C classes:

This library is used internally for code completion:

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'".