omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    Using Workflow app with Pythonista

    Pythonista
    11
    27
    36810
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • 0942v8653
      0942v8653 last edited by

      dgelessus: The Run Script action in Workflow passes its input to its output unchanged. Your script is not running at all, I guess…

      1 Reply Last reply Reply Quote 0
      • ihf
        ihf last edited by

        @dgelessus That's interesting. When you say the print output shows up in WF, how are you accessing it in the workflow? Also, I realized that I could get the script to go back to WF by just opening the url workflow://.

        1 Reply Last reply Reply Quote 0
        • 0942v8653
          0942v8653 last edited by

          My conclusion is that Workflow.app's pythonista action is very very broken and we may just have to wait until it is fixed. webbrowser.open("workflow000000://") does work for switching back to the app though.

          1 Reply Last reply Reply Quote 0
          • dgelessus
            dgelessus last edited by

            @0942v8653, just noticed that as well. For whatever reason the script indeed is not actually run at all, neither a print("something") nor console.alert("something") show up. (I'm using Beta 1.6 of Pythonista btw.)

            1 Reply Last reply Reply Quote 0
            • userista
              userista last edited by

              I filed a bug with Workflows - the bug occurs when passing anything to Pythonista via Workflows - the Pythonista script will not run. Looking on Twitter seems like it's a widespread bug.

              1 Reply Last reply Reply Quote 0
              • dgelessus
                dgelessus last edited by

                OK, I experimented with a few things. x-callback-url is not an option due to Pythonista not actually supporting it. Giving Workflow a Pythonista script run URL as the x-callback-url doesn't help either, because the callback part starts with an unescaped & character and thus none of it lands in the &args= part of the URL. And Workflow requires the callback to be to a GUID unique to each run of the workflow, so we can't blindly send a callback to Workflow.

                Here's a slightly crazy idea that might work though (untested):

                1. Get some input in Workflow.
                2. Run a Pythonista script with the input as args.
                3. Have that script run a HTTP server on some obscure port.
                4. Back in Workflow, send some request to that port.
                5. The script will return the desired output.
                6. Workflow receives output and sends a special request to shut the server down.
                7. Script does as it is asked to and ends with webbrowser.open("workflow://").
                8. Workflow has its output.

                This is way more complicated than it should be and might not even work. But if everything else fails I suppose there is always a way :P

                (@omz, can we have an x-callback-url-compatible version of the URL scheme? Pretty please?)

                1 Reply Last reply Reply Quote 0
                • 0942v8653
                  0942v8653 last edited by

                  dgelessus: Implemented!

                  from SimpleHTTPServer import SimpleHTTPRequestHandler
                  import BaseHTTPServer
                  import webbrowser
                  
                  stopping = False
                  
                  class StoppableHTTPServer (BaseHTTPServer.HTTPServer):
                  	def serve_forever(self, poll_interval=0.5):
                  		global stopping
                  		while not stopping:
                  			self._handle_request_noblock()
                  			
                  class RequestHandler (SimpleHTTPRequestHandler):
                  	def do_GET(self):
                  		global stopping
                  		self.send_response(200)
                  		self.send_header("Content-type", "text/plain")
                  		self.end_headers()
                  		self.wfile.write('hello')
                  		stopping = True
                  		
                  serv = StoppableHTTPServer(('', 25565), RequestHandler)
                  port = serv.server_address[1]
                  
                  webbrowser.open('workflow://')
                  serv.serve_forever()
                  

                  The workflow is just a Pythonista Run action, a URL action with "localhost:25565", and a Get Contents of URLs action.

                  1 Reply Last reply Reply Quote 0
                  • 0942v8653
                    0942v8653 last edited by

                    If you're just starting another workflow (not continuing the current one) you can also use the input parameter:

                    webbrowser.open('workflow://x-callback-url/run-workflow?name=PythonistaTest&input='+urllib.quote('Hi!'))
                    
                    1 Reply Last reply Reply Quote 0
                    • AriX
                      AriX last edited by

                      Hey there - this is Ari, one of the creators of Workflow. Awesome that you all are trying to get this to work!

                      Workflow should work great with Pythonista, but as some of you mentioned, there is currently an issue which prevents Workflow's Pythonista action from working correctly. This will be fixed in an update this week! Once the update is out, here is the general process I've used for integrating workflows with Pythonista scripts:

                      Make a new workflow with some sort of content to be passed to the Pythonista script. For example, maybe a Text action. Then add Run Script and Get Clipboard.

                      Make a corresponding Pythonista script and put its name into the Run Script action in your workflow. Start with this as your python script:

                      import sys
                      import console
                      import clipboard
                      import webbrowser
                      
                      console.alert('argv', sys.argv.__str__(), 'OK')
                      clipboard.set('here is some output!')
                      webbrowser.open('workflow://')
                      

                      This example shows how Workflow can provide input to the Python script (in this case, the Python script will show its input as an alert), and how the Python script can pass output back to Workflow via the clipboard.

                      (Optionally, you could preserve the clipboard by backing it up when running the workflow. At the beginning of your workflow, add Get Cilpboard and Set Variable, and give the variable a name. Then, at the end of the workflow, add Get Variable followed by Set Clipboard.)

                      1 Reply Last reply Reply Quote 0
                      • AriX
                        AriX last edited by

                        By the way, before the update comes out, you can simulate this behavior by doing the following in place of the Run Script action:

                        Add a URL action, followed by Open URL and Wait to Return. Set the URL to something along the lines of along the lines of pythonista://[[script name]]?action=run&argv=[[some argument to pass, can be a variable]]

                        We don't have URL encode actions yet, so this may be kind of limited at the moment.

                        Let me also second the request to @omz to make Pythonista x-callback compliant ;)

                        1 Reply Last reply Reply Quote 0
                        • briarfox
                          briarfox last edited by

                          @AriX Thanks for including workflow into pythonista. This will be quite fun :) I do believe the correct url to pass pythonista argv is 'args' not 'argv'
                          <pre>
                          pythonista://[scriptname]?action=run&args=[argv values]
                          </pre>

                          1 Reply Last reply Reply Quote 0
                          • AriX
                            AriX last edited by

                            @briarfox Either works - argv lets you pass arguments one-by-one, and is what we use inside Workflow. See the documentation.

                            1 Reply Last reply Reply Quote 0
                            • TutorialDoctor
                              TutorialDoctor last edited by

                              I think for now I will use Editorial, which does have x-callback.

                              Edit: A simple "Console Output" Action in Editorial automatically jumps back to Workflow.

                              1 Reply Last reply Reply Quote 0
                              • Omega0
                                Omega0 last edited by

                                I wonder if Workflow could be used to make an "open in Pythonista" action since it had to be removed from the app natively. I haven't had a chance to mess with Workflow yet, but if this could work it would make my life much easier.

                                1 Reply Last reply Reply Quote 0
                                • JonB
                                  JonB last edited by

                                  @Omega0, you can already do this using a bookmarklet in safari. See for example
                                  gistcheck

                                  You create a bookmarklet in safari, then when viewing a gist you click the bookmark, and it downloads and opens in pythonista. I'm not sure what the use case is that you are trying to solve, but with slight modifications you could make this more general.

                                  1 Reply Last reply Reply Quote 0
                                  • Omega0
                                    Omega0 last edited by

                                    @JonB,
                                    I was unaware of the Safari bookmark method, but what I was looking for was something more along the lines of loading a PDF from the Google Drive app. Which I don't think would be possible with a bookmark.

                                    1 Reply Last reply Reply Quote 0
                                    • 0942v8653
                                      0942v8653 last edited by

                                      Omega0: That would be really cool, but unless workflow includes their own web server (or at the very least a base64 conversion action) at some point, it doesn't seem possible.

                                      Edit: I guess if there was an upload action that would work too. Right now the fastest way seems to be using Dropbox :(

                                      1 Reply Last reply Reply Quote 0
                                      • TutorialDoctor
                                        TutorialDoctor last edited by

                                        @Omega0

                                        One workaround is to change the extension to an extension pythonista can open, then change it back once it is in pythonista.

                                        Edit: looks like Pythonista can't open any file type?

                                        You could read the contents of the file without opening it, and paste it in to pythonista?

                                        1 Reply Last reply Reply Quote 0
                                        • 0942v8653
                                          0942v8653 last edited by

                                          Any news on the update? You said "this week" last week :)

                                          <sup><sup>not to be impatient or anything</sup></sup>

                                          1 Reply Last reply Reply Quote 0
                                          • userista
                                            userista last edited by

                                            @942v8653
                                            You're aware that this isn't the forum for Workflow, right?

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Powered by NodeBB Forums | Contributors