Editorial Workflows

Modular Python

public workflow

Install Workflow...

This workflow contains at least one Python script. Only use it if you trust the person who shared this with you, and if you know exactly what it does.

I understand, install the workflow!

This is a workflow for Editorial, a Markdown and plain text editor for iOS. To download it, you need to view this page on a device that has the app installed.

Description: It's finally here! A workflow I have been wanting for a long time!

This awesome workflow uses a Custom Action that allows you to execute python code stored in multiple "Set Variable" actions.

This means you can script in python, right inside of a variable and execute it, without having to use the code editor. This allows you to program modularly.

This also means you can store multiple variables inside of one variable!

Many derivative workflows to come!





Shared by: Tutorial Doctor

Comments: Comment Feed (RSS)

There are no comments yet.

+ Add Comment

Workflow Preview
Modules ?
Variable Name
modules
Value
import workflow import speech
Variable Declarations ?
Variable Name
variables
Value
name = 'Joe ' age = 24 occupation = 'Sales Associate ' height = "6'1 " eye_color = 'Brown '
Functions ?
Variable Name
functions
Value
print name + '\n' + str(age) + '\n' + occupation + '\n' + height + '\n' + eye_color def Speak(): speech.say("I know who you are now",'None',.2) Speak()
Execute Python Expression ?