you can basically do anything you can do with python in Pythonista. There is just the multitasking restrictions and file write restrictions to only inside the apps documents dir.
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.
Best posts made by miwagner1
-
RE: Possible to work with Twitter and Instagram API from within Pythonista???
-
RE: Issues opening textastic to view source
No wonder he was surprised it worked. Apples docs say the UIApplication is Not available in app extensions.
It's possible this will break in later iOS versions.
-
RE: Show Lines Number
This script is fantastic on my iPhone 6s. It even shows line wraps with a dot. This really needs to be added in a new update by default.
-
RE: Issues opening textastic to view source
Marcus67 the typical output looks like
textastic://forum.omz-software.com/topic/2616/can-pythonista-push-itself-into-the-foreground
Well dam if an extension can't open an app, I'm going to have to get fancy for viewing source code.
-
RE: [Share Code] Tool to synchronize with a WebDav server
Fantastic, it works. Now I can keep all of my scripts backed up on github.
Latest posts made by miwagner1
-
RE: Issues opening textastic to view source
No wonder he was surprised it worked. Apples docs say the UIApplication is Not available in app extensions.
It's possible this will break in later iOS versions.
-
RE: Issues opening textastic to view source
This is fantastic. There are so many possibilities I can do now with pythonista and editorial with webpages. Right in the safari app.
-
RE: Issues opening textastic to view source
Ok so workflow can open other apps from the app extension. The user just had to confirm it. So how would I do this from the pythonista extension?
-
RE: Show Lines Number
This script is fantastic on my iPhone 6s. It even shows line wraps with a dot. This really needs to be added in a new update by default.
-
RE: Issues opening textastic to view source
Marcus67 the typical output looks like
textastic://forum.omz-software.com/topic/2616/can-pythonista-push-itself-into-the-foreground
Well dam if an extension can't open an app, I'm going to have to get fancy for viewing source code.
-
Issues opening textastic to view source
Am I missing something here? It is not opening the textastic app.
# coding: utf-8 import appex import webbrowser from urlparse import urlsplit def main(): if not appex.is_running_extension(): print 'This script is intended to be run from the sharing extension.' return url = appex.get_url() if not url: print 'No input URL found.' return url = urlsplit(url) url = 'textastic://' + url.netloc + url.path + url.query + url.fragment print url webbrowser.open(url) if __name__ == '__main__': main()
-
RE: Using \b in pythonista
It looks like its broken? Pythonista is running version 2.7.5 and my mac is running 2.7.10. Your simple print statement with the go back works fine on my mac.
-
RE: How can I install Scapy?
Ya fixing the path to have Pythonista generate, os.path.expanduser did it. now lets hope apple won't make him pull the extension as its letting me do all sorts of cool stuff.
-
RE: Possible to work with Twitter and Instagram API from within Pythonista???
you can basically do anything you can do with python in Pythonista. There is just the multitasking restrictions and file write restrictions to only inside the apps documents dir.
-
RE: [Share Code] Tool to synchronize with a WebDav server
Fantastic, it works. Now I can keep all of my scripts backed up on github.