Editorial Workflows

DDSync

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: Useful if you have folder trigger on sync data that creates some content such as (PlantUML to generate diagram).
This script does a sync of Dropbox twice at an interval of 5 seconds.

Shared by: Double Dropbox Sync

Comments: Comment Feed (RSS)

There are no comments yet.

+ Add Comment

Workflow Preview
Show HUD ?
HUD Text
currently sycing....
Duration
  • 1 Second
  • 2 Seconds
  • 3 Seconds
Icon
  • "Success"
  • "Error"
sleeper4 ?
Source Code
#coding: utf-8
import workflow
import time

action_in = workflow.get_input()

#TODO: Generate the output...
action_out = action_in
time.sleep(9)

workflow.set_output(action_out)