Okay, so bear in mind, I'm very new to python, Pythonista, and coding in general. [e.g. halfway through Udacity's Intro to Comp Sci course new.] So I will understand if the best answer is to my question is "play around with it until it works".
Right now, I have the following set up:
-PushMenu [https://github.com/kalcher/pushmenu] allows me to send text from the OS X pasteboard to my iOS devices via Growl + Prowl [www.prowlapp.com]
-Prowl [which is able to launch custom URL schemes upon receiving a notification] opens the push notification containing the text that was sent over by PushMenu
At this point, I have to open Prowl, select the text, and paste it into whatever place I need it. I would LIKE to have a Pythonista script that Prowl can auto-launch upon receiving a push notification. I imagine it would act as follows:
-Get content of push notification [Prowl's API seems to allow this in conjunction with some python libraries that were created, though I'm not proficient at weeding through APIs: http://www.prowlapp.com/api.php and https://github.com/babs/pyrowl]
-Copy content to iOS clipboard
Once these steps are done, I imagine I could either just navigate to the app I wish to use the clipboard in, or perhaps send it to a Drafts/Launch Center Pro action.
Again, I realize I'm basically doing an entire script request here, so if that's too much work don't worry about it. That being said, it would be great to have a (relatively) seamless way to transfer clipboards from OS X to iOS. If anybody has any advice/suggestions regarding how this could be done or why it can't be, I would greatly appreciate it! TIA